diff --git a/.tx/config b/.tx/config index 17b727e89f96da235b2a5c55a6a91eff9aeecd06..0fb6cc2445a79fc387e49f04b725dd790dce7e6d 100644 --- a/.tx/config +++ b/.tx/config @@ -121,3 +121,32 @@ trans.sr@latin = l10n/sr@latin/media.po trans.sv = l10n/sv/media.po trans.zh_CN = l10n/zh_CN/media.po +[owncloud.contacts] +file_filter = translations/owncloud.contacts/<lang>.po +host = http://www.transifex.net +source_file = l10n/templates/contacts.pot +source_lang = en +trans.bg_BG = l10n/bg_BG/contacts.po +trans.ca = l10n/ca/contacts.po +trans.cs_CZ = l10n/cs_CZ/contacts.po +trans.da = l10n/da/contacts.po +trans.de = l10n/de/contacts.po +trans.el = l10n/el/contacts.po +trans.es = l10n/es/contacts.po +trans.et_EE = l10n/et_EE/contacts.po +trans.fr = l10n/fr/contacts.po +trans.id = l10n/id/contacts.po +trans.it = l10n/it/contacts.po +trans.lb = l10n/lb/contacts.po +trans.ms_MY = l10n/ms_MY/contacts.po +trans.nb_NO = l10n/nb_NO/contacts.po +trans.nl = l10n/nl/contacts.po +trans.pl = l10n/pl/contacts.po +trans.pt_BR = l10n/pt_BR/contacts.po +trans.pt_PT = l10n/pt_PT/contacts.po +trans.ro = l10n/ro/contacts.po +trans.ru = l10n/ru/contacts.po +trans.sr = l10n/sr/contacts.po +trans.sr@latin = l10n/sr@latin/contacts.po +trans.sv = l10n/sv/contacts.po +trans.zh_CN = l10n/zh_CN/contacts.po diff --git a/apps/contacts/ajax/addcard.php b/apps/contacts/ajax/addcard.php index e9f82f1b3e3baf3d379879a0d25f5dc976cec33b..6005d74d14428c5f042f214b504867a5072d6251 100644 --- a/apps/contacts/ajax/addcard.php +++ b/apps/contacts/ajax/addcard.php @@ -28,13 +28,13 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $aid ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your addressbook!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your addressbook.')))); // Same here (as with the contact error). Could this error be improved? exit(); } diff --git a/apps/contacts/ajax/addproperty.php b/apps/contacts/ajax/addproperty.php index 7df67e3d3306c95133f851252eafc062d5ca970b..a311bba6e26bdb5c38c38bac451fd6fc107b3c1b 100644 --- a/apps/contacts/ajax/addproperty.php +++ b/apps/contacts/ajax/addproperty.php @@ -28,26 +28,26 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Can not find Contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } $vcard = OC_Contacts_VCard::parse($card['carddata']); // Check if the card is valid if(is_null($vcard)){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Unable to parse vCard!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('vCard could not be read.')))); exit(); } diff --git a/apps/contacts/ajax/deletebook.php b/apps/contacts/ajax/deletebook.php index 9e623120df918fa5f967af973118b2c5b965036e..38322f5c10936b63a636953148c7fa03293be119 100644 --- a/apps/contacts/ajax/deletebook.php +++ b/apps/contacts/ajax/deletebook.php @@ -29,13 +29,13 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $id ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } diff --git a/apps/contacts/ajax/deletecard.php b/apps/contacts/ajax/deletecard.php index b31c643f5996e62c80ea7119f48066580219e13c..7dde7d30a52f60d36ee2da9d644b70cf36158e79 100644 --- a/apps/contacts/ajax/deletecard.php +++ b/apps/contacts/ajax/deletecard.php @@ -29,20 +29,20 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Can not find Contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } diff --git a/apps/contacts/ajax/deleteproperty.php b/apps/contacts/ajax/deleteproperty.php index df2ae2e1c0357092fe8b3b64b3b78a65df637db8..07cea0b53e187902ffcd928145c3b65464c0beee 100644 --- a/apps/contacts/ajax/deleteproperty.php +++ b/apps/contacts/ajax/deleteproperty.php @@ -31,27 +31,27 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Can not find Contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } $vcard = OC_Contacts_VCard::parse($card['carddata']); // Check if the card is valid if(is_null($vcard)){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Unable to parse vCard!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('vCard could not be read.')))); exit(); } @@ -62,7 +62,7 @@ for($i=0;$i<count($vcard->children);$i++){ } } if(is_null($line)){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Information about vCard is incorrect. Please reload page!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Information about vCard is incorrect. Please reload the page.')))); exit(); } diff --git a/apps/contacts/ajax/getdetails.php b/apps/contacts/ajax/getdetails.php index 19addd912233f4d8cf135da820f6366b19ed40c7..ab1f1d66f5ec75c3dc11e775b2b6db222fa140cd 100644 --- a/apps/contacts/ajax/getdetails.php +++ b/apps/contacts/ajax/getdetails.php @@ -29,27 +29,27 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Can not find Contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } $vcard = OC_Contacts_VCard::parse($card['carddata']); // Check if the card is valid if(is_null($vcard)){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Unable to parse vCard!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('vCard could not be read.')))); exit(); } diff --git a/apps/contacts/ajax/setproperty.php b/apps/contacts/ajax/setproperty.php index 9a4e8eea264d0701346aa9234571de9553a44366..9178a6aac9f6115172d216295bf770547ab1bce2 100644 --- a/apps/contacts/ajax/setproperty.php +++ b/apps/contacts/ajax/setproperty.php @@ -29,26 +29,26 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Can not find Contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } $vcard = OC_Contacts_VCard::parse($card['carddata']); // Check if the card is valid if(is_null($vcard)){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Unable to parse vCard!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('vCard could not be read.')))); exit(); } @@ -59,7 +59,7 @@ for($i=0;$i<count($vcard->children);$i++){ } } if(is_null($line)){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Information about vCard is incorrect. Please reload page!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Information about vCard is incorrect. Please reload the page.')))); exit(); } diff --git a/apps/contacts/ajax/showaddcard.php b/apps/contacts/ajax/showaddcard.php index dea8073a785fdf063b7adadb42b810188e95f597..89c78fcdf54ab0dc872ffa2fd27d85bc9436be3f 100644 --- a/apps/contacts/ajax/showaddcard.php +++ b/apps/contacts/ajax/showaddcard.php @@ -27,7 +27,7 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } diff --git a/apps/contacts/ajax/showaddproperty.php b/apps/contacts/ajax/showaddproperty.php index 75dbe01cfbcbb2af29c87ee325fd97d2468c4599..718478d42bf2741958e6002ee5c4a2dfee33ddef 100644 --- a/apps/contacts/ajax/showaddproperty.php +++ b/apps/contacts/ajax/showaddproperty.php @@ -28,19 +28,19 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Can not find Contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } diff --git a/apps/contacts/ajax/showsetproperty.php b/apps/contacts/ajax/showsetproperty.php index 51187d505bcf68fc03780907af90ae23c6f1f770..77b90ea8cc4f4a59450f140d5491bf9c6d4da369 100644 --- a/apps/contacts/ajax/showsetproperty.php +++ b/apps/contacts/ajax/showsetproperty.php @@ -29,26 +29,26 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('You need to log in.')))); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Can not find Contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Contact could not be found.')))); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('This is not your contact.')))); exit(); } $vcard = OC_Contacts_VCard::parse($card['carddata']); // Check if the card is valid if(is_null($vcard)){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Unable to parse vCard!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('vCard could not be read.')))); exit(); } @@ -59,7 +59,7 @@ for($i=0;$i<count($vcard->children);$i++){ } } if(is_null($line)){ - echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Information about vCard is incorrect. Please reload page!')))); + echo json_encode( array( 'status' => 'error', 'data' => array( 'message' => $l10n->t('Information about vCard is incorrect. Please reload the page.')))); exit(); } diff --git a/apps/contacts/l10n/de.php b/apps/contacts/l10n/de.php new file mode 100644 index 0000000000000000000000000000000000000000..04a7402442af2abe3d709c9f1f4ff43885ffb877 --- /dev/null +++ b/apps/contacts/l10n/de.php @@ -0,0 +1,9 @@ +<?php $TRANSLATIONS = array( +"Mobile" => "Mobil", +"Text" => "Text", +"Fax" => "Fax", +"Video" => "Video", +"Pager" => "Pager", +"Birthday" => "Geburtstag", +"Edit" => "Bearbeiten" +); diff --git a/apps/contacts/l10n/it.php b/apps/contacts/l10n/it.php new file mode 100644 index 0000000000000000000000000000000000000000..7a57d6fc5d2b39f5bdc57cc44d0f0b0940703d5f --- /dev/null +++ b/apps/contacts/l10n/it.php @@ -0,0 +1,38 @@ +<?php $TRANSLATIONS = array( +"You need to log in." => "Bisogna effettuare il login.", +"This is not your addressbook." => "Questa non è la tua rubrica.", +"Contact could not be found." => "Il contatto non può essere trovato", +"This is not your contact." => "Questo non è un tuo contatto.", +"vCard could not be read." => "La vCard non può essere letta", +"Information about vCard is incorrect. Please reload the page." => "Informazioni sulla vCard incorrette. Ricaricare la pagina.", +"This card is not RFC compatible." => "Questa card non è compatibile con il protocollo RFC.", +"This card does not contain a photo." => "Questa card non contiene una foto.", +"Add Contact" => "Aggiungi contatto", +"Group" => "Gruppo", +"Name" => "Nome", +"Create Contact" => "Crea contatto", +"Address" => "Indirizzo", +"Telephone" => "Telefono", +"Email" => "Email", +"Organization" => "Organizzazione", +"Work" => "Lavoro", +"Home" => "Casa", +"PO Box" => "PO Box", +"Extended" => "Estendi", +"Street" => "Via", +"City" => "Città ", +"Region" => "Regione", +"Zipcode" => "CAP", +"Country" => "Stato", +"Mobile" => "Cellulare", +"Text" => "Testo", +"Voice" => "Voce", +"Fax" => "Fax", +"Video" => "Video", +"Pager" => "Pager", +"Delete" => "Cancella", +"Add Property" => "Aggiungi proprietà ", +"Birthday" => "Compleanno", +"Phone" => "Telefono", +"Edit" => "Modifica" +); diff --git a/apps/contacts/photo.php b/apps/contacts/photo.php index 1b955a8a84dc2d187621eb93ef2087d8eb40a470..7ba2002b13dfe073bf897af9e00fde2b981aa4df 100644 --- a/apps/contacts/photo.php +++ b/apps/contacts/photo.php @@ -29,20 +29,20 @@ $l10n = new OC_L10N('contacts'); // Check if we are a user if( !OC_User::isLoggedIn()){ - echo $l10n->t('You need to log in!'); + echo $l10n->t('You need to log in.'); exit(); } $card = OC_Contacts_VCard::find( $id ); if( $card === false ){ - echo $l10n->t('Can not find Contact!'); + echo $l10n->t('Contact could not be found.'); exit(); } $addressbook = OC_Contacts_Addressbook::find( $card['addressbookid'] ); if( $addressbook === false || $addressbook['userid'] != OC_USER::getUser()){ - echo $l10n->t('This is not your contact!'); + echo $l10n->t('This is not your contact.'); // This is a weird error, why would it come up? (Better feedback for users?) exit(); } @@ -50,7 +50,7 @@ $content = OC_Contacts_VCard::parse($card['carddata']); // invalid vcard if( is_null($content)){ - echo $l10n->t('This card is not RFC compatible!'); + echo $l10n->t('This card is not RFC compatible.'); exit(); } // Photo :-) @@ -87,4 +87,4 @@ foreach($content->children as $child){ } // Not found :-( -echo $l10n->t('This card does not contain photo data!'); +echo $l10n->t('This card does not contain a photo.'); diff --git a/apps/contacts/templates/part.addpropertyform.php b/apps/contacts/templates/part.addpropertyform.php index 32affde952688024d7c529a7b75c68ae981b5f59..ad623b0dd620ee8554554493c1ca9ac75cece17a 100644 --- a/apps/contacts/templates/part.addpropertyform.php +++ b/apps/contacts/templates/part.addpropertyform.php @@ -18,23 +18,23 @@ <option value="adr_home" selected="selected"><?php echo $l->t('Home'); ?></option> </select> <?php echo $l->t('PO Box'); ?> <input type="text" name="value[0]" value=""> - <?php echo $l->t('Extended Address'); ?> <input type="text" name="value[1]" value=""> - <?php echo $l->t('Street Name'); ?> <input type="text" name="value[2]" value=""> + <?php echo $l->t('Extended'); ?> <input type="text" name="value[1]" value=""> + <?php echo $l->t('Street'); ?> <input type="text" name="value[2]" value=""> <?php echo $l->t('City'); ?> <input type="text" name="value[3]" value=""> <?php echo $l->t('Region'); ?> <input type="text" name="value[4]" value=""> - <?php echo $l->t('Postal Code'); ?> <input type="text" name="value[5]" value=""> + <?php echo $l->t('Zipcode'); ?> <input type="text" name="value[5]" value=""> <?php echo $l->t('Country'); ?> <input type="text" name="value[6]" value=""> </div> <div id="contacts_phonepart"> <select name="parameters[TYPE]" size="1"> - <option value="home"><?php echo $l->t('tel_home'); ?></option> - <option value="cell" selected="selected"><?php echo $l->t('tel_cell'); ?></option> - <option value="work"><?php echo $l->t('tel_work'); ?></option> - <option value="text"><?php echo $l->t('tel_text'); ?></option> - <option value="voice"><?php echo $l->t('tel_voice'); ?></option> - <option value="fax"><?php echo $l->t('tel_fax'); ?></option> - <option value="video"><?php echo $l->t('tel_video'); ?></option> - <option value="pager"><?php echo $l->t('tel_pager'); ?></option> + <option value="home"><?php echo $l->t('Home'); ?></option> + <option value="cell" selected="selected"><?php echo $l->t('Mobile'); ?></option> + <option value="work"><?php echo $l->t('Work'); ?></option> + <option value="text"><?php echo $l->t('Text'); ?></option> + <option value="voice"><?php echo $l->t('Voice'); ?></option> + <option value="fax"><?php echo $l->t('Fax'); ?></option> + <option value="video"><?php echo $l->t('Video'); ?></option> + <option value="pager"><?php echo $l->t('Pager'); ?></option> </select> <input type="text" name="value" value=""> </div> diff --git a/apps/contacts/templates/part.property.php b/apps/contacts/templates/part.property.php index d0d2b773ef36185389b37b85910ca1b8e6655c24..3469f53b0da043c9bf232a00de59c5622ceb9a96 100644 --- a/apps/contacts/templates/part.property.php +++ b/apps/contacts/templates/part.property.php @@ -12,7 +12,7 @@ <span style="display:none;" data-use="delete"><img class="svg action" src="<?php echo image_path('', 'actions/delete.svg'); ?>" /></span> </td> <?php elseif($_['property']['name'] == 'ORG'): ?> - <td class="contacts_details_left"><?php echo $l->t('Organisation'); ?></td> + <td class="contacts_details_left"><?php echo $l->t('Organization'); ?></td> <td class="contacts_details_right"> <?php echo $_['property']['value']; ?> <span style="display:none;" data-use="edit"><img class="svg action" src="<?php echo image_path('', 'actions/rename.svg'); ?>" /></span> @@ -26,11 +26,11 @@ <span style="display:none;" data-use="delete"><img class="svg action" src="<?php echo image_path('', 'actions/delete.svg'); ?>" /></span> </td> <?php elseif($_['property']['name'] == 'TEL'): ?> - <td class="contacts_details_left"><?php echo $l->t('Telephone'); ?></td> + <td class="contacts_details_left"><?php echo $l->t('Phone'); ?></td> <td class="contacts_details_right"> <?php echo $_['property']['value']; ?> <?php if(isset($_['property']['parameters']['TYPE'])): ?> - (<?php echo $l->t('tel_'.strtolower($_['property']['parameters']['TYPE'])); ?>) + (<?php echo strtolower($_['property']['parameters']['TYPE']); ?>) <?php endif; ?> <span style="display:none;" data-use="edit"><img class="svg action" src="<?php echo image_path('', 'actions/rename.svg'); ?>" /></span> <span style="display:none;" data-use="delete"><img class="svg action" src="<?php echo image_path('', 'actions/delete.svg'); ?>" /></span> @@ -40,7 +40,7 @@ <?php echo $l->t('Address'); ?> <?php if(isset($_['property']['parameters']['TYPE'])): ?> <br> - (<?php echo $l->t('adr_'.strtolower($_['property']['parameters']['TYPE'])); ?>) + (<?php echo strtolower($_['property']['parameters']['TYPE']); ?>) <?php endif; ?> </td> <td class="contacts_details_right"> @@ -48,10 +48,10 @@ <?php echo $l->t('PO Box'); ?> <?php echo $_['property']['value'][0]; ?><br> <?php endif; ?> <?php if(!empty($_['property']['value'][1])): ?> - <?php echo $l->t('Extended Address'); ?> <?php echo $_['property']['value'][1]; ?><br> + <?php echo $l->t('Extended'); ?> <?php echo $_['property']['value'][1]; ?><br> <?php endif; ?> <?php if(!empty($_['property']['value'][2])): ?> - <?php echo $l->t('Street Name'); ?> <?php echo $_['property']['value'][2]; ?><br> + <?php echo $l->t('Street'); ?> <?php echo $_['property']['value'][2]; ?><br> <?php endif; ?> <?php if(!empty($_['property']['value'][3])): ?> <?php echo $l->t('City'); ?> <?php echo $_['property']['value'][3]; ?><br> @@ -60,7 +60,7 @@ <?php echo $l->t('Region'); ?> <?php echo $_['property']['value'][4]; ?><br> <?php endif; ?> <?php if(!empty($_['property']['value'][5])): ?> - <?php echo $l->t('Postal Code'); ?> <?php echo $_['property']['value'][5]; ?><br> + <?php echo $l->t('Zipcode'); ?> <?php echo $_['property']['value'][5]; ?><br> <?php endif; ?> <?php if(!empty($_['property']['value'][6])): ?> <?php echo $l->t('Country'); ?> <?php echo $_['property']['value'][6]; ?> diff --git a/apps/contacts/templates/part.setpropertyform.php b/apps/contacts/templates/part.setpropertyform.php index 52483ebf4b7bfff1cf5f9dfd96659ca7379a081f..69c789795e52a188dd6a71d5fba9e177b2c854ae 100644 --- a/apps/contacts/templates/part.setpropertyform.php +++ b/apps/contacts/templates/part.setpropertyform.php @@ -3,11 +3,11 @@ <input type="hidden" name="id" value="<?php echo $_['id']; ?>"> <?php if($_['property']['name']=='ADR'): ?> <label><?php echo $l->t('PO Box'); ?></label> <input type="text" name="value[0]" value="<?php echo $_['property']['value'][0]; ?>"><br> - <label><?php echo $l->t('Extended Address'); ?></label> <input type="text" name="value[1]" value="<?php echo $_['property']['value'][1]; ?>"><br> - <label><?php echo $l->t('Street Name'); ?></label> <input type="text" name="value[2]" value="<?php echo $_['property']['value'][2]; ?>"><br> + <label><?php echo $l->t('Extended'); ?></label> <input type="text" name="value[1]" value="<?php echo $_['property']['value'][1]; ?>"><br> + <label><?php echo $l->t('Street'); ?></label> <input type="text" name="value[2]" value="<?php echo $_['property']['value'][2]; ?>"><br> <label><?php echo $l->t('City'); ?></label> <input type="text" name="value[3]" value="<?php echo $_['property']['value'][3]; ?>"><br> <label><?php echo $l->t('Region'); ?></label> <input type="text" name="value[4]" value="<?php echo $_['property']['value'][4]; ?>"><br> - <label><?php echo $l->t('Postal Code'); ?></label> <input type="text" name="value[5]" value="<?php echo $_['property']['value'][5]; ?>"><br> + <label><?php echo $l->t('Zipcode'); ?></label> <input type="text" name="value[5]" value="<?php echo $_['property']['value'][5]; ?>"><br> <label><?php echo $l->t('Country'); ?></label> <input type="text" name="value[6]" value="<?php echo $_['property']['value'][6]; ?>"><br> <?php elseif($_['property']['name']=='TEL'): ?> <input type="text" name="value" value="<?php echo $_['property']['value']; ?>"> diff --git a/l10n/bg_BG/contacts.po b/l10n/bg_BG/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..4b6ca8fc510d6606ecc55f37cde0aa1729fe87d0 --- /dev/null +++ b/l10n/bg_BG/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg_BG\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/ca/contacts.po b/l10n/ca/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..a9a23483bc38906c67ce1c283592f10306e40bf1 --- /dev/null +++ b/l10n/ca/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/cs_CZ/contacts.po b/l10n/cs_CZ/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..76af9f7e5caaba5623e1f96a5857bfb6a8ee8bdc --- /dev/null +++ b/l10n/cs_CZ/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/da/contacts.po b/l10n/da/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..49e5e9c2d119366e3663879350a8721ac9d0d5cd --- /dev/null +++ b/l10n/da/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/de/contacts.po b/l10n/de/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..75f737b01357a31f1cac32bbf726a7f2523c72be --- /dev/null +++ b/l10n/de/contacts.po @@ -0,0 +1,181 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "Mobil" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "Text" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "Fax" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "Video" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "Pager" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "Geburtstag" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "Bearbeiten" + + diff --git a/l10n/el/contacts.po b/l10n/el/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..bdd775c8ba2bbc11c4530fab3520bd45f9fce5f8 --- /dev/null +++ b/l10n/el/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/es/contacts.po b/l10n/es/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..08f4ae29109e7601040f715ee6f9a211c61be34c --- /dev/null +++ b/l10n/es/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/et_EE/contacts.po b/l10n/et_EE/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..119d01b09f02e946356699cdd3ab8e3b9aa591f3 --- /dev/null +++ b/l10n/et_EE/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Estonian (Estonia) (http://www.transifex.net/projects/p/owncloud/team/et_EE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et_EE\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/fr/contacts.po b/l10n/fr/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..1a7dea24d8d08037d9d17d10a0810b19b025fd23 --- /dev/null +++ b/l10n/fr/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/id/contacts.po b/l10n/id/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..3a6360c599f17449c42328ac5bd9739c51e502e3 --- /dev/null +++ b/l10n/id/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/it/contacts.po b/l10n/it/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..3f8e3bd169658e79ddd67e4130a3ded4557c6991 --- /dev/null +++ b/l10n/it/contacts.po @@ -0,0 +1,181 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Francesco Apruzzese <cescoap@gmail.com>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "Bisogna effettuare il login." + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "Questa non è la tua rubrica." + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "Il contatto non può essere trovato" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "Questo non è un tuo contatto." + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "La vCard non può essere letta" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "Informazioni sulla vCard incorrette. Ricaricare la pagina." + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "Questa card non è compatibile con il protocollo RFC." + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "Questa card non contiene una foto." + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "Aggiungi contatto" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "Gruppo" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "Nome" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "Crea contatto" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "Indirizzo" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "Telefono" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "Email" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "Organizzazione" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "Lavoro" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "Casa" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "PO Box" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "Estendi" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "Via" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "Città " + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "Regione" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "CAP" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "Stato" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "Cellulare" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "Testo" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "Voce" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "Fax" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "Video" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "Pager" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "Cancella" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "Aggiungi proprietà " + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "Compleanno" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "Telefono" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "Modifica" + + diff --git a/l10n/lb/contacts.po b/l10n/lb/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..63d22e6f7c8b2dce0417f8321f9c80b945b8e251 --- /dev/null +++ b/l10n/lb/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Luxembourgish (http://www.transifex.net/projects/p/owncloud/team/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/ms_MY/contacts.po b/l10n/ms_MY/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..59b737d3660dc17f9c5f5d2676021600c7c47719 --- /dev/null +++ b/l10n/ms_MY/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Malay (Malaysia) (http://www.transifex.net/projects/p/owncloud/team/ms_MY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms_MY\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/nb_NO/contacts.po b/l10n/nb_NO/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..430819ce1c97b302dafd4c7fac67c6497c10b8d9 --- /dev/null +++ b/l10n/nb_NO/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.net/projects/p/owncloud/team/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/nl/contacts.po b/l10n/nl/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..48de047d7a44b23289df69bcb421409d855df919 --- /dev/null +++ b/l10n/nl/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/pl/contacts.po b/l10n/pl/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..a8793db4831df1a93bd82205c50167eb977950d1 --- /dev/null +++ b/l10n/pl/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/pt_BR/contacts.po b/l10n/pt_BR/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..4b44d17178d95d5ace67ed7b0a483883b6415d56 --- /dev/null +++ b/l10n/pt_BR/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/pt_PT/contacts.po b/l10n/pt_PT/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..fcc5bb2f7ed0619f0881d47bb1d45b3f9727894b --- /dev/null +++ b/l10n/pt_PT/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.net/projects/p/owncloud/team/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/ro/contacts.po b/l10n/ro/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..95b3d705a3df31bd945f8b3585f01cbbc0f2ccf3 --- /dev/null +++ b/l10n/ro/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:11+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Romanian (http://www.transifex.net/projects/p/owncloud/team/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/ru/contacts.po b/l10n/ru/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..d571caba891dfa66243c86b076ceab40863ce886 --- /dev/null +++ b/l10n/ru/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Russian (http://www.transifex.net/projects/p/owncloud/team/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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/sr/contacts.po b/l10n/sr/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..780af00702dc7a1ea8c3de60d27bd7e62bf13dd5 --- /dev/null +++ b/l10n/sr/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Serbian (http://www.transifex.net/projects/p/owncloud/team/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/sr@latin/contacts.po b/l10n/sr@latin/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..3066a8fc0903250d84f15447a900903d22450dd4 --- /dev/null +++ b/l10n/sr@latin/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Serbian (Latin) (http://www.transifex.net/projects/p/owncloud/team/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/sv/contacts.po b/l10n/sv/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..f492fa61d7d0d09326410cee03736b5a1b234adc --- /dev/null +++ b/l10n/sv/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/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" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + + diff --git a/l10n/templates/calendar.pot b/l10n/templates/calendar.pot index b83536936412187e33ec01f31bf241db6a5f4256..4cc5c95ca894cc09a5d2fa0021ce0f7c24fbd4a4 100644 --- a/l10n/templates/calendar.pot +++ b/l10n/templates/calendar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-23 18:56+0200\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/contacts.pot b/l10n/templates/contacts.pot index b3ec8cd1df84ec36fc508c62d1fbe3afb201b1db..e4fbf82fd05a6e656b202f480087e2d314a0cc7f 100644 --- a/l10n/templates/contacts.pot +++ b/l10n/templates/contacts.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-23 18:56+0200\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -21,41 +21,41 @@ msgstr "" #: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 #: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 #: ajax/showsetproperty.php:32 photo.php:32 -msgid "You need to log in!" +msgid "You need to log in." msgstr "" #: ajax/addcard.php:37 -msgid "This is not your addressbook!" +msgid "This is not your addressbook." msgstr "" #: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 #: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 #: ajax/showsetproperty.php:38 photo.php:39 -msgid "Can not find Contact!" +msgid "Contact could not be found." msgstr "" #: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 #: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 #: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 -msgid "This is not your contact!" +msgid "This is not your contact." msgstr "" #: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 #: ajax/setproperty.php:51 ajax/showsetproperty.php:51 -msgid "Unable to parse vCard!" +msgid "vCard could not be read." msgstr "" #: ajax/deleteproperty.php:65 ajax/setproperty.php:62 #: ajax/showsetproperty.php:62 -msgid "Information about vCard is incorrect. Please reload page!" +msgid "Information about vCard is incorrect. Please reload the page." msgstr "" #: photo.php:53 -msgid "This card is not RFC compatible!" +msgid "This card is not RFC compatible." msgstr "" #: photo.php:90 -msgid "This card does not contain photo data!" +msgid "This card does not contain a photo." msgstr "" #: templates/index.php:8 @@ -78,7 +78,7 @@ msgstr "" msgid "Address" msgstr "" -#: templates/part.addpropertyform.php:5 templates/part.property.php:29 +#: templates/part.addpropertyform.php:5 msgid "Telephone" msgstr "" @@ -86,15 +86,15 @@ msgstr "" msgid "Email" msgstr "" -#: templates/part.addpropertyform.php:7 +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 msgid "Organization" msgstr "" -#: templates/part.addpropertyform.php:17 +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 msgid "Work" msgstr "" -#: templates/part.addpropertyform.php:18 +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 msgid "Home" msgstr "" @@ -105,12 +105,12 @@ msgstr "" #: templates/part.addpropertyform.php:21 templates/part.property.php:51 #: templates/part.setpropertyform.php:6 -msgid "Extended Address" +msgid "Extended" msgstr "" #: templates/part.addpropertyform.php:22 templates/part.property.php:54 #: templates/part.setpropertyform.php:7 -msgid "Street Name" +msgid "Street" msgstr "" #: templates/part.addpropertyform.php:23 templates/part.property.php:57 @@ -125,7 +125,7 @@ msgstr "" #: templates/part.addpropertyform.php:25 templates/part.property.php:63 #: templates/part.setpropertyform.php:10 -msgid "Postal Code" +msgid "Zipcode" msgstr "" #: templates/part.addpropertyform.php:26 templates/part.property.php:66 @@ -133,36 +133,28 @@ msgstr "" msgid "Country" msgstr "" -#: templates/part.addpropertyform.php:30 -msgid "tel_home" -msgstr "" - #: templates/part.addpropertyform.php:31 -msgid "tel_cell" -msgstr "" - -#: templates/part.addpropertyform.php:32 -msgid "tel_work" +msgid "Mobile" msgstr "" #: templates/part.addpropertyform.php:33 -msgid "tel_text" +msgid "Text" msgstr "" #: templates/part.addpropertyform.php:34 -msgid "tel_voice" +msgid "Voice" msgstr "" #: templates/part.addpropertyform.php:35 -msgid "tel_fax" +msgid "Fax" msgstr "" #: templates/part.addpropertyform.php:36 -msgid "tel_video" +msgid "Video" msgstr "" #: templates/part.addpropertyform.php:37 -msgid "tel_pager" +msgid "Pager" msgstr "" #: templates/part.details.php:33 @@ -177,16 +169,8 @@ msgstr "" msgid "Birthday" msgstr "" -#: templates/part.property.php:15 -msgid "Organisation" -msgstr "" - -#: templates/part.property.php:33 -msgid "tel_" -msgstr "" - -#: templates/part.property.php:43 -msgid "adr_" +#: templates/part.property.php:29 +msgid "Phone" msgstr "" #: templates/part.setpropertyform.php:17 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ef7b62b2881396bed5a79e1c5a411a972a7d296d..72c65ab28062126f2140947e4ade85243cdfae3c 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-23 18:56+0200\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9f95339baf91f0423e00b542d06103a0f36dbb66..488c0395d8345477874a0ba66d31809c2e5ab497 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-23 18:56+0200\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index f240d91bd592ed1b3d7b6a5d0ff0634b068c6968..80ebba27b52964a8f9842ac8d0d67915588fdda1 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-23 18:56+0200\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index e4509d3c37749ce4839dbacd49d9b4b930da7112..23a7b3ad5b348d28901858813f0d74000ec1d99b 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-23 18:56+0200\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/zh_CN/contacts.po b/l10n/zh_CN/contacts.po new file mode 100644 index 0000000000000000000000000000000000000000..1fd7ecb96463186e48696612f04246fa5a0f3e52 --- /dev/null +++ b/l10n/zh_CN/contacts.po @@ -0,0 +1,180 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://owncloud.shapado.com/\n" +"POT-Creation-Date: 2011-09-23 20:10+0200\n" +"PO-Revision-Date: 2011-09-23 18:10+0000\n" +"Last-Translator: JanCBorchardt <jan@unhosted.org>\n" +"Language-Team: Chinese (China) (http://www.transifex.net/projects/p/owncloud/team/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ajax/addcard.php:31 ajax/addproperty.php:31 ajax/deletebook.php:32 +#: ajax/deletecard.php:32 ajax/deleteproperty.php:34 ajax/getdetails.php:32 +#: ajax/setproperty.php:32 ajax/showaddcard.php:30 ajax/showaddproperty.php:31 +#: ajax/showsetproperty.php:32 photo.php:32 +msgid "You need to log in." +msgstr "" + +#: ajax/addcard.php:37 +msgid "This is not your addressbook." +msgstr "" + +#: ajax/addproperty.php:37 ajax/deletecard.php:39 ajax/deleteproperty.php:41 +#: ajax/getdetails.php:39 ajax/setproperty.php:38 ajax/showaddproperty.php:37 +#: ajax/showsetproperty.php:38 photo.php:39 +msgid "Contact could not be found." +msgstr "" + +#: ajax/addproperty.php:43 ajax/deletebook.php:38 ajax/deletecard.php:45 +#: ajax/deleteproperty.php:47 ajax/getdetails.php:45 ajax/setproperty.php:44 +#: ajax/showaddproperty.php:43 ajax/showsetproperty.php:44 photo.php:45 +msgid "This is not your contact." +msgstr "" + +#: ajax/addproperty.php:50 ajax/deleteproperty.php:54 ajax/getdetails.php:52 +#: ajax/setproperty.php:51 ajax/showsetproperty.php:51 +msgid "vCard could not be read." +msgstr "" + +#: ajax/deleteproperty.php:65 ajax/setproperty.php:62 +#: ajax/showsetproperty.php:62 +msgid "Information about vCard is incorrect. Please reload the page." +msgstr "" + +#: photo.php:53 +msgid "This card is not RFC compatible." +msgstr "" + +#: photo.php:90 +msgid "This card does not contain a photo." +msgstr "" + +#: templates/index.php:8 +msgid "Add Contact" +msgstr "" + +#: templates/part.addcardform.php:5 +msgid "Group" +msgstr "" + +#: templates/part.addcardform.php:12 templates/part.property.php:3 +msgid "Name" +msgstr "" + +#: templates/part.addcardform.php:14 +msgid "Create Contact" +msgstr "" + +#: templates/part.addpropertyform.php:4 templates/part.property.php:40 +msgid "Address" +msgstr "" + +#: templates/part.addpropertyform.php:5 +msgid "Telephone" +msgstr "" + +#: templates/part.addpropertyform.php:6 templates/part.property.php:22 +msgid "Email" +msgstr "" + +#: templates/part.addpropertyform.php:7 templates/part.property.php:15 +msgid "Organization" +msgstr "" + +#: templates/part.addpropertyform.php:17 templates/part.addpropertyform.php:32 +msgid "Work" +msgstr "" + +#: templates/part.addpropertyform.php:18 templates/part.addpropertyform.php:30 +msgid "Home" +msgstr "" + +#: templates/part.addpropertyform.php:20 templates/part.property.php:48 +#: templates/part.setpropertyform.php:5 +msgid "PO Box" +msgstr "" + +#: templates/part.addpropertyform.php:21 templates/part.property.php:51 +#: templates/part.setpropertyform.php:6 +msgid "Extended" +msgstr "" + +#: templates/part.addpropertyform.php:22 templates/part.property.php:54 +#: templates/part.setpropertyform.php:7 +msgid "Street" +msgstr "" + +#: templates/part.addpropertyform.php:23 templates/part.property.php:57 +#: templates/part.setpropertyform.php:8 +msgid "City" +msgstr "" + +#: templates/part.addpropertyform.php:24 templates/part.property.php:60 +#: templates/part.setpropertyform.php:9 +msgid "Region" +msgstr "" + +#: templates/part.addpropertyform.php:25 templates/part.property.php:63 +#: templates/part.setpropertyform.php:10 +msgid "Zipcode" +msgstr "" + +#: templates/part.addpropertyform.php:26 templates/part.property.php:66 +#: templates/part.setpropertyform.php:11 +msgid "Country" +msgstr "" + +#: templates/part.addpropertyform.php:31 +msgid "Mobile" +msgstr "" + +#: templates/part.addpropertyform.php:33 +msgid "Text" +msgstr "" + +#: templates/part.addpropertyform.php:34 +msgid "Voice" +msgstr "" + +#: templates/part.addpropertyform.php:35 +msgid "Fax" +msgstr "" + +#: templates/part.addpropertyform.php:36 +msgid "Video" +msgstr "" + +#: templates/part.addpropertyform.php:37 +msgid "Pager" +msgstr "" + +#: templates/part.details.php:33 +msgid "Delete" +msgstr "" + +#: templates/part.details.php:34 +msgid "Add Property" +msgstr "" + +#: templates/part.property.php:9 +msgid "Birthday" +msgstr "" + +#: templates/part.property.php:29 +msgid "Phone" +msgstr "" + +#: templates/part.setpropertyform.php:17 +msgid "Edit" +msgstr "" + +