1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-19 08:52:22 +01:00

default should always be home

This commit is contained in:
Bjoern Schiessle 2015-06-25 16:53:33 +02:00
parent 544a60b39a
commit d1b6ee9f2e

View File

@ -160,8 +160,8 @@ Class Properties {
case 'ADR':
case 'IMPP':
return array(
'WORK' => (string)$l->t('Work'),
'HOME' => (string)$l->t('Home'),
'WORK' => (string)$l->t('Work'),
'OTHER' => (string)$l->t('Other'),
);
case 'TEL':
@ -179,8 +179,8 @@ Class Properties {
);
case 'EMAIL':
return array(
'WORK' => (string)$l->t('Work'),
'HOME' => (string)$l->t('Home'),
'WORK' => (string)$l->t('Work'),
'INTERNET' => (string)$l->t('Internet'),
'OTHER' => (string)$l->t('Other'),
);