fixed contacts strings (no technical stuff in the interface, don't scream at people, ...), ready for translation

This commit is contained in:
Jan-Christoph Borchardt 2011-09-23 20:13:15 +02:00
parent b73f72f62c
commit d3fedc14e2
47 changed files with 4487 additions and 105 deletions

View File

@ -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

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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();
}

View File

@ -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();
}

View File

@ -0,0 +1,9 @@
<?php $TRANSLATIONS = array(
"Mobile" => "Mobil",
"Text" => "Text",
"Fax" => "Fax",
"Video" => "Video",
"Pager" => "Pager",
"Birthday" => "Geburtstag",
"Edit" => "Bearbeiten"
);

38
apps/contacts/l10n/it.php Normal file
View File

@ -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"
);

View File

@ -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.');

View File

@ -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>

View File

@ -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]; ?>

View File

@ -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']; ?>">

180
l10n/bg_BG/contacts.po Normal file
View File

@ -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 ""

180
l10n/ca/contacts.po Normal file
View File

@ -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 ""

180
l10n/cs_CZ/contacts.po Normal file
View File

@ -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 ""

180
l10n/da/contacts.po Normal file
View File

@ -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 ""

181
l10n/de/contacts.po Normal file
View File

@ -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"

180
l10n/el/contacts.po Normal file
View File

@ -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 ""

180
l10n/es/contacts.po Normal file
View File

@ -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 ""

180
l10n/et_EE/contacts.po Normal file
View File

@ -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 ""

180
l10n/fr/contacts.po Normal file
View File

@ -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 ""

180
l10n/id/contacts.po Normal file
View File

@ -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 ""

181
l10n/it/contacts.po Normal file
View File

@ -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"

180
l10n/lb/contacts.po Normal file
View File

@ -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 ""

180
l10n/ms_MY/contacts.po Normal file
View File

@ -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 ""

180
l10n/nb_NO/contacts.po Normal file
View File

@ -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 ""

180
l10n/nl/contacts.po Normal file
View File

@ -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 ""

180
l10n/pl/contacts.po Normal file
View File

@ -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 ""

180
l10n/pt_BR/contacts.po Normal file
View File

@ -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 ""

180
l10n/pt_PT/contacts.po Normal file
View File

@ -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 ""

180
l10n/ro/contacts.po Normal file
View File

@ -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 ""

180
l10n/ru/contacts.po Normal file
View File

@ -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 ""

180
l10n/sr/contacts.po Normal file
View File

@ -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 ""

180
l10n/sr@latin/contacts.po Normal file
View File

@ -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 ""

180
l10n/sv/contacts.po Normal file
View File

@ -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 ""

View File

@ -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"

View File

@ -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

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

180
l10n/zh_CN/contacts.po Normal file
View File

@ -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 ""