From af48dbec7f87a75a66f79887b6d2419b661e263d Mon Sep 17 00:00:00 2001 From: root Date: Wed, 8 Dec 2010 06:53:48 +0100 Subject: [PATCH 01/51] a littdle addition --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index cf20d35a29..ec7d6e31f2 100644 --- a/index.php +++ b/index.php @@ -111,7 +111,7 @@ if($a->module != 'install') // make sure the desired theme exists, though if the default theme doesn't exist we're stuffed. -if((x($_SESSION,'theme')) && (! file_exists('/view/theme/' . $_SESSION['theme'] . '/style.css'))) +if((x($_SESSION,'theme')) && (! file_exists('view/theme/' . $_SESSION['theme'] . '/style.css'))) unset($_SESSION['theme']); $a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array( From a118f83ee23d9151157500737022db018e922a9f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 14 Jan 2011 10:28:19 +0100 Subject: [PATCH 02/51] initial stuff for the german translation --- view/de/cmnt_received_eml.tpl | 18 + view/de/contact_edit.tpl | 79 +++ view/de/cropbody.tpl | 57 ++ view/de/dfrn_req_confirm.tpl | 17 + view/de/directory_header.tpl | 14 + view/de/follow_notify_eml.tpl | 14 + view/de/friend_complete_eml.tpl | 22 + view/de/group_edit.tpl | 24 + view/de/group_new.tpl | 23 + view/de/head.tpl | 31 + view/de/htconfig.tpl | 64 ++ view/de/insecure_net.tpl | 6 + view/de/install_db.tpl | 40 ++ view/de/intro_complete_eml.tpl | 22 + view/de/intros-top.tpl | 7 + view/de/jot-header.tpl | 132 ++++ view/de/jot.tpl | 45 ++ view/de/like.tpl | 5 + view/de/logout.tpl | 6 + view/de/lostpass.tpl | 18 + view/de/lostpass_eml.tpl | 32 + view/de/mail_received_eml.tpl | 16 + view/de/msg-header.tpl | 100 +++ view/de/netfriend.tpl | 14 + view/de/pagetypes.tpl | 25 + view/de/passchanged_eml.tpl | 20 + view/de/profile-hide-friends.tpl | 16 + view/de/profile-in-directory.tpl | 16 + view/de/profile-in-netdir.tpl | 16 + view/de/profile.php | 72 ++ view/de/profile_advanced.php | 226 +++++++ view/de/profile_edit.tpl | 286 ++++++++ view/de/profile_entry_default.tpl | 9 + view/de/profile_listing_header.tpl | 8 + view/de/profile_photo.tpl | 14 + view/de/profile_tabs.tpl | 7 + view/de/pwdreset.tpl | 16 + view/de/register-link.tpl | 1 + view/de/register_open_eml.tpl | 25 + view/de/register_verify_eml.tpl | 26 + view/de/request_notify_eml.tpl | 17 + view/de/settings.tpl | 163 +++++ view/de/settings_nick_set.tpl | 9 + view/de/settings_nick_subdir.tpl | 6 + view/de/settings_nick_unset.tpl | 14 + view/de/strings.php | 1005 ++++++++++++++++++++++++++++ view/de/wall_item_drop.tpl | 2 + view/de/wall_received_eml.tpl | 18 + view/de/wallwall_item.tpl | 36 + 49 files changed, 2859 insertions(+) create mode 100644 view/de/cmnt_received_eml.tpl create mode 100644 view/de/contact_edit.tpl create mode 100644 view/de/cropbody.tpl create mode 100644 view/de/dfrn_req_confirm.tpl create mode 100644 view/de/directory_header.tpl create mode 100644 view/de/follow_notify_eml.tpl create mode 100644 view/de/friend_complete_eml.tpl create mode 100644 view/de/group_edit.tpl create mode 100644 view/de/group_new.tpl create mode 100644 view/de/head.tpl create mode 100644 view/de/htconfig.tpl create mode 100644 view/de/insecure_net.tpl create mode 100644 view/de/install_db.tpl create mode 100644 view/de/intro_complete_eml.tpl create mode 100644 view/de/intros-top.tpl create mode 100644 view/de/jot-header.tpl create mode 100644 view/de/jot.tpl create mode 100644 view/de/like.tpl create mode 100644 view/de/logout.tpl create mode 100644 view/de/lostpass.tpl create mode 100644 view/de/lostpass_eml.tpl create mode 100644 view/de/mail_received_eml.tpl create mode 100644 view/de/msg-header.tpl create mode 100644 view/de/netfriend.tpl create mode 100644 view/de/pagetypes.tpl create mode 100644 view/de/passchanged_eml.tpl create mode 100644 view/de/profile-hide-friends.tpl create mode 100644 view/de/profile-in-directory.tpl create mode 100644 view/de/profile-in-netdir.tpl create mode 100644 view/de/profile.php create mode 100644 view/de/profile_advanced.php create mode 100644 view/de/profile_edit.tpl create mode 100644 view/de/profile_entry_default.tpl create mode 100644 view/de/profile_listing_header.tpl create mode 100644 view/de/profile_photo.tpl create mode 100644 view/de/profile_tabs.tpl create mode 100644 view/de/pwdreset.tpl create mode 100644 view/de/register-link.tpl create mode 100644 view/de/register_open_eml.tpl create mode 100644 view/de/register_verify_eml.tpl create mode 100644 view/de/request_notify_eml.tpl create mode 100644 view/de/settings.tpl create mode 100644 view/de/settings_nick_set.tpl create mode 100644 view/de/settings_nick_subdir.tpl create mode 100644 view/de/settings_nick_unset.tpl create mode 100644 view/de/strings.php create mode 100644 view/de/wall_item_drop.tpl create mode 100644 view/de/wall_received_eml.tpl create mode 100644 view/de/wallwall_item.tpl diff --git a/view/de/cmnt_received_eml.tpl b/view/de/cmnt_received_eml.tpl new file mode 100644 index 0000000000..d60fcd375d --- /dev/null +++ b/view/de/cmnt_received_eml.tpl @@ -0,0 +1,18 @@ + +Dear $username, + + '$from' commented on an item/conversation which you have been following. + +----- +$body +----- + +Please login at $siteurl to view the complete conversation: + +$display + +Thank you, + $sitename administrator + + + diff --git a/view/de/contact_edit.tpl b/view/de/contact_edit.tpl new file mode 100644 index 0000000000..79a7651c1c --- /dev/null +++ b/view/de/contact_edit.tpl @@ -0,0 +1,79 @@ + +

$header

+ +
$name
+ + +
+ +
+ $alt_text +
+ $name +
+
+
+
+ + + +
+
+
$lastupdtext$last_update +
$updpub
+ $poll_interval +
+
+
+ +$insecure +$blocked +$ignored + +
+ + +
+

Contact Information / Notes

+ +
+
+ + + +
+

Profile Visibility

+

Please choose the profile you would like to display to $name when viewing your profile securely. +

+
+$profile_select +
+ + + + +
+

Online Reputation

+

+Occasionally your friends may wish to inquire about this person's online legitimacy. You may help them choose whether or not to interact with this person by providing a 'reputation' to guide them. +

+
+$rating +
+
+

+Please take a moment to elaborate on this selection if you feel it could be helpful to others. +

+ +
+
+$groups + + +
+
diff --git a/view/de/cropbody.tpl b/view/de/cropbody.tpl new file mode 100644 index 0000000000..39395af8e1 --- /dev/null +++ b/view/de/cropbody.tpl @@ -0,0 +1,57 @@ +

Crop Image

+

+Please adjust the image cropping for optimum viewing. +

+
+ +
+
+
+
+ + + +
+ + + + + + + + + + +
+ +
+ +
diff --git a/view/de/dfrn_req_confirm.tpl b/view/de/dfrn_req_confirm.tpl new file mode 100644 index 0000000000..f053f22af2 --- /dev/null +++ b/view/de/dfrn_req_confirm.tpl @@ -0,0 +1,17 @@ + +

+Welcome home $username. +
+Please confirm your introduction to $dfrn_url. + +

+
+ + + +$aes_allow + +
+ +
+
\ No newline at end of file diff --git a/view/de/directory_header.tpl b/view/de/directory_header.tpl new file mode 100644 index 0000000000..03eed62b3c --- /dev/null +++ b/view/de/directory_header.tpl @@ -0,0 +1,14 @@ +

Site Directory

+ +$globaldir + +$finding + +
+
+ + +
+
+
+ diff --git a/view/de/follow_notify_eml.tpl b/view/de/follow_notify_eml.tpl new file mode 100644 index 0000000000..ae758c9a8f --- /dev/null +++ b/view/de/follow_notify_eml.tpl @@ -0,0 +1,14 @@ + +Dear $myname, + +You have a new follower at $sitename - '$requestor'. + +You may visit their profile at $url. + +Please login to your site to approve or ignore/cancel the request. + +$siteurl + +Regards, + + $sitename administrator \ No newline at end of file diff --git a/view/de/friend_complete_eml.tpl b/view/de/friend_complete_eml.tpl new file mode 100644 index 0000000000..ab12fcb6b7 --- /dev/null +++ b/view/de/friend_complete_eml.tpl @@ -0,0 +1,22 @@ + +Dear $username, + + Great news... '$fn' at '$dfrn_url' has accepted +your connection request at '$sitename'. + +You are now mutual friends and may exchange status updates, photos, and email +without restriction. + +Please visit your 'Contacts' page at $sitename if you wish to make +any changes to this relationship. + +$siteurl + +[For instance, you may create a separate profile with information that is not +available to the general public - and assign viewing rights to '$fn']. + +Sincerely, + + $sitename Administrator + + diff --git a/view/de/group_edit.tpl b/view/de/group_edit.tpl new file mode 100644 index 0000000000..e6c7afb490 --- /dev/null +++ b/view/de/group_edit.tpl @@ -0,0 +1,24 @@ +

Group Editor

+ + +
+
+
+ + +
+
+
+ +$selector + +
+$drop +
+
+ +
+ +
+
+
diff --git a/view/de/group_new.tpl b/view/de/group_new.tpl new file mode 100644 index 0000000000..a1efa77175 --- /dev/null +++ b/view/de/group_new.tpl @@ -0,0 +1,23 @@ + + + +
+
+ +
+

+Create a group of contacts/friends. + +

+ + +
+
+ +
+ + +
+
+ + \ No newline at end of file diff --git a/view/de/head.tpl b/view/de/head.tpl new file mode 100644 index 0000000000..50dd9cab6b --- /dev/null +++ b/view/de/head.tpl @@ -0,0 +1,31 @@ + + + + + + + + + + + diff --git a/view/de/htconfig.tpl b/view/de/htconfig.tpl new file mode 100644 index 0000000000..c7c19bf69e --- /dev/null +++ b/view/de/htconfig.tpl @@ -0,0 +1,64 @@ +path to 'directory/subdirectory'. + +$a->path = '$urlpath'; + +// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles". +// It can be changed later and only applies to timestamps for anonymous viewers. + +$default_timezone = '$timezone'; + +// What is your site name? + +$a->config['sitename'] = "My Friend Network"; + +// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED. +// Be certain to create your own personal account before setting +// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on +// the registration page. REGISTER_APPROVE requires you set 'admin_email' +// to the email address of an already registered person who can authorise +// and/or approve/deny the request. + +$a->config['register_policy'] = REGISTER_OPEN; +$a->config['register_text'] = ''; +$a->config['admin_email'] = ''; + +// Maximum size of an imported message, 0 is unlimited + +$a->config['max_import_size'] = 10000; + +// maximum size of uploaded photos + +$a->config['system']['maximagesize'] = 800000; + +// Location of PHP command line processor + +$a->config['php_path'] = '$phpath'; + +// Location of global directory submission page. + +$a->config['system']['directory_submit_url'] = 'http://dir.friendika.com/submit'; +$a->config['system']['directory_search_url'] = 'http://dir.friendika.com/directory?search='; + +// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts + +$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com'; + +// Server-to-server private message encryption (RINO) is allowed by default. +// Encryption will only be provided if this setting is true and the +// PHP mcrypt extension is installed on both systems + +$a->config['system']['rino_encrypt'] = true; + diff --git a/view/de/insecure_net.tpl b/view/de/insecure_net.tpl new file mode 100644 index 0000000000..5628639ccf --- /dev/null +++ b/view/de/insecure_net.tpl @@ -0,0 +1,6 @@ +
+

+The social network that $name belongs to is an open network with limited or non-existent privacy controls. +Please use appropriate discretion. +

+
\ No newline at end of file diff --git a/view/de/install_db.tpl b/view/de/install_db.tpl new file mode 100644 index 0000000000..c413689c25 --- /dev/null +++ b/view/de/install_db.tpl @@ -0,0 +1,40 @@ + +

Friendika Social Network

+

Installation

+ +

+In order to install Friendika we need to know how to contact your database. Please contact your hosting provider or site administrator if you have questions about these settings. The database you specify below must already exist. If it does not, please create it before continuing. +

+ +
+ + + + + +
+ + + +
+ + + +
+ + + +
+ +
+Please select a default timezone for your website +
+ +$tzselect + +
+ + +
+
+ diff --git a/view/de/intro_complete_eml.tpl b/view/de/intro_complete_eml.tpl new file mode 100644 index 0000000000..a60745ec55 --- /dev/null +++ b/view/de/intro_complete_eml.tpl @@ -0,0 +1,22 @@ + +Dear $username, + + '$fn' at '$dfrn_url' has accepted +your connection request at '$sitename'. + + '$fn' has chosen to accept you a "fan", which restricts +some forms of communication - such as private messaging and some profile +interactions. If this is a celebrity or community page, these settings were +applied automatically. + + '$fn' may choose to extend this into a two-way or more permissive +relationship in the future. + + You will start receiving public status updates from '$fn', +which will appear on your 'Network' page at + +$siteurl + +Sincerely, + + $sitename Administrator diff --git a/view/de/intros-top.tpl b/view/de/intros-top.tpl new file mode 100644 index 0000000000..d8b7394a4a --- /dev/null +++ b/view/de/intros-top.tpl @@ -0,0 +1,7 @@ +

Pending Friend/Connect Notifications

+ + + + diff --git a/view/de/jot-header.tpl b/view/de/jot-header.tpl new file mode 100644 index 0000000000..b687f65a69 --- /dev/null +++ b/view/de/jot-header.tpl @@ -0,0 +1,132 @@ + + + + + + diff --git a/view/de/jot.tpl b/view/de/jot.tpl new file mode 100644 index 0000000000..6590cace8f --- /dev/null +++ b/view/de/jot.tpl @@ -0,0 +1,45 @@ + +
+
+
 
+
+
+
+ +
+ + + + + + + + +
+ +
+
Upload Photo
+
+ +
+ Insert YouTube video +
+
+ Set your location +
+ +
+ +
+
Permission Settings$bang
+
+ +
+ +
+
+
diff --git a/view/de/like.tpl b/view/de/like.tpl new file mode 100644 index 0000000000..1c385e5deb --- /dev/null +++ b/view/de/like.tpl @@ -0,0 +1,5 @@ + diff --git a/view/de/logout.tpl b/view/de/logout.tpl new file mode 100644 index 0000000000..9a6c1d763a --- /dev/null +++ b/view/de/logout.tpl @@ -0,0 +1,6 @@ +
+
+ + +
+
diff --git a/view/de/lostpass.tpl b/view/de/lostpass.tpl new file mode 100644 index 0000000000..a7040c1493 --- /dev/null +++ b/view/de/lostpass.tpl @@ -0,0 +1,18 @@ +

Forgot your Password?

+ +

+Enter your email address and submit to have your password reset. Then check your email for further instructions. +

+ +
+
+ + +
+
+
+ +
+
+
+ diff --git a/view/de/lostpass_eml.tpl b/view/de/lostpass_eml.tpl new file mode 100644 index 0000000000..c350236a43 --- /dev/null +++ b/view/de/lostpass_eml.tpl @@ -0,0 +1,32 @@ + +Dear $username, + A request was recently received at $sitename to reset your account +password. In order to confirm this request, please select the verification link +below or paste it into your web browser address bar. + +If you did NOT request this change, please DO NOT follow the link +provided and ignore and/or delete this email. + +Your password will not be changed unless we can verify that you +issued this request. + +Follow this link to verify your identity: + +$reset_link + +You will then receive a follow-up message containing the new password. + +You may change that password from your account settings page after logging in. + +The login details are as follows: + +Site Location: $siteurl +Login Name: $email + + + + +Sincerely, + $sitename Administrator + + diff --git a/view/de/mail_received_eml.tpl b/view/de/mail_received_eml.tpl new file mode 100644 index 0000000000..261aec4bed --- /dev/null +++ b/view/de/mail_received_eml.tpl @@ -0,0 +1,16 @@ + +Dear $username, + + You've received a new private message at $sitename from '$from'. +----- +$title +----- +$body +----- +Please login at $siteurl to read and reply to your private messages. + +Thank you, + $sitename administrator + + + diff --git a/view/de/msg-header.tpl b/view/de/msg-header.tpl new file mode 100644 index 0000000000..3d2567f627 --- /dev/null +++ b/view/de/msg-header.tpl @@ -0,0 +1,100 @@ + + + + + + diff --git a/view/de/netfriend.tpl b/view/de/netfriend.tpl new file mode 100644 index 0000000000..b041ec49f7 --- /dev/null +++ b/view/de/netfriend.tpl @@ -0,0 +1,14 @@ +
Approve as:
+ +
+ + +
+
+
+
+ + +
+
+
diff --git a/view/de/pagetypes.tpl b/view/de/pagetypes.tpl new file mode 100644 index 0000000000..2036614abd --- /dev/null +++ b/view/de/pagetypes.tpl @@ -0,0 +1,25 @@ + +
+ + + This account is a normal personal profile +
+
+
+ + + Automatically approve all connection/friend requests as read-only fans +
+
+
+ + + Automatically approve all connection/friend requests as read-write fans +
+
+
+ + + Automatically approve all connection/friend requests as friends +
+
diff --git a/view/de/passchanged_eml.tpl b/view/de/passchanged_eml.tpl new file mode 100644 index 0000000000..9692159e18 --- /dev/null +++ b/view/de/passchanged_eml.tpl @@ -0,0 +1,20 @@ + +Dear $username, + Your password has been changed as requested. Please retain this +information for your records (or change your password immediately to +something that you will remember). + + +Your login details are as follows: + +Site Location: $siteurl +Login Name: $email +Password: $new_password + +You may change that password from your account settings page after logging in. + + +Sincerely, + $sitename Administrator + + diff --git a/view/de/profile-hide-friends.tpl b/view/de/profile-hide-friends.tpl new file mode 100644 index 0000000000..54ade00fec --- /dev/null +++ b/view/de/profile-hide-friends.tpl @@ -0,0 +1,16 @@ +

+Hide my contact/friend list from viewers of this profile? +

+ +
+ + + +
+
+
+ + + +
+
diff --git a/view/de/profile-in-directory.tpl b/view/de/profile-in-directory.tpl new file mode 100644 index 0000000000..98af3e59a9 --- /dev/null +++ b/view/de/profile-in-directory.tpl @@ -0,0 +1,16 @@ +

+Publish your default profile in site directory? +

+ +
+ + + +
+
+
+ + + +
+
diff --git a/view/de/profile-in-netdir.tpl b/view/de/profile-in-netdir.tpl new file mode 100644 index 0000000000..be111aa67f --- /dev/null +++ b/view/de/profile-in-netdir.tpl @@ -0,0 +1,16 @@ +

+Publish your default profile in global social directory? +

+ +
+ + + +
+
+
+ + + +
+
diff --git a/view/de/profile.php b/view/de/profile.php new file mode 100644 index 0000000000..fa7372668c --- /dev/null +++ b/view/de/profile.php @@ -0,0 +1,72 @@ + + + + <?php if(x($page,'title')) echo $page['title']; ?> + + + +
+ + +
+ + +
+
+ +
+ + + diff --git a/view/de/profile_advanced.php b/view/de/profile_advanced.php new file mode 100644 index 0000000000..82c66adece --- /dev/null +++ b/view/de/profile_advanced.php @@ -0,0 +1,226 @@ +Profile + + +EOT; + +if($a->profile['name']) { +$o .= <<< EOT +
+
Full Name:
+
{$a->profile['name']}
+
+
+EOT; +} + +if($a->profile['gender']) { +$o .= <<< EOT +
+
Gender:
+
{$a->profile['gender']}
+
+
+EOT; +} + +if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { +$o .= <<< EOT +
+
Birthday:
+EOT; + +// If no year, add an arbitrary one so just we can parse the month and day. + +$o .= '
' + . ((intval($a->profile['dob'])) + ? datetime_convert('UTC',date_default_timezone_get(),$a->profile['dob'],'j F, Y') + : datetime_convert('UTC',date_default_timezone_get(),'2001-' . substr($a->profile['dob'],6),'j F')) + . "
\r\n
"; + +$o .= '
'; + +} + +if($age = age($a->profile['dob'],$a->profile['timezone'],'')) { +$o .= <<< EOT +
+
Age:
+
$age
+
+
+EOT; +} + +if($a->profile['marital']) { +$o .= <<< EOT +
+
Status:
+
{$a->profile['marital']}
+EOT; + +if($a->profile['with']) + $o .= "
({$a->profile['with']})
"; +$o .= <<< EOT +
+
+EOT; +} + +if($a->profile['sexual']) { +$o .= <<< EOT +
+
Sexual Preference:
+
{$a->profile['sexual']}
+
+
+EOT; +} + +if($a->profile['homepage']) { + $homepage = linkify($a->profile['homepage']); +$o .= <<< EOT +
+
Homepage:
+
$homepage
+
+
+EOT; +} + +if($a->profile['politic']) { +$o .= <<< EOT +
+
Political Views:
+
{$a->profile['politic']}
+
+
+EOT; +} + +if($a->profile['religion']) { +$o .= <<< EOT +
+
Religion:
+
{$a->profile['religion']}
+
+
+EOT; +} + +if($txt = bbcode($a->profile['about'])) { +$o .= <<< EOT +
+
About:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['interest'])) { +$o .= <<< EOT +
+
Hobbies/Interests:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['contact'])) { +$o .= <<< EOT +
+
Contact information and Social Networks:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['music'])) { +$o .= <<< EOT +
+
Musical interests:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['book'])) { +$o .= <<< EOT +
+
Books, literature:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['tv'])) { +$o .= <<< EOT +
+
Television:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['film'])) { +$o .= <<< EOT +
+
Film/dance/culture/entertainment:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['romance'])) { +$o .= <<< EOT +
+
Love/romance:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['work'])) { +$o .= <<< EOT +
+
Work/employment:
+
+
$txt
+
+
+EOT; +} + +if($txt = bbcode($a->profile['education'])) { +$o .= <<< EOT +
+
School/education:
+
+
$txt
+
+
+EOT; +} + + diff --git a/view/de/profile_edit.tpl b/view/de/profile_edit.tpl new file mode 100644 index 0000000000..50227b7f3b --- /dev/null +++ b/view/de/profile_edit.tpl @@ -0,0 +1,286 @@ +

Edit Profile Details

+ + + + + +$default + +
+
+ +
+ +
*
+
+
+ +
+ + +
+
+ +
+ +$gender +
+
+ +
+ +
+$dob $age +
+
+
+ +$hide_friends + +
+ +
+
+ + +
+ + +
+
+ +
+ + +
+
+ + +
+ + +
+
+ +
+ + +
+
+ +
+ + +
+
+ +
+ +
+
+ +
+ +$marital +
+ + +
+ +
+ +$sexual +
+
+ + + +
+ + +
+
+ +
+ + +
+
+ +
+ + +
+
+ +
+ + +
(Used for searching public profiles, never shown to others)
+
+ + +
+ +
+
+ +
+

+Tell us about yourself... +

+ + + +
+
+
+ + +
+

+Hobbies/Interests +

+ + + +
+
+
+ + +
+

+Contact information and Social Networks +

+ + + +
+
+
+ + +
+ +
+
+ + +
+

+Musical interests +

+ + + +
+
+
+ +
+

+Books, literature +

+ + + +
+
+ + + + +
+

+Television +

+ + + +
+
+ + + + +
+

+Film/dance/culture/entertainment +

+ + + +
+
+ + + +
+ +
+
+ + +
+

+Love/romance +

+ + + +
+
+ + + + +
+

+Work/employment +

+ + + +
+
+ + + + +
+

+School/education +

+ + + +
+
+ + + + +
+ +
+
+ + + + + \ No newline at end of file diff --git a/view/de/profile_entry_default.tpl b/view/de/profile_entry_default.tpl new file mode 100644 index 0000000000..6511999184 --- /dev/null +++ b/view/de/profile_entry_default.tpl @@ -0,0 +1,9 @@ + +
+
+Profile Image +
+
+ +
+
diff --git a/view/de/profile_listing_header.tpl b/view/de/profile_listing_header.tpl new file mode 100644 index 0000000000..d4b139a698 --- /dev/null +++ b/view/de/profile_listing_header.tpl @@ -0,0 +1,8 @@ +

Profiles

+

+Change profile photo +

+ + diff --git a/view/de/profile_photo.tpl b/view/de/profile_photo.tpl new file mode 100644 index 0000000000..d518e73312 --- /dev/null +++ b/view/de/profile_photo.tpl @@ -0,0 +1,14 @@ +

Upload Profile Photo

+ +
+ +
+ + +
+ +
+ +
+ +
\ No newline at end of file diff --git a/view/de/profile_tabs.tpl b/view/de/profile_tabs.tpl new file mode 100644 index 0000000000..9c6c54a1c5 --- /dev/null +++ b/view/de/profile_tabs.tpl @@ -0,0 +1,7 @@ + +
+ Status + Profile + Photos +
+
\ No newline at end of file diff --git a/view/de/pwdreset.tpl b/view/de/pwdreset.tpl new file mode 100644 index 0000000000..dd609f0610 --- /dev/null +++ b/view/de/pwdreset.tpl @@ -0,0 +1,16 @@ +

Password Reset

+ +

+Your password has been reset as requested. +

+

+Your new password is +

+

+$newpass +

+

+Save or copy your new password - and then click here to login. +

+

+Your password may be changed from the 'Settings' page after successful login. \ No newline at end of file diff --git a/view/de/register-link.tpl b/view/de/register-link.tpl new file mode 100644 index 0000000000..7f3fca4d6c --- /dev/null +++ b/view/de/register-link.tpl @@ -0,0 +1 @@ + Register diff --git a/view/de/register_open_eml.tpl b/view/de/register_open_eml.tpl new file mode 100644 index 0000000000..c88eba8d35 --- /dev/null +++ b/view/de/register_open_eml.tpl @@ -0,0 +1,25 @@ + +Dear $username, + Thank you for registering at $sitename. Your account has been created. +The login details are as follows: + + +Site Location: $siteurl +Login Name: $email +Password: $password + +You may change your password from your account "Settings" page after logging +in. + +Please take a few moments to review the other account settings on that page. +By default your account is private and hidden (invisible to other people). +You might wish to change this by publishing your profile - so that it appears +in a directory and other people can find you. + + +Thank you and welcome to $sitename. + +Sincerely, + $sitename Administrator + + diff --git a/view/de/register_verify_eml.tpl b/view/de/register_verify_eml.tpl new file mode 100644 index 0000000000..60c38d8000 --- /dev/null +++ b/view/de/register_verify_eml.tpl @@ -0,0 +1,26 @@ + +A new user registration request was received at $sitename which requires +your approval. + + +The login details are as follows: + +Full Name: $username +Site Location: $siteurl +Login Name: $email + + +To approve this request please visit the following link: + + +$siteurl/regmod/allow/$hash + + +To deny the request and remove the account, please visit: + + +$siteurl/regmod/deny/$hash + + +Thank you. + diff --git a/view/de/request_notify_eml.tpl b/view/de/request_notify_eml.tpl new file mode 100644 index 0000000000..9eef7a61eb --- /dev/null +++ b/view/de/request_notify_eml.tpl @@ -0,0 +1,17 @@ + +Dear $myname, + +You have just received a connection request at $sitename + +from '$requestor'. + +You may visit their profile at $url. + +Please login to your site to view the complete introduction +and approve or ignore/cancel the request. + +$siteurl + +Regards, + + $sitename administrator \ No newline at end of file diff --git a/view/de/settings.tpl b/view/de/settings.tpl new file mode 100644 index 0000000000..5e1bfabf4c --- /dev/null +++ b/view/de/settings.tpl @@ -0,0 +1,163 @@ +

Account Settings

+ + + +$nickname_block + + +
+ + +

Basic Settings

+ +
+ + +
+
+ +
+ + +
+
+ + + +
+ +$zoneselect +
+
+ +
+ + +
+
+ +
+ + +
+
+ + + + +
+ +$theme +
+
+ +
+ +
+ + +

Security and Privacy Settings

+ + + + +
+ + +
(to prevent spam abuse)
+
+
+ + + + +$profile_in_dir + +$profile_in_net_dir + + + +
+ +
+ + +
+
+ +
+ +
+ + + +

Notification Settings

+ + +
+
Send a notification email when:
+ + +
+ + +
+ + +
+ + +
+ + +
+
+
+ +
+ +
+ + +

Password Settings

+ + +
+

+Leave password fields blank unless changing +

+ + +
+
+ +
+ + +
+
+ +
+ $oidhtml +
+
+ + +
+ +
+ + +

Advanced Page Settings

+ +$pagetype + +
+ +
+ + diff --git a/view/de/settings_nick_set.tpl b/view/de/settings_nick_set.tpl new file mode 100644 index 0000000000..a36b3b9a20 --- /dev/null +++ b/view/de/settings_nick_set.tpl @@ -0,0 +1,9 @@ + +
+

+Your profile address is '$nickname@$basepath' +

+$subdir + +
+
diff --git a/view/de/settings_nick_subdir.tpl b/view/de/settings_nick_subdir.tpl new file mode 100644 index 0000000000..303c24df71 --- /dev/null +++ b/view/de/settings_nick_subdir.tpl @@ -0,0 +1,6 @@ +

+It appears that your website is located in a subdirectory of the
+$hostname website, so this setting may not work reliably.
+

+

If you have any issues, you may have better results using the profile
address '$baseurl/profile/$nickname'. +

\ No newline at end of file diff --git a/view/de/settings_nick_unset.tpl b/view/de/settings_nick_unset.tpl new file mode 100644 index 0000000000..903768b594 --- /dev/null +++ b/view/de/settings_nick_unset.tpl @@ -0,0 +1,14 @@ + +
+

+Your profile URL is currently '$baseurl/profile/$uid'. +Setting a nickname will allow a friendly profile URL such as +'nickname@$basepath'. +
+Once set, it can never be changed. The nickname must start with a letter; and only letters, numbers, dashes, and underscores are allowed. +

+ + +
+
+ diff --git a/view/de/strings.php b/view/de/strings.php new file mode 100644 index 0000000000..d7d41bdf66 --- /dev/null +++ b/view/de/strings.php @@ -0,0 +1,1005 @@ +strings['Not Found'] = 'Nicht gefunden'; +$a->strings['Page not found.' ] = 'Seite nicht gefunden.' ; +$a->strings['Permission denied'] = 'Zugriff verweigert'; +$a->strings['Permission denied.'] = 'Zugriff verweigert.'; +$a->strings['Nickname or Email address: '] = 'Spitzname oder Email-Adresse: '; +$a->strings['Password: '] = 'Passwort: '; +$a->strings['Login'] = 'Anmeldung'; +$a->strings['Nickname/Email/OpenID: '] = 'Spitzname/Email/OpenID: '; +$a->strings["Password \x28if not OpenID\x29: "] = "Passwort \x28falls nicht OpenID\x29: "; +$a->strings['Forgot your password?'] = 'Passwort vergessen?'; +$a->strings['Password Reset'] = 'Passwort zurücksetzen'; +$a->strings['prev'] = 'vorige'; +$a->strings['first'] = 'erste'; +$a->strings['last'] = 'letzte'; +$a->strings['next'] = 'nächste'; +$a->strings[' likes this.'] = ' mag dies.'; +$a->strings[' doesn\'t like this.'] = ' mag dies nicht.'; +$a->strings['people'] = 'Leute'; +$a->strings['like this.'] = 'mag dies.'; +$a->strings['don\'t like this.'] = 'mag dies nicht.'; +$a->strings['and'] = 'und'; +$a->strings[', and '] = ' und '; +$a->strings[' other people'] = ' andere Leute'; +$a->strings[' like this.'] = ' mag dies..'; +$a->strings[' don\'t like this.'] = ' mag dies nicht.'; +$a->strings['No contacts'] = 'Keine Kontakte'; +$a->strings['Contacts'] = 'Kontakte'; +$a->strings['View Contacts'] = 'Kontakte Anzeigen'; +$a->strings['Search'] = 'Suche'; +$a->strings['No profile'] = 'Kein Profil'; +$a->strings['Connect'] = 'Verbinden'; +$a->strings['Location:'] = 'Ort:'; +$a->strings[', '] = ', '; +$a->strings['Gender:'] = 'Geschlecht:'; +$a->strings['Status:'] = 'Status:'; +$a->strings['Homepage:'] = 'Homepage:'; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings['Connect/Follow [profile address]'] = 'Kontaktiere/Folge [Profil Adresse]'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Beispiel: bob@example.com, http://example.com/barbara'; +$a->strings['Follow'] = 'Folge'; +$a->strings['Could not access contact record.'] = 'Konnte nicht auf die Kontaktdaten zugreifen.'; +$a->strings['Could not locate selected profile.'] = 'Konnte das ausgewählte Profiel nicht finden.'; +$a->strings['Contact updated.'] = 'Kontakt aktualisiert.'; +$a->strings['Failed to update contact record.'] = 'Aktualisierung der Kontaktdaten fehlgeschlagen.'; +$a->strings['Contact has been '] = 'Contact has been '; +$a->strings['blocked'] = 'blocked'; +$a->strings['unblocked'] = 'unblocked'; +$a->strings['ignored'] = 'ignored'; +$a->strings['unignored'] = 'unignored'; +$a->strings['stopped following'] = 'stopped following'; +$a->strings['Contact has been removed.'] = 'Kontakt wurde entfernt.'; +$a->strings['Contact not found.'] = 'Kontakt nicht gefunden.'; +$a->strings['Mutual Friendship'] = 'Beidseitige Freundschaft'; +$a->strings['is a fan of yours'] = 'ist ein Fan von dir'; +$a->strings['you are a fan of'] = 'du bist Fan von'; +$a->strings['Contact Editor'] = 'Kontakt Editor'; +$a->strings['Visit $name\'s profile'] = 'Besuche das Profil von $name'; +$a->strings['Block/Unblock contact'] = 'Block/Unblock contact'; +$a->strings['Ignore contact'] = 'Ignoriere den Kontakt'; +$a->strings['Delete contact'] = 'Lösche den Kontakt'; +$a->strings['Last updated: '] = 'Letzte Aktualisierung: '; +$a->strings['Update public posts: '] = 'Öffentliche Nachricht aktualisieren: '; +$a->strings['Never'] = 'Niemals'; +$a->strings['Unblock this contact'] = 'Blockade dieses Kontakts aufheben'; +$a->strings['Block this contact'] = 'Diesen Kontakt blockieren'; +$a->strings['Unignore this contact'] = 'Diesen Kontakt nicht mehr ignorieren'; +$a->strings['Ignore this contact'] = 'Diesen Kontakt ignorieren'; +$a->strings['Currently blocked'] = 'Derzeit geblockt'; +$a->strings['Currently ignored'] = 'Derzeit ignoriert'; +$a->strings['Show Blocked Connections'] = 'Zeige geblockte Verbindungen'; +$a->strings['Hide Blocked Connections'] = 'Verstecke geblockte Verbindungen'; +$a->strings['Finding: '] = 'Funde: '; +$a->strings['Find'] = 'Finde'; +$a->strings['Visit '] = 'Besuche '; +$a->strings['\'s profile'] = 's Profile'; +$a->strings['Edit contact'] = 'Kontakt bearbeiten'; +$a->strings['Profile not found.'] = 'Profil nicht gefunden.'; +$a->strings['Response from remote site was not understood.'] = 'Antwort der entfernten Gegenstelle unverständlich.'; +$a->strings['Unexpected response from remote site: '] = 'Unerwartete Antwort der Gegenstelle: '; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings['Remote site reported: '] = 'Entfernte Seite meldet: '; +$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again."; +$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; +$a->strings['Unable to set contact photo.'] = 'Unable to set contact photo.'; +$a->strings['is now friends with'] = 'is now friends with'; +$a->strings['No user record found for '] = 'No user record found for '; +$a->strings['Our site encryption key is apparently messed up.'] = 'Our site encryption key is apparently messed up.'; +$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.'; +$a->strings['Contact record was not found for you on our site.'] = 'Contact record was not found for you on our site.'; +$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'The ID provided by your system is a duplicate on our system. It should work if you try again.'; +$a->strings['Unable to set your contact credentials on our system.'] = 'Unable to set your contact credentials on our system.'; +$a->strings['Unable to update your contact profile details on our system'] = 'Unable to update your contact profile details on our system'; +$a->strings["Connection accepted at "] = "Connection accepted at "; +$a->strings['Administrator'] = 'Administrator'; +$a->strings['New mail received at '] = 'New mail received at '; +$a->strings[' commented on an item at '] = ' commented on an item at '; +$a->strings[" commented on an item at "] = " commented on an item at "; +$a->strings[' welcomes '] = ' welcomes '; +$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; +$a->strings['Profile location is not valid or does not contain profile information.'] = 'Profile location is not valid or does not contain profile information.'; +$a->strings['Warning: profile location has no identifiable owner name.'] = 'Warning: profile location has no identifiable owner name.'; +$a->strings['Warning: profile location has no profile photo.'] = 'Warning: profile location has no profile photo.'; +$a->strings[' required parameter'] = ' required parameter'; +$a->strings[" was "] = " was "; +$a->strings["s were "] = "s were "; +$a->strings["not found at the given location."] = "not found at the given location."; +$a->strings["Introduction complete."] = "Introduction complete."; +$a->strings['Unrecoverable protocol error.'] = 'Unrecoverable protocol error.'; +$a->strings['Profile unavailable.'] = 'Profile unavailable.'; +$a->strings[' has received too many connection requests today.'] = ' has received too many connection requests today.'; +$a->strings['Spam protection measures have been invoked.'] = 'Spam protection measures have been invoked.'; +$a->strings['Friends are advised to please try again in 24 hours.'] = 'Friends are advised to please try again in 24 hours.'; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Unable to resolve your name at the provided location."] = "Unable to resolve your name at the provided location."; +$a->strings['You have already introduced yourself here.'] = 'You have already introduced yourself here.'; +$a->strings['Apparently you are already friends with .'] = 'Apparently you are already friends with .'; +$a->strings['Invalid profile URL.'] = 'Invalid profile URL.'; +$a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.'; +$a->strings['Your introduction has been sent.'] = 'Your introduction has been sent.'; +$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; +$a->strings['[Name Withheld]'] = '[Name Withheld]'; +$a->strings['Friend/Connection Request'] = 'Friend/Connection Request'; +$a->strings['Please answer the following:'] = 'Please answer the following:'; +$a->strings['Does $name know you?'] = 'Does $name know you?'; +$a->strings['Yes'] = 'Yes'; +$a->strings['No'] = 'No'; +$a->strings['Add a personal note:'] = 'Add a personal note:'; +$a->strings['Please enter your profile address from one of the following supported social networks:'] = 'Please enter your profile address from one of the following supported social networks:'; +$a->strings['Friendika'] = 'Friendika'; +$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web'; +$a->strings["Private \x28secure\x29 network"] = "Private \x28secure\x29 network"; +$a->strings["Public \x28insecure\x29 network"] = "Public \x28insecure\x29 network"; +$a->strings['Your profile address:'] = 'Your profile address:'; +$a->strings['Submit Request'] = 'Submit Request'; +$a->strings['Cancel'] = 'Cancel'; +$a->strings['Global Directory'] = 'Global Directory'; +$a->strings['Item not found.'] = 'Item not found.'; +$a->strings['Private Message'] = 'Private Message'; +$a->strings['This is you'] = 'This is you'; +$a->strings['View $name\'s profile'] = 'View $name\'s profile'; +$a->strings['Item has been removed.'] = 'Item has been removed.'; +$a->strings['The profile address specified does not provide adequate information.'] = 'The profile address specified does not provide adequate information.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited profile. This person will be unable to receive direct/personal notifications from you.'; +$a->strings['Unable to retrieve contact information.'] = 'Unable to retrieve contact information.'; +$a->strings['following'] = 'following'; +$a->strings['Group created.'] = 'Group created.'; +$a->strings['Could not create group.'] = 'Could not create group.'; +$a->strings['Group not found.'] = 'Group not found.'; +$a->strings['Group name changed.'] = 'Group name changed.'; +$a->strings['Membership list updated.'] = 'Membership list updated.'; +$a->strings['Group removed.'] = 'Group removed.'; +$a->strings['Unable to remove group.'] = 'Unable to remove group.'; +$a->strings['Delete'] = 'Delete'; +$a->strings["Welcome to "] = "Welcome to "; +$a->strings['Could not create/connect to database.'] = 'Could not create/connect to database.'; +$a->strings['Connected to database.'] = 'Connected to database.'; +$a->strings['Database import succeeded.'] = 'Database import succeeded.'; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'; +$a->strings['Please see the file "INSTALL.txt".'] = 'Please see the file "INSTALL.txt".'; +$a->strings['Database import failed.'] = 'Database import failed.'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'You may need to import the file "database.sql" manually using phpmyadmin or mysql.'; +$a->strings['Welcome to Friendika.'] = 'Welcome to Friendika.'; +$a->strings['Submit'] = 'Submit'; +$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Could not find a command line version of PHP in the web server PATH.'; +$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'This is required. Please adjust the configuration file .htconfig.php accordingly.'; +$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'The command line version of PHP on your system does not have "register_argc_argv" enabled.'; +$a->strings['This is required for message delivery to work.'] = 'This is required for message delivery to work.'; +$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'; +$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'; +$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: Apache webserver mod-rewrite module is required but not installed.'; +$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: libCURL PHP module required but not installed.'; +$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: GD graphics PHP module with JPEG support required but not installed.'; +$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: openssl PHP module required but not installed.'; +$a->strings['Error: mysqli PHP module required but not installed.'] = 'Error: mysqli PHP module required but not installed.'; +$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'; +$a->strings['This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'] = 'This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'; +$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Please check with your site documentation or support people to see if this situation can be corrected.'; +$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'; +$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'; +$a->strings['Errors encountered creating database tables.'] = 'Errors encountered creating database tables.'; +$a->strings[' : '] = ' : '; +$a->strings['Not a valid email address.'] = 'Not a valid email address.'; +$a->strings['Please join my network on '] = 'Please join my network on '; +$a->strings['Message delivery failed.'] = 'Message delivery failed.'; +$a->strings[' messages sent.'] = ' messages sent.'; +$a->strings['Send invitations'] = 'Send invitations'; +$a->strings['Enter email addresses, one per line:'] = 'Enter email addresses, one per line:'; +$a->strings['Your message:'] = 'Your message:'; +$a->strings['Please join my social network on '] = 'Please join my social network on '; +$a->strings["\r\n"] = "\r\n"; +$a->strings['To accept this invitation, please visit:'] = 'To accept this invitation, please visit:'; +$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Once you have registered, please connect with me via my profile page at:'; +$a->strings['Unable to locate original post.'] = 'Unable to locate original post.'; +$a->strings['Empty post discarded.'] = 'Empty post discarded.'; +$a->strings[" commented on your item at "] = " commented on your item at "; +$a->strings[" posted on your profile wall at "] = " posted on your profile wall at "; +$a->strings['photo'] = 'photo'; +$a->strings['status'] = 'status'; +$a->strings['likes'] = 'likes'; +$a->strings['doesn\'t like'] = 'doesn\'t like'; +$a->strings['\'s'] = '\'s'; +$a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.'; +$a->strings['Visible to:'] = 'Visible to:'; +$a->strings['Password reset requested at '] = 'Password reset requested at '; +$a->strings['No recipient selected.'] = 'No recipient selected.'; +$a->strings['[no subject]'] = '[no subject]'; +$a->strings['Unable to locate contact information.'] = 'Unable to locate contact information.'; +$a->strings['Message sent.'] = 'Message sent.'; +$a->strings['Message could not be sent.'] = 'Message could not be sent.'; +$a->strings['Messages'] = 'Messages'; +$a->strings['Inbox'] = 'Inbox'; +$a->strings['Outbox'] = 'Outbox'; +$a->strings['New Message'] = 'New Message'; +$a->strings['Message deleted.'] = 'Message deleted.'; +$a->strings['Conversation removed.'] = 'Conversation removed.'; +$a->strings['Send Private Message'] = 'Send Private Message'; +$a->strings['To:'] = 'To:'; +$a->strings['Subject:'] = 'Subject:'; +$a->strings['Upload photo'] = 'Upload photo'; +$a->strings['Insert web link'] = 'Insert web link'; +$a->strings['Please wait'] = 'Please wait'; +$a->strings['No messages.'] = 'No messages.'; +$a->strings['Delete conversation'] = 'Delete conversation'; +$a->strings['Message not available.'] = 'Message not available.'; +$a->strings['Delete message'] = 'Delete message'; +$a->strings['Send Reply'] = 'Send Reply'; +$a->strings['No such group'] = 'No such group'; +$a->strings['Group is empty'] = 'Group is empty'; +$a->strings['Group: '] = 'Group: '; +$a->strings['Invalid request identifier.'] = 'Invalid request identifier.'; +$a->strings['Discard'] = 'Discard'; +$a->strings['Ignore'] = 'Ignore'; +$a->strings['Show Ignored Requests'] = 'Show Ignored Requests'; +$a->strings['Hide Ignored Requests'] = 'Hide Ignored Requests'; +$a->strings['Claims to be known to you: '] = 'Claims to be known to you: '; +$a->strings['yes'] = 'yes'; +$a->strings['no'] = 'no'; +$a->strings['Notification type: '] = 'Notification type: '; +$a->strings['Friend/Connect Request'] = 'Friend/Connect Request'; +$a->strings['New Follower'] = 'New Follower'; +$a->strings['Approve'] = 'Approve'; +$a->strings['No notifications.'] = 'No notifications.'; +$a->strings['No registrations.'] = 'No registrations.'; +$a->strings['Login failed.'] = 'Login failed.'; +$a->strings["Welcome back "] = "Welcome back "; +$a->strings['Photo Albums'] = 'Photo Albums'; +$a->strings['Contact Photos'] = 'Contact Photos'; +$a->strings['Contact information unavailable'] = 'Contact information unavailable'; +$a->strings['Profile Photos'] = 'Profile Photos'; +$a->strings['Album not found.'] = 'Album not found.'; +$a->strings['Delete Album'] = 'Delete Album'; +$a->strings['Delete Photo'] = 'Delete Photo'; +$a->strings['was tagged in a'] = 'was tagged in a'; +$a->strings['by'] = 'by'; +$a->strings['Image exceeds size limit of '] = 'Image exceeds size limit of '; +$a->strings['Unable to process image.'] = 'Unable to process image.'; +$a->strings['Image upload failed.'] = 'Image upload failed.'; +$a->strings['No photos selected'] = 'No photos selected'; +$a->strings['Upload Photos'] = 'Upload Photos'; +$a->strings['New album name: '] = 'New album name: '; +$a->strings['or existing album name: '] = 'or existing album name: '; +$a->strings['Select files to upload: '] = 'Select files to upload: '; +$a->strings['Permissions'] = 'Permissions'; +$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Use the following controls only if the Java uploader [above] fails to launch.'; +$a->strings['Edit Album'] = 'Edit Album'; +$a->strings['View Photo'] = 'View Photo'; +$a->strings['Photo not available'] = 'Photo not available'; +$a->strings['Edit photo'] = 'Edit photo'; +$a->strings['View Full Size'] = 'View Full Size'; +$a->strings['Tags: '] = 'Tags: '; +$a->strings['[Remove any tag]'] = '[Remove any tag]'; +$a->strings['Caption'] = 'Caption'; +$a->strings['Add a Tag'] = 'Add a Tag'; +$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; +$a->strings['Recent Photos'] = 'Recent Photos'; +$a->strings['Upload New Photos'] = 'Upload New Photos'; +$a->strings['View Album'] = 'View Album'; +$a->strings['Image uploaded but image cropping failed.'] = 'Image uploaded but image cropping failed.'; +$a->strings['Image size reduction [175] failed.'] = 'Image size reduction [175] failed.'; +$a->strings['Image size reduction [80] failed.'] = 'Image size reduction [80] failed.'; +$a->strings['Image size reduction [48] failed.'] = 'Image size reduction [48] failed.'; +$a->strings['Unable to process image'] = 'Unable to process image'; +$a->strings['Image uploaded successfully.'] = 'Image uploaded successfully.'; +$a->strings['Image size reduction [640] failed.'] = 'Image size reduction [640] failed.'; +$a->strings['Profile Name is required.'] = 'Profile Name is required.'; +$a->strings['Profile updated.'] = 'Profile updated.'; +$a->strings['Profile deleted.'] = 'Profile deleted.'; +$a->strings['Profile-'] = 'Profile-'; +$a->strings['New profile created.'] = 'New profile created.'; +$a->strings['Profile unavailable to clone.'] = 'Profile unavailable to clone.'; +$a->strings['This is your public profile.
It may be visible to anybody using the internet.'] = 'This is your public profile.
It may be visible to anybody using the internet.'; +$a->strings['Age: '] = 'Age: '; +$a->strings['Please enter the required information.'] = 'Please enter the required information.'; +$a->strings['Please use a shorter name.'] = 'Please use a shorter name.'; +$a->strings['Name too short.'] = 'Name too short.'; +$a->strings["That doesn\'t appear to be your full \x28First Last\x29 name."] = "That doesn\'t appear to be your full \x28First Last\x29 name."; +$a->strings['Your email domain is not among those allowed on this site.'] = 'Your email domain is not among those allowed on this site.'; +$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'; +$a->strings['Nickname is already registered. Please choose another.'] = 'Nickname is already registered. Please choose another.'; +$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.'; +$a->strings['An error occurred during registration. Please try again.'] = 'An error occurred during registration. Please try again.'; +$a->strings['An error occurred creating your default profile. Please try again.'] = 'An error occurred creating your default profile. Please try again.'; +$a->strings['Registration details for '] = 'Registration details for '; +$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registration successful. Please check your email for further instructions.'; +$a->strings['Failed to send email message. Here is the message that failed.'] = 'Failed to send email message. Here is the message that failed.'; +$a->strings['Your registration can not be processed.'] = 'Your registration can not be processed.'; +$a->strings['Registration request at '] = 'Registration request at '; +$a->strings['Your registration is pending approval by the site owner.'] = 'Your registration is pending approval by the site owner.'; +$a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."; +$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'; +$a->strings["Your OpenID \x28optional\x29: "] = "Your OpenID \x28optional\x29: "; +$a->strings['Shared content is covered by the Creative Commons Attribution 3.0 license.'] = 'Shared content is covered by the Creative Commons Attribution 3.0 license.'; +$a->strings['Registration'] = 'Registration'; +$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '; +$a->strings['Your Email Address: '] = 'Your Email Address: '; +$a->strings['Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'nickname@$sitename\'.'] = 'Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'nickname@$sitename\'.'; +$a->strings['Choose a nickname: '] = 'Choose a nickname: '; +$a->strings['Register'] = 'Register'; +$a->strings['Please login.'] = 'Please login.'; +$a->strings['Registration revoked for '] = 'Registration revoked for '; +$a->strings['Account approved.'] = 'Account approved.'; +$a->strings['View in context'] = 'View in context'; +$a->strings['Passwords do not match. Password unchanged.'] = 'Passwords do not match. Password unchanged.'; +$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Empty passwords are not allowed. Password unchanged.'; +$a->strings['Password changed.'] = 'Password changed.'; +$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.'; +$a->strings[' Please use a shorter name.'] = ' Please use a shorter name.'; +$a->strings[' Name too short.'] = ' Name too short.'; +$a->strings[' Not valid email.'] = ' Not valid email.'; +$a->strings['Settings updated.'] = 'Settings updated.'; +$a->strings['Plugin Settings'] = 'Plugin Settings'; +$a->strings['Account Settings'] = 'Account Settings'; +$a->strings['No Plugin settings configured'] = 'No Plugin settings configured'; +$a->strings['OpenID: '] = 'OpenID: '; +$a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Optional\x29 Allow this OpenID to login to this account."; +$a->strings['Profile is not published.'] = 'Profile is not published.'; +$a->strings['Default Post Permissions'] = 'Default Post Permissions'; +$a->strings['Tag removed'] = 'Tag removed'; +$a->strings['Remove Item Tag'] = 'Remove Item Tag'; +$a->strings['Select a tag to remove: '] = 'Select a tag to remove: '; +$a->strings['Remove'] = 'Remove'; +$a->strings['No contacts.'] = 'No contacts.'; +$a->strings['Wall Photos'] = 'Wall Photos'; +$a->strings['Logged out.'] = 'Logged out.'; +$a->strings['Visible To:'] = 'Visible To:'; +$a->strings['Groups'] = 'Groups'; +$a->strings['Except For:'] = 'Except For:'; +$a->strings['Unknown | Not categorised'] = 'Unknown | Not categorised'; +$a->strings['Block immediately'] = 'Block immediately'; +$a->strings['Shady, spammer, self-marketer'] = 'Shady, spammer, self-marketer'; +$a->strings['Known to me, but no opinion'] = 'Known to me, but no opinion'; +$a->strings['OK, probably harmless'] = 'OK, probably harmless'; +$a->strings['Reputable, has my trust'] = 'Reputable, has my trust'; +$a->strings['Frequently'] = 'Frequently'; +$a->strings['Hourly'] = 'Hourly'; +$a->strings['Twice daily'] = 'Twice daily'; +$a->strings['Daily'] = 'Daily'; +$a->strings['Weekly'] = 'Weekly'; +$a->strings['Monthly'] = 'Monthly'; +$a->strings['Miscellaneous'] = 'Miscellaneous'; +$a->strings['less than a second ago'] = 'less than a second ago'; +$a->strings['year'] = 'year'; +$a->strings['years'] = 'years'; +$a->strings['month'] = 'month'; +$a->strings['months'] = 'months'; +$a->strings['week'] = 'week'; +$a->strings['weeks'] = 'weeks'; +$a->strings['day'] = 'day'; +$a->strings['days'] = 'days'; +$a->strings['hour'] = 'hour'; +$a->strings['hours'] = 'hours'; +$a->strings['minute'] = 'minute'; +$a->strings['minutes'] = 'minutes'; +$a->strings['second'] = 'second'; +$a->strings['seconds'] = 'seconds'; +$a->strings[' ago'] = ' ago'; +$a->strings['Create a new group'] = 'Create a new group'; +$a->strings['Everybody'] = 'Everybody'; +$a->strings['Logout'] = 'Logout'; +$a->strings['Home'] = 'Home'; +$a->strings['Directory'] = 'Directory'; +$a->strings['Network'] = 'Network'; +$a->strings['Notifications'] = 'Notifications'; +$a->strings['Settings'] = 'Settings'; +$a->strings['Profiles'] = 'Profiles'; +$a->strings['Male'] = 'Male'; +$a->strings['Female'] = 'Female'; +$a->strings['Currently Male'] = 'Currently Male'; +$a->strings['Currently Female'] = 'Currently Female'; +$a->strings['Mostly Male'] = 'Mostly Male'; +$a->strings['Mostly Female'] = 'Mostly Female'; +$a->strings['Transgender'] = 'Transgender'; +$a->strings['Intersex'] = 'Intersex'; +$a->strings['Transsexual'] = 'Transsexual'; +$a->strings['Hermaphrodite'] = 'Hermaphrodite'; +$a->strings['Neuter'] = 'Neuter'; +$a->strings['Non-specific'] = 'Non-specific'; +$a->strings['Other'] = 'Other'; +$a->strings['Undecided'] = 'Undecided'; +$a->strings['Males'] = 'Males'; +$a->strings['Females'] = 'Females'; +$a->strings['Gay'] = 'Gay'; +$a->strings['Lesbian'] = 'Lesbian'; +$a->strings['No Preference'] = 'No Preference'; +$a->strings['Bisexual'] = 'Bisexual'; +$a->strings['Autosexual'] = 'Autosexual'; +$a->strings['Abstinent'] = 'Abstinent'; +$a->strings['Virgin'] = 'Virgin'; +$a->strings['Deviant'] = 'Deviant'; +$a->strings['Fetish'] = 'Fetish'; +$a->strings['Oodles'] = 'Oodles'; +$a->strings['Nonsexual'] = 'Nonsexual'; +$a->strings['Single'] = 'Single'; +$a->strings['Lonely'] = 'Lonely'; +$a->strings['Available'] = 'Available'; +$a->strings['Unavailable'] = 'Unavailable'; +$a->strings['Dating'] = 'Dating'; +$a->strings['Unfaithful'] = 'Unfaithful'; +$a->strings['Sex Addict'] = 'Sex Addict'; +$a->strings['Friends'] = 'Friends'; +$a->strings['Friends/Benefits'] = 'Friends/Benefits'; +$a->strings['Casual'] = 'Casual'; +$a->strings['Engaged'] = 'Engaged'; +$a->strings['Married'] = 'Married'; +$a->strings['Partners'] = 'Partners'; +$a->strings['Cohabiting'] = 'Cohabiting'; +$a->strings['Happy'] = 'Happy'; +$a->strings['Not Looking'] = 'Not Looking'; +$a->strings['Swinger'] = 'Swinger'; +$a->strings['Betrayed'] = 'Betrayed'; +$a->strings['Separated'] = 'Separated'; +$a->strings['Unstable'] = 'Unstable'; +$a->strings['Divorced'] = 'Divorced'; +$a->strings['Widowed'] = 'Widowed'; +$a->strings['Uncertain'] = 'Uncertain'; +$a->strings['Complicated'] = 'Complicated'; +$a->strings['Don\'t care'] = 'Don\'t care'; +$a->strings['Ask me'] = 'Ask me'; +$a->strings['Africa/Abidjan'] = 'Africa/Abidjan'; +$a->strings['Africa/Accra'] = 'Africa/Accra'; +$a->strings['Africa/Addis_Ababa'] = 'Africa/Addis_Ababa'; +$a->strings['Africa/Algiers'] = 'Africa/Algiers'; +$a->strings['Africa/Asmara'] = 'Africa/Asmara'; +$a->strings['Africa/Asmera'] = 'Africa/Asmera'; +$a->strings['Africa/Bamako'] = 'Africa/Bamako'; +$a->strings['Africa/Bangui'] = 'Africa/Bangui'; +$a->strings['Africa/Banjul'] = 'Africa/Banjul'; +$a->strings['Africa/Bissau'] = 'Africa/Bissau'; +$a->strings['Africa/Blantyre'] = 'Africa/Blantyre'; +$a->strings['Africa/Brazzaville'] = 'Africa/Brazzaville'; +$a->strings['Africa/Bujumbura'] = 'Africa/Bujumbura'; +$a->strings['Africa/Cairo'] = 'Africa/Cairo'; +$a->strings['Africa/Casablanca'] = 'Africa/Casablanca'; +$a->strings['Africa/Ceuta'] = 'Africa/Ceuta'; +$a->strings['Africa/Conakry'] = 'Africa/Conakry'; +$a->strings['Africa/Dakar'] = 'Africa/Dakar'; +$a->strings['Africa/Dar_es_Salaam'] = 'Africa/Dar_es_Salaam'; +$a->strings['Africa/Djibouti'] = 'Africa/Djibouti'; +$a->strings['Africa/Douala'] = 'Africa/Douala'; +$a->strings['Africa/El_Aaiun'] = 'Africa/El_Aaiun'; +$a->strings['Africa/Freetown'] = 'Africa/Freetown'; +$a->strings['Africa/Gaborone'] = 'Africa/Gaborone'; +$a->strings['Africa/Harare'] = 'Africa/Harare'; +$a->strings['Africa/Johannesburg'] = 'Africa/Johannesburg'; +$a->strings['Africa/Kampala'] = 'Africa/Kampala'; +$a->strings['Africa/Khartoum'] = 'Africa/Khartoum'; +$a->strings['Africa/Kigali'] = 'Africa/Kigali'; +$a->strings['Africa/Kinshasa'] = 'Africa/Kinshasa'; +$a->strings['Africa/Lagos'] = 'Africa/Lagos'; +$a->strings['Africa/Libreville'] = 'Africa/Libreville'; +$a->strings['Africa/Lome'] = 'Africa/Lome'; +$a->strings['Africa/Luanda'] = 'Africa/Luanda'; +$a->strings['Africa/Lubumbashi'] = 'Africa/Lubumbashi'; +$a->strings['Africa/Lusaka'] = 'Africa/Lusaka'; +$a->strings['Africa/Malabo'] = 'Africa/Malabo'; +$a->strings['Africa/Maputo'] = 'Africa/Maputo'; +$a->strings['Africa/Maseru'] = 'Africa/Maseru'; +$a->strings['Africa/Mbabane'] = 'Africa/Mbabane'; +$a->strings['Africa/Mogadishu'] = 'Africa/Mogadishu'; +$a->strings['Africa/Monrovia'] = 'Africa/Monrovia'; +$a->strings['Africa/Nairobi'] = 'Africa/Nairobi'; +$a->strings['Africa/Ndjamena'] = 'Africa/Ndjamena'; +$a->strings['Africa/Niamey'] = 'Africa/Niamey'; +$a->strings['Africa/Nouakchott'] = 'Africa/Nouakchott'; +$a->strings['Africa/Ouagadougou'] = 'Africa/Ouagadougou'; +$a->strings['Africa/Porto-Novo'] = 'Africa/Porto-Novo'; +$a->strings['Africa/Sao_Tome'] = 'Africa/Sao_Tome'; +$a->strings['Africa/Timbuktu'] = 'Africa/Timbuktu'; +$a->strings['Africa/Tripoli'] = 'Africa/Tripoli'; +$a->strings['Africa/Tunis'] = 'Africa/Tunis'; +$a->strings['Africa/Windhoek'] = 'Africa/Windhoek'; +$a->strings['America/Adak'] = 'America/Adak'; +$a->strings['America/Anchorage'] = 'America/Anchorage'; +$a->strings['America/Anguilla'] = 'America/Anguilla'; +$a->strings['America/Antigua'] = 'America/Antigua'; +$a->strings['America/Araguaina'] = 'America/Araguaina'; +$a->strings['America/Argentina/Buenos_Aires'] = 'America/Argentina/Buenos_Aires'; +$a->strings['America/Argentina/Catamarca'] = 'America/Argentina/Catamarca'; +$a->strings['America/Argentina/ComodRivadavia'] = 'America/Argentina/ComodRivadavia'; +$a->strings['America/Argentina/Cordoba'] = 'America/Argentina/Cordoba'; +$a->strings['America/Argentina/Jujuy'] = 'America/Argentina/Jujuy'; +$a->strings['America/Argentina/La_Rioja'] = 'America/Argentina/La_Rioja'; +$a->strings['America/Argentina/Mendoza'] = 'America/Argentina/Mendoza'; +$a->strings['America/Argentina/Rio_Gallegos'] = 'America/Argentina/Rio_Gallegos'; +$a->strings['America/Argentina/Salta'] = 'America/Argentina/Salta'; +$a->strings['America/Argentina/San_Juan'] = 'America/Argentina/San_Juan'; +$a->strings['America/Argentina/San_Luis'] = 'America/Argentina/San_Luis'; +$a->strings['America/Argentina/Tucuman'] = 'America/Argentina/Tucuman'; +$a->strings['America/Argentina/Ushuaia'] = 'America/Argentina/Ushuaia'; +$a->strings['America/Aruba'] = 'America/Aruba'; +$a->strings['America/Asuncion'] = 'America/Asuncion'; +$a->strings['America/Atikokan'] = 'America/Atikokan'; +$a->strings['America/Atka'] = 'America/Atka'; +$a->strings['America/Bahia'] = 'America/Bahia'; +$a->strings['America/Barbados'] = 'America/Barbados'; +$a->strings['America/Belem'] = 'America/Belem'; +$a->strings['America/Belize'] = 'America/Belize'; +$a->strings['America/Blanc-Sablon'] = 'America/Blanc-Sablon'; +$a->strings['America/Boa_Vista'] = 'America/Boa_Vista'; +$a->strings['America/Bogota'] = 'America/Bogota'; +$a->strings['America/Boise'] = 'America/Boise'; +$a->strings['America/Buenos_Aires'] = 'America/Buenos_Aires'; +$a->strings['America/Cambridge_Bay'] = 'America/Cambridge_Bay'; +$a->strings['America/Campo_Grande'] = 'America/Campo_Grande'; +$a->strings['America/Cancun'] = 'America/Cancun'; +$a->strings['America/Caracas'] = 'America/Caracas'; +$a->strings['America/Catamarca'] = 'America/Catamarca'; +$a->strings['America/Cayenne'] = 'America/Cayenne'; +$a->strings['America/Cayman'] = 'America/Cayman'; +$a->strings['America/Chicago'] = 'America/Chicago'; +$a->strings['America/Chihuahua'] = 'America/Chihuahua'; +$a->strings['America/Coral_Harbour'] = 'America/Coral_Harbour'; +$a->strings['America/Cordoba'] = 'America/Cordoba'; +$a->strings['America/Costa_Rica'] = 'America/Costa_Rica'; +$a->strings['America/Cuiaba'] = 'America/Cuiaba'; +$a->strings['America/Curacao'] = 'America/Curacao'; +$a->strings['America/Danmarkshavn'] = 'America/Danmarkshavn'; +$a->strings['America/Dawson'] = 'America/Dawson'; +$a->strings['America/Dawson_Creek'] = 'America/Dawson_Creek'; +$a->strings['America/Denver'] = 'America/Denver'; +$a->strings['America/Detroit'] = 'America/Detroit'; +$a->strings['America/Dominica'] = 'America/Dominica'; +$a->strings['America/Edmonton'] = 'America/Edmonton'; +$a->strings['America/Eirunepe'] = 'America/Eirunepe'; +$a->strings['America/El_Salvador'] = 'America/El_Salvador'; +$a->strings['America/Ensenada'] = 'America/Ensenada'; +$a->strings['America/Fort_Wayne'] = 'America/Fort_Wayne'; +$a->strings['America/Fortaleza'] = 'America/Fortaleza'; +$a->strings['America/Glace_Bay'] = 'America/Glace_Bay'; +$a->strings['America/Godthab'] = 'America/Godthab'; +$a->strings['America/Goose_Bay'] = 'America/Goose_Bay'; +$a->strings['America/Grand_Turk'] = 'America/Grand_Turk'; +$a->strings['America/Grenada'] = 'America/Grenada'; +$a->strings['America/Guadeloupe'] = 'America/Guadeloupe'; +$a->strings['America/Guatemala'] = 'America/Guatemala'; +$a->strings['America/Guayaquil'] = 'America/Guayaquil'; +$a->strings['America/Guyana'] = 'America/Guyana'; +$a->strings['America/Halifax'] = 'America/Halifax'; +$a->strings['America/Havana'] = 'America/Havana'; +$a->strings['America/Hermosillo'] = 'America/Hermosillo'; +$a->strings['America/Indiana/Indianapolis'] = 'America/Indiana/Indianapolis'; +$a->strings['America/Indiana/Knox'] = 'America/Indiana/Knox'; +$a->strings['America/Indiana/Marengo'] = 'America/Indiana/Marengo'; +$a->strings['America/Indiana/Petersburg'] = 'America/Indiana/Petersburg'; +$a->strings['America/Indiana/Tell_City'] = 'America/Indiana/Tell_City'; +$a->strings['America/Indiana/Vevay'] = 'America/Indiana/Vevay'; +$a->strings['America/Indiana/Vincennes'] = 'America/Indiana/Vincennes'; +$a->strings['America/Indiana/Winamac'] = 'America/Indiana/Winamac'; +$a->strings['America/Indianapolis'] = 'America/Indianapolis'; +$a->strings['America/Inuvik'] = 'America/Inuvik'; +$a->strings['America/Iqaluit'] = 'America/Iqaluit'; +$a->strings['America/Jamaica'] = 'America/Jamaica'; +$a->strings['America/Jujuy'] = 'America/Jujuy'; +$a->strings['America/Juneau'] = 'America/Juneau'; +$a->strings['America/Kentucky/Louisville'] = 'America/Kentucky/Louisville'; +$a->strings['America/Kentucky/Monticello'] = 'America/Kentucky/Monticello'; +$a->strings['America/Knox_IN'] = 'America/Knox_IN'; +$a->strings['America/La_Paz'] = 'America/La_Paz'; +$a->strings['America/Lima'] = 'America/Lima'; +$a->strings['America/Los_Angeles'] = 'America/Los_Angeles'; +$a->strings['America/Louisville'] = 'America/Louisville'; +$a->strings['America/Maceio'] = 'America/Maceio'; +$a->strings['America/Managua'] = 'America/Managua'; +$a->strings['America/Manaus'] = 'America/Manaus'; +$a->strings['America/Marigot'] = 'America/Marigot'; +$a->strings['America/Martinique'] = 'America/Martinique'; +$a->strings['America/Matamoros'] = 'America/Matamoros'; +$a->strings['America/Mazatlan'] = 'America/Mazatlan'; +$a->strings['America/Mendoza'] = 'America/Mendoza'; +$a->strings['America/Menominee'] = 'America/Menominee'; +$a->strings['America/Merida'] = 'America/Merida'; +$a->strings['America/Mexico_City'] = 'America/Mexico_City'; +$a->strings['America/Miquelon'] = 'America/Miquelon'; +$a->strings['America/Moncton'] = 'America/Moncton'; +$a->strings['America/Monterrey'] = 'America/Monterrey'; +$a->strings['America/Montevideo'] = 'America/Montevideo'; +$a->strings['America/Montreal'] = 'America/Montreal'; +$a->strings['America/Montserrat'] = 'America/Montserrat'; +$a->strings['America/Nassau'] = 'America/Nassau'; +$a->strings['America/New_York'] = 'America/New_York'; +$a->strings['America/Nipigon'] = 'America/Nipigon'; +$a->strings['America/Nome'] = 'America/Nome'; +$a->strings['America/Noronha'] = 'America/Noronha'; +$a->strings['America/North_Dakota/Center'] = 'America/North_Dakota/Center'; +$a->strings['America/North_Dakota/New_Salem'] = 'America/North_Dakota/New_Salem'; +$a->strings['America/Ojinaga'] = 'America/Ojinaga'; +$a->strings['America/Panama'] = 'America/Panama'; +$a->strings['America/Pangnirtung'] = 'America/Pangnirtung'; +$a->strings['America/Paramaribo'] = 'America/Paramaribo'; +$a->strings['America/Phoenix'] = 'America/Phoenix'; +$a->strings['America/Port-au-Prince'] = 'America/Port-au-Prince'; +$a->strings['America/Port_of_Spain'] = 'America/Port_of_Spain'; +$a->strings['America/Porto_Acre'] = 'America/Porto_Acre'; +$a->strings['America/Porto_Velho'] = 'America/Porto_Velho'; +$a->strings['America/Puerto_Rico'] = 'America/Puerto_Rico'; +$a->strings['America/Rainy_River'] = 'America/Rainy_River'; +$a->strings['America/Rankin_Inlet'] = 'America/Rankin_Inlet'; +$a->strings['America/Recife'] = 'America/Recife'; +$a->strings['America/Regina'] = 'America/Regina'; +$a->strings['America/Resolute'] = 'America/Resolute'; +$a->strings['America/Rio_Branco'] = 'America/Rio_Branco'; +$a->strings['America/Rosario'] = 'America/Rosario'; +$a->strings['America/Santa_Isabel'] = 'America/Santa_Isabel'; +$a->strings['America/Santarem'] = 'America/Santarem'; +$a->strings['America/Santiago'] = 'America/Santiago'; +$a->strings['America/Santo_Domingo'] = 'America/Santo_Domingo'; +$a->strings['America/Sao_Paulo'] = 'America/Sao_Paulo'; +$a->strings['America/Scoresbysund'] = 'America/Scoresbysund'; +$a->strings['America/Shiprock'] = 'America/Shiprock'; +$a->strings['America/St_Barthelemy'] = 'America/St_Barthelemy'; +$a->strings['America/St_Johns'] = 'America/St_Johns'; +$a->strings['America/St_Kitts'] = 'America/St_Kitts'; +$a->strings['America/St_Lucia'] = 'America/St_Lucia'; +$a->strings['America/St_Thomas'] = 'America/St_Thomas'; +$a->strings['America/St_Vincent'] = 'America/St_Vincent'; +$a->strings['America/Swift_Current'] = 'America/Swift_Current'; +$a->strings['America/Tegucigalpa'] = 'America/Tegucigalpa'; +$a->strings['America/Thule'] = 'America/Thule'; +$a->strings['America/Thunder_Bay'] = 'America/Thunder_Bay'; +$a->strings['America/Tijuana'] = 'America/Tijuana'; +$a->strings['America/Toronto'] = 'America/Toronto'; +$a->strings['America/Tortola'] = 'America/Tortola'; +$a->strings['America/Vancouver'] = 'America/Vancouver'; +$a->strings['America/Virgin'] = 'America/Virgin'; +$a->strings['America/Whitehorse'] = 'America/Whitehorse'; +$a->strings['America/Winnipeg'] = 'America/Winnipeg'; +$a->strings['America/Yakutat'] = 'America/Yakutat'; +$a->strings['America/Yellowknife'] = 'America/Yellowknife'; +$a->strings['Antarctica/Casey'] = 'Antarctica/Casey'; +$a->strings['Antarctica/Davis'] = 'Antarctica/Davis'; +$a->strings['Antarctica/DumontDUrville'] = 'Antarctica/DumontDUrville'; +$a->strings['Antarctica/Macquarie'] = 'Antarctica/Macquarie'; +$a->strings['Antarctica/Mawson'] = 'Antarctica/Mawson'; +$a->strings['Antarctica/McMurdo'] = 'Antarctica/McMurdo'; +$a->strings['Antarctica/Palmer'] = 'Antarctica/Palmer'; +$a->strings['Antarctica/Rothera'] = 'Antarctica/Rothera'; +$a->strings['Antarctica/South_Pole'] = 'Antarctica/South_Pole'; +$a->strings['Antarctica/Syowa'] = 'Antarctica/Syowa'; +$a->strings['Antarctica/Vostok'] = 'Antarctica/Vostok'; +$a->strings['Arctic/Longyearbyen'] = 'Arctic/Longyearbyen'; +$a->strings['Asia/Aden'] = 'Asia/Aden'; +$a->strings['Asia/Almaty'] = 'Asia/Almaty'; +$a->strings['Asia/Amman'] = 'Asia/Amman'; +$a->strings['Asia/Anadyr'] = 'Asia/Anadyr'; +$a->strings['Asia/Aqtau'] = 'Asia/Aqtau'; +$a->strings['Asia/Aqtobe'] = 'Asia/Aqtobe'; +$a->strings['Asia/Ashgabat'] = 'Asia/Ashgabat'; +$a->strings['Asia/Ashkhabad'] = 'Asia/Ashkhabad'; +$a->strings['Asia/Baghdad'] = 'Asia/Baghdad'; +$a->strings['Asia/Bahrain'] = 'Asia/Bahrain'; +$a->strings['Asia/Baku'] = 'Asia/Baku'; +$a->strings['Asia/Bangkok'] = 'Asia/Bangkok'; +$a->strings['Asia/Beirut'] = 'Asia/Beirut'; +$a->strings['Asia/Bishkek'] = 'Asia/Bishkek'; +$a->strings['Asia/Brunei'] = 'Asia/Brunei'; +$a->strings['Asia/Calcutta'] = 'Asia/Calcutta'; +$a->strings['Asia/Choibalsan'] = 'Asia/Choibalsan'; +$a->strings['Asia/Chongqing'] = 'Asia/Chongqing'; +$a->strings['Asia/Chungking'] = 'Asia/Chungking'; +$a->strings['Asia/Colombo'] = 'Asia/Colombo'; +$a->strings['Asia/Dacca'] = 'Asia/Dacca'; +$a->strings['Asia/Damascus'] = 'Asia/Damascus'; +$a->strings['Asia/Dhaka'] = 'Asia/Dhaka'; +$a->strings['Asia/Dili'] = 'Asia/Dili'; +$a->strings['Asia/Dubai'] = 'Asia/Dubai'; +$a->strings['Asia/Dushanbe'] = 'Asia/Dushanbe'; +$a->strings['Asia/Gaza'] = 'Asia/Gaza'; +$a->strings['Asia/Harbin'] = 'Asia/Harbin'; +$a->strings['Asia/Ho_Chi_Minh'] = 'Asia/Ho_Chi_Minh'; +$a->strings['Asia/Hong_Kong'] = 'Asia/Hong_Kong'; +$a->strings['Asia/Hovd'] = 'Asia/Hovd'; +$a->strings['Asia/Irkutsk'] = 'Asia/Irkutsk'; +$a->strings['Asia/Istanbul'] = 'Asia/Istanbul'; +$a->strings['Asia/Jakarta'] = 'Asia/Jakarta'; +$a->strings['Asia/Jayapura'] = 'Asia/Jayapura'; +$a->strings['Asia/Jerusalem'] = 'Asia/Jerusalem'; +$a->strings['Asia/Kabul'] = 'Asia/Kabul'; +$a->strings['Asia/Kamchatka'] = 'Asia/Kamchatka'; +$a->strings['Asia/Karachi'] = 'Asia/Karachi'; +$a->strings['Asia/Kashgar'] = 'Asia/Kashgar'; +$a->strings['Asia/Kathmandu'] = 'Asia/Kathmandu'; +$a->strings['Asia/Katmandu'] = 'Asia/Katmandu'; +$a->strings['Asia/Kolkata'] = 'Asia/Kolkata'; +$a->strings['Asia/Krasnoyarsk'] = 'Asia/Krasnoyarsk'; +$a->strings['Asia/Kuala_Lumpur'] = 'Asia/Kuala_Lumpur'; +$a->strings['Asia/Kuching'] = 'Asia/Kuching'; +$a->strings['Asia/Kuwait'] = 'Asia/Kuwait'; +$a->strings['Asia/Macao'] = 'Asia/Macao'; +$a->strings['Asia/Macau'] = 'Asia/Macau'; +$a->strings['Asia/Magadan'] = 'Asia/Magadan'; +$a->strings['Asia/Makassar'] = 'Asia/Makassar'; +$a->strings['Asia/Manila'] = 'Asia/Manila'; +$a->strings['Asia/Muscat'] = 'Asia/Muscat'; +$a->strings['Asia/Nicosia'] = 'Asia/Nicosia'; +$a->strings['Asia/Novokuznetsk'] = 'Asia/Novokuznetsk'; +$a->strings['Asia/Novosibirsk'] = 'Asia/Novosibirsk'; +$a->strings['Asia/Omsk'] = 'Asia/Omsk'; +$a->strings['Asia/Oral'] = 'Asia/Oral'; +$a->strings['Asia/Phnom_Penh'] = 'Asia/Phnom_Penh'; +$a->strings['Asia/Pontianak'] = 'Asia/Pontianak'; +$a->strings['Asia/Pyongyang'] = 'Asia/Pyongyang'; +$a->strings['Asia/Qatar'] = 'Asia/Qatar'; +$a->strings['Asia/Qyzylorda'] = 'Asia/Qyzylorda'; +$a->strings['Asia/Rangoon'] = 'Asia/Rangoon'; +$a->strings['Asia/Riyadh'] = 'Asia/Riyadh'; +$a->strings['Asia/Saigon'] = 'Asia/Saigon'; +$a->strings['Asia/Sakhalin'] = 'Asia/Sakhalin'; +$a->strings['Asia/Samarkand'] = 'Asia/Samarkand'; +$a->strings['Asia/Seoul'] = 'Asia/Seoul'; +$a->strings['Asia/Shanghai'] = 'Asia/Shanghai'; +$a->strings['Asia/Singapore'] = 'Asia/Singapore'; +$a->strings['Asia/Taipei'] = 'Asia/Taipei'; +$a->strings['Asia/Tashkent'] = 'Asia/Tashkent'; +$a->strings['Asia/Tbilisi'] = 'Asia/Tbilisi'; +$a->strings['Asia/Tehran'] = 'Asia/Tehran'; +$a->strings['Asia/Tel_Aviv'] = 'Asia/Tel_Aviv'; +$a->strings['Asia/Thimbu'] = 'Asia/Thimbu'; +$a->strings['Asia/Thimphu'] = 'Asia/Thimphu'; +$a->strings['Asia/Tokyo'] = 'Asia/Tokyo'; +$a->strings['Asia/Ujung_Pandang'] = 'Asia/Ujung_Pandang'; +$a->strings['Asia/Ulaanbaatar'] = 'Asia/Ulaanbaatar'; +$a->strings['Asia/Ulan_Bator'] = 'Asia/Ulan_Bator'; +$a->strings['Asia/Urumqi'] = 'Asia/Urumqi'; +$a->strings['Asia/Vientiane'] = 'Asia/Vientiane'; +$a->strings['Asia/Vladivostok'] = 'Asia/Vladivostok'; +$a->strings['Asia/Yakutsk'] = 'Asia/Yakutsk'; +$a->strings['Asia/Yekaterinburg'] = 'Asia/Yekaterinburg'; +$a->strings['Asia/Yerevan'] = 'Asia/Yerevan'; +$a->strings['Atlantic/Azores'] = 'Atlantic/Azores'; +$a->strings['Atlantic/Bermuda'] = 'Atlantic/Bermuda'; +$a->strings['Atlantic/Canary'] = 'Atlantic/Canary'; +$a->strings['Atlantic/Cape_Verde'] = 'Atlantic/Cape_Verde'; +$a->strings['Atlantic/Faeroe'] = 'Atlantic/Faeroe'; +$a->strings['Atlantic/Faroe'] = 'Atlantic/Faroe'; +$a->strings['Atlantic/Jan_Mayen'] = 'Atlantic/Jan_Mayen'; +$a->strings['Atlantic/Madeira'] = 'Atlantic/Madeira'; +$a->strings['Atlantic/Reykjavik'] = 'Atlantic/Reykjavik'; +$a->strings['Atlantic/South_Georgia'] = 'Atlantic/South_Georgia'; +$a->strings['Atlantic/St_Helena'] = 'Atlantic/St_Helena'; +$a->strings['Atlantic/Stanley'] = 'Atlantic/Stanley'; +$a->strings['Australia/ACT'] = 'Australia/ACT'; +$a->strings['Australia/Adelaide'] = 'Australia/Adelaide'; +$a->strings['Australia/Brisbane'] = 'Australia/Brisbane'; +$a->strings['Australia/Broken_Hill'] = 'Australia/Broken_Hill'; +$a->strings['Australia/Canberra'] = 'Australia/Canberra'; +$a->strings['Australia/Currie'] = 'Australia/Currie'; +$a->strings['Australia/Darwin'] = 'Australia/Darwin'; +$a->strings['Australia/Eucla'] = 'Australia/Eucla'; +$a->strings['Australia/Hobart'] = 'Australia/Hobart'; +$a->strings['Australia/LHI'] = 'Australia/LHI'; +$a->strings['Australia/Lindeman'] = 'Australia/Lindeman'; +$a->strings['Australia/Lord_Howe'] = 'Australia/Lord_Howe'; +$a->strings['Australia/Melbourne'] = 'Australia/Melbourne'; +$a->strings['Australia/North'] = 'Australia/North'; +$a->strings['Australia/NSW'] = 'Australia/NSW'; +$a->strings['Australia/Perth'] = 'Australia/Perth'; +$a->strings['Australia/Queensland'] = 'Australia/Queensland'; +$a->strings['Australia/South'] = 'Australia/South'; +$a->strings['Australia/Sydney'] = 'Australia/Sydney'; +$a->strings['Australia/Tasmania'] = 'Australia/Tasmania'; +$a->strings['Australia/Victoria'] = 'Australia/Victoria'; +$a->strings['Australia/West'] = 'Australia/West'; +$a->strings['Australia/Yancowinna'] = 'Australia/Yancowinna'; +$a->strings['Brazil/Acre'] = 'Brazil/Acre'; +$a->strings['Brazil/DeNoronha'] = 'Brazil/DeNoronha'; +$a->strings['Brazil/East'] = 'Brazil/East'; +$a->strings['Brazil/West'] = 'Brazil/West'; +$a->strings['Canada/Atlantic'] = 'Canada/Atlantic'; +$a->strings['Canada/Central'] = 'Canada/Central'; +$a->strings['Canada/East-Saskatchewan'] = 'Canada/East-Saskatchewan'; +$a->strings['Canada/Eastern'] = 'Canada/Eastern'; +$a->strings['Canada/Mountain'] = 'Canada/Mountain'; +$a->strings['Canada/Newfoundland'] = 'Canada/Newfoundland'; +$a->strings['Canada/Pacific'] = 'Canada/Pacific'; +$a->strings['Canada/Saskatchewan'] = 'Canada/Saskatchewan'; +$a->strings['Canada/Yukon'] = 'Canada/Yukon'; +$a->strings['CET'] = 'CET'; +$a->strings['Chile/Continental'] = 'Chile/Continental'; +$a->strings['Chile/EasterIsland'] = 'Chile/EasterIsland'; +$a->strings['CST6CDT'] = 'CST6CDT'; +$a->strings['Cuba'] = 'Cuba'; +$a->strings['EET'] = 'EET'; +$a->strings['Egypt'] = 'Egypt'; +$a->strings['Eire'] = 'Eire'; +$a->strings['EST'] = 'EST'; +$a->strings['EST5EDT'] = 'EST5EDT'; +$a->strings['Etc/GMT'] = 'Etc/GMT'; +$a->strings['Etc/GMT+0'] = 'Etc/GMT+0'; +$a->strings['Etc/GMT+1'] = 'Etc/GMT+1'; +$a->strings['Etc/GMT+10'] = 'Etc/GMT+10'; +$a->strings['Etc/GMT+11'] = 'Etc/GMT+11'; +$a->strings['Etc/GMT+12'] = 'Etc/GMT+12'; +$a->strings['Etc/GMT+2'] = 'Etc/GMT+2'; +$a->strings['Etc/GMT+3'] = 'Etc/GMT+3'; +$a->strings['Etc/GMT+4'] = 'Etc/GMT+4'; +$a->strings['Etc/GMT+5'] = 'Etc/GMT+5'; +$a->strings['Etc/GMT+6'] = 'Etc/GMT+6'; +$a->strings['Etc/GMT+7'] = 'Etc/GMT+7'; +$a->strings['Etc/GMT+8'] = 'Etc/GMT+8'; +$a->strings['Etc/GMT+9'] = 'Etc/GMT+9'; +$a->strings['Etc/GMT-0'] = 'Etc/GMT-0'; +$a->strings['Etc/GMT-1'] = 'Etc/GMT-1'; +$a->strings['Etc/GMT-10'] = 'Etc/GMT-10'; +$a->strings['Etc/GMT-11'] = 'Etc/GMT-11'; +$a->strings['Etc/GMT-12'] = 'Etc/GMT-12'; +$a->strings['Etc/GMT-13'] = 'Etc/GMT-13'; +$a->strings['Etc/GMT-14'] = 'Etc/GMT-14'; +$a->strings['Etc/GMT-2'] = 'Etc/GMT-2'; +$a->strings['Etc/GMT-3'] = 'Etc/GMT-3'; +$a->strings['Etc/GMT-4'] = 'Etc/GMT-4'; +$a->strings['Etc/GMT-5'] = 'Etc/GMT-5'; +$a->strings['Etc/GMT-6'] = 'Etc/GMT-6'; +$a->strings['Etc/GMT-7'] = 'Etc/GMT-7'; +$a->strings['Etc/GMT-8'] = 'Etc/GMT-8'; +$a->strings['Etc/GMT-9'] = 'Etc/GMT-9'; +$a->strings['Etc/GMT0'] = 'Etc/GMT0'; +$a->strings['Etc/Greenwich'] = 'Etc/Greenwich'; +$a->strings['Etc/UCT'] = 'Etc/UCT'; +$a->strings['Etc/Universal'] = 'Etc/Universal'; +$a->strings['Etc/UTC'] = 'Etc/UTC'; +$a->strings['Etc/Zulu'] = 'Etc/Zulu'; +$a->strings['Europe/Amsterdam'] = 'Europe/Amsterdam'; +$a->strings['Europe/Andorra'] = 'Europe/Andorra'; +$a->strings['Europe/Athens'] = 'Europe/Athens'; +$a->strings['Europe/Belfast'] = 'Europe/Belfast'; +$a->strings['Europe/Belgrade'] = 'Europe/Belgrade'; +$a->strings['Europe/Berlin'] = 'Europe/Berlin'; +$a->strings['Europe/Bratislava'] = 'Europe/Bratislava'; +$a->strings['Europe/Brussels'] = 'Europe/Brussels'; +$a->strings['Europe/Bucharest'] = 'Europe/Bucharest'; +$a->strings['Europe/Budapest'] = 'Europe/Budapest'; +$a->strings['Europe/Chisinau'] = 'Europe/Chisinau'; +$a->strings['Europe/Copenhagen'] = 'Europe/Copenhagen'; +$a->strings['Europe/Dublin'] = 'Europe/Dublin'; +$a->strings['Europe/Gibraltar'] = 'Europe/Gibraltar'; +$a->strings['Europe/Guernsey'] = 'Europe/Guernsey'; +$a->strings['Europe/Helsinki'] = 'Europe/Helsinki'; +$a->strings['Europe/Isle_of_Man'] = 'Europe/Isle_of_Man'; +$a->strings['Europe/Istanbul'] = 'Europe/Istanbul'; +$a->strings['Europe/Jersey'] = 'Europe/Jersey'; +$a->strings['Europe/Kaliningrad'] = 'Europe/Kaliningrad'; +$a->strings['Europe/Kiev'] = 'Europe/Kiev'; +$a->strings['Europe/Lisbon'] = 'Europe/Lisbon'; +$a->strings['Europe/Ljubljana'] = 'Europe/Ljubljana'; +$a->strings['Europe/London'] = 'Europe/London'; +$a->strings['Europe/Luxembourg'] = 'Europe/Luxembourg'; +$a->strings['Europe/Madrid'] = 'Europe/Madrid'; +$a->strings['Europe/Malta'] = 'Europe/Malta'; +$a->strings['Europe/Mariehamn'] = 'Europe/Mariehamn'; +$a->strings['Europe/Minsk'] = 'Europe/Minsk'; +$a->strings['Europe/Monaco'] = 'Europe/Monaco'; +$a->strings['Europe/Moscow'] = 'Europe/Moscow'; +$a->strings['Europe/Nicosia'] = 'Europe/Nicosia'; +$a->strings['Europe/Oslo'] = 'Europe/Oslo'; +$a->strings['Europe/Paris'] = 'Europe/Paris'; +$a->strings['Europe/Podgorica'] = 'Europe/Podgorica'; +$a->strings['Europe/Prague'] = 'Europe/Prague'; +$a->strings['Europe/Riga'] = 'Europe/Riga'; +$a->strings['Europe/Rome'] = 'Europe/Rome'; +$a->strings['Europe/Samara'] = 'Europe/Samara'; +$a->strings['Europe/San_Marino'] = 'Europe/San_Marino'; +$a->strings['Europe/Sarajevo'] = 'Europe/Sarajevo'; +$a->strings['Europe/Simferopol'] = 'Europe/Simferopol'; +$a->strings['Europe/Skopje'] = 'Europe/Skopje'; +$a->strings['Europe/Sofia'] = 'Europe/Sofia'; +$a->strings['Europe/Stockholm'] = 'Europe/Stockholm'; +$a->strings['Europe/Tallinn'] = 'Europe/Tallinn'; +$a->strings['Europe/Tirane'] = 'Europe/Tirane'; +$a->strings['Europe/Tiraspol'] = 'Europe/Tiraspol'; +$a->strings['Europe/Uzhgorod'] = 'Europe/Uzhgorod'; +$a->strings['Europe/Vaduz'] = 'Europe/Vaduz'; +$a->strings['Europe/Vatican'] = 'Europe/Vatican'; +$a->strings['Europe/Vienna'] = 'Europe/Vienna'; +$a->strings['Europe/Vilnius'] = 'Europe/Vilnius'; +$a->strings['Europe/Volgograd'] = 'Europe/Volgograd'; +$a->strings['Europe/Warsaw'] = 'Europe/Warsaw'; +$a->strings['Europe/Zagreb'] = 'Europe/Zagreb'; +$a->strings['Europe/Zaporozhye'] = 'Europe/Zaporozhye'; +$a->strings['Europe/Zurich'] = 'Europe/Zurich'; +$a->strings['Factory'] = 'Factory'; +$a->strings['GB'] = 'GB'; +$a->strings['GB-Eire'] = 'GB-Eire'; +$a->strings['GMT'] = 'GMT'; +$a->strings['GMT+0'] = 'GMT+0'; +$a->strings['GMT-0'] = 'GMT-0'; +$a->strings['GMT0'] = 'GMT0'; +$a->strings['Greenwich'] = 'Greenwich'; +$a->strings['Hongkong'] = 'Hongkong'; +$a->strings['HST'] = 'HST'; +$a->strings['Iceland'] = 'Iceland'; +$a->strings['Indian/Antananarivo'] = 'Indian/Antananarivo'; +$a->strings['Indian/Chagos'] = 'Indian/Chagos'; +$a->strings['Indian/Christmas'] = 'Indian/Christmas'; +$a->strings['Indian/Cocos'] = 'Indian/Cocos'; +$a->strings['Indian/Comoro'] = 'Indian/Comoro'; +$a->strings['Indian/Kerguelen'] = 'Indian/Kerguelen'; +$a->strings['Indian/Mahe'] = 'Indian/Mahe'; +$a->strings['Indian/Maldives'] = 'Indian/Maldives'; +$a->strings['Indian/Mauritius'] = 'Indian/Mauritius'; +$a->strings['Indian/Mayotte'] = 'Indian/Mayotte'; +$a->strings['Indian/Reunion'] = 'Indian/Reunion'; +$a->strings['Iran'] = 'Iran'; +$a->strings['Israel'] = 'Israel'; +$a->strings['Jamaica'] = 'Jamaica'; +$a->strings['Japan'] = 'Japan'; +$a->strings['Kwajalein'] = 'Kwajalein'; +$a->strings['Libya'] = 'Libya'; +$a->strings['MET'] = 'MET'; +$a->strings['Mexico/BajaNorte'] = 'Mexico/BajaNorte'; +$a->strings['Mexico/BajaSur'] = 'Mexico/BajaSur'; +$a->strings['Mexico/General'] = 'Mexico/General'; +$a->strings['MST'] = 'MST'; +$a->strings['MST7MDT'] = 'MST7MDT'; +$a->strings['Navajo'] = 'Navajo'; +$a->strings['NZ'] = 'NZ'; +$a->strings['NZ-CHAT'] = 'NZ-CHAT'; +$a->strings['Pacific/Apia'] = 'Pacific/Apia'; +$a->strings['Pacific/Auckland'] = 'Pacific/Auckland'; +$a->strings['Pacific/Chatham'] = 'Pacific/Chatham'; +$a->strings['Pacific/Easter'] = 'Pacific/Easter'; +$a->strings['Pacific/Efate'] = 'Pacific/Efate'; +$a->strings['Pacific/Enderbury'] = 'Pacific/Enderbury'; +$a->strings['Pacific/Fakaofo'] = 'Pacific/Fakaofo'; +$a->strings['Pacific/Fiji'] = 'Pacific/Fiji'; +$a->strings['Pacific/Funafuti'] = 'Pacific/Funafuti'; +$a->strings['Pacific/Galapagos'] = 'Pacific/Galapagos'; +$a->strings['Pacific/Gambier'] = 'Pacific/Gambier'; +$a->strings['Pacific/Guadalcanal'] = 'Pacific/Guadalcanal'; +$a->strings['Pacific/Guam'] = 'Pacific/Guam'; +$a->strings['Pacific/Honolulu'] = 'Pacific/Honolulu'; +$a->strings['Pacific/Johnston'] = 'Pacific/Johnston'; +$a->strings['Pacific/Kiritimati'] = 'Pacific/Kiritimati'; +$a->strings['Pacific/Kosrae'] = 'Pacific/Kosrae'; +$a->strings['Pacific/Kwajalein'] = 'Pacific/Kwajalein'; +$a->strings['Pacific/Majuro'] = 'Pacific/Majuro'; +$a->strings['Pacific/Marquesas'] = 'Pacific/Marquesas'; +$a->strings['Pacific/Midway'] = 'Pacific/Midway'; +$a->strings['Pacific/Nauru'] = 'Pacific/Nauru'; +$a->strings['Pacific/Niue'] = 'Pacific/Niue'; +$a->strings['Pacific/Norfolk'] = 'Pacific/Norfolk'; +$a->strings['Pacific/Noumea'] = 'Pacific/Noumea'; +$a->strings['Pacific/Pago_Pago'] = 'Pacific/Pago_Pago'; +$a->strings['Pacific/Palau'] = 'Pacific/Palau'; +$a->strings['Pacific/Pitcairn'] = 'Pacific/Pitcairn'; +$a->strings['Pacific/Ponape'] = 'Pacific/Ponape'; +$a->strings['Pacific/Port_Moresby'] = 'Pacific/Port_Moresby'; +$a->strings['Pacific/Rarotonga'] = 'Pacific/Rarotonga'; +$a->strings['Pacific/Saipan'] = 'Pacific/Saipan'; +$a->strings['Pacific/Samoa'] = 'Pacific/Samoa'; +$a->strings['Pacific/Tahiti'] = 'Pacific/Tahiti'; +$a->strings['Pacific/Tarawa'] = 'Pacific/Tarawa'; +$a->strings['Pacific/Tongatapu'] = 'Pacific/Tongatapu'; +$a->strings['Pacific/Truk'] = 'Pacific/Truk'; +$a->strings['Pacific/Wake'] = 'Pacific/Wake'; +$a->strings['Pacific/Wallis'] = 'Pacific/Wallis'; +$a->strings['Pacific/Yap'] = 'Pacific/Yap'; +$a->strings['Poland'] = 'Poland'; +$a->strings['Portugal'] = 'Portugal'; +$a->strings['PRC'] = 'PRC'; +$a->strings['PST8PDT'] = 'PST8PDT'; +$a->strings['ROC'] = 'ROC'; +$a->strings['ROK'] = 'ROK'; +$a->strings['Singapore'] = 'Singapore'; +$a->strings['Turkey'] = 'Turkey'; +$a->strings['UCT'] = 'UCT'; +$a->strings['Universal'] = 'Universal'; +$a->strings['US/Alaska'] = 'US/Alaska'; +$a->strings['US/Aleutian'] = 'US/Aleutian'; +$a->strings['US/Arizona'] = 'US/Arizona'; +$a->strings['US/Central'] = 'US/Central'; +$a->strings['US/East-Indiana'] = 'US/East-Indiana'; +$a->strings['US/Eastern'] = 'US/Eastern'; +$a->strings['US/Hawaii'] = 'US/Hawaii'; +$a->strings['US/Indiana-Starke'] = 'US/Indiana-Starke'; +$a->strings['US/Michigan'] = 'US/Michigan'; +$a->strings['US/Mountain'] = 'US/Mountain'; +$a->strings['US/Pacific'] = 'US/Pacific'; +$a->strings['US/Pacific-New'] = 'US/Pacific-New'; +$a->strings['US/Samoa'] = 'US/Samoa'; +$a->strings['UTC'] = 'UTC'; +$a->strings['W-SU'] = 'W-SU'; +$a->strings['WET'] = 'WET'; +$a->strings['Zulu'] = 'Zulu'; diff --git a/view/de/wall_item_drop.tpl b/view/de/wall_item_drop.tpl new file mode 100644 index 0000000000..66777db15c --- /dev/null +++ b/view/de/wall_item_drop.tpl @@ -0,0 +1,2 @@ +
Delete
+
diff --git a/view/de/wall_received_eml.tpl b/view/de/wall_received_eml.tpl new file mode 100644 index 0000000000..c296de7851 --- /dev/null +++ b/view/de/wall_received_eml.tpl @@ -0,0 +1,18 @@ + +Dear $username, + + '$from' posted something to your profile wall. + +----- +$body +----- + +Please login at $siteurl to view or delete the item: + +$display + +Thank you, + $sitename administrator + + + diff --git a/view/de/wallwall_item.tpl b/view/de/wallwall_item.tpl new file mode 100644 index 0000000000..f8affd1c56 --- /dev/null +++ b/view/de/wallwall_item.tpl @@ -0,0 +1,36 @@ +
+
+
+ + $owner_name +
+
Wall-To-Wall
+
+ + $name +
+ +
+ $lock + $name to $owner_name via Wall-To-Wall:
+
$ago
+
$location
+ $vote +
+
+
$title
+
$body
+
+ $drop +
+
+ +
$dislike
+
+
+ $comment +
+
+ +
+ From 31d7973e7f10c29cf3e19367ab362f978ca9ae3d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 15 Jan 2011 14:39:16 +0100 Subject: [PATCH 03/51] some more German strings --- view/de/strings.php | 104 ++++++++++++++++++++++---------------------- 1 file changed, 52 insertions(+), 52 deletions(-) diff --git a/view/de/strings.php b/view/de/strings.php index d7d41bdf66..271241197d 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -26,7 +26,7 @@ $a->strings[' like this.'] = ' mag dies..'; $a->strings[' don\'t like this.'] = ' mag dies nicht.'; $a->strings['No contacts'] = 'Keine Kontakte'; $a->strings['Contacts'] = 'Kontakte'; -$a->strings['View Contacts'] = 'Kontakte Anzeigen'; +$a->strings['View Contacts'] = 'Kontakte anzeigen'; $a->strings['Search'] = 'Suche'; $a->strings['No profile'] = 'Kein Profil'; $a->strings['Connect'] = 'Verbinden'; @@ -43,12 +43,12 @@ $a->strings['Could not access contact record.'] = 'Konnte nicht auf die Kontaktd $a->strings['Could not locate selected profile.'] = 'Konnte das ausgewählte Profiel nicht finden.'; $a->strings['Contact updated.'] = 'Kontakt aktualisiert.'; $a->strings['Failed to update contact record.'] = 'Aktualisierung der Kontaktdaten fehlgeschlagen.'; -$a->strings['Contact has been '] = 'Contact has been '; -$a->strings['blocked'] = 'blocked'; -$a->strings['unblocked'] = 'unblocked'; -$a->strings['ignored'] = 'ignored'; -$a->strings['unignored'] = 'unignored'; -$a->strings['stopped following'] = 'stopped following'; +$a->strings['Contact has been '] = 'Kontakt '; +$a->strings['blocked'] = 'wurde blockiert'; +$a->strings['unblocked'] = 'ist nicht mehr blockiert'; +$a->strings['ignored'] = 'wurde ignoriert'; +$a->strings['unignored'] = 'wird nicht mehr ignoriert'; +$a->strings['stopped following'] = 'wird nicht mehr gefolgt'; $a->strings['Contact has been removed.'] = 'Kontakt wurde entfernt.'; $a->strings['Contact not found.'] = 'Kontakt nicht gefunden.'; $a->strings['Mutual Friendship'] = 'Beidseitige Freundschaft'; @@ -60,7 +60,7 @@ $a->strings['Block/Unblock contact'] = 'Block/Unblock contact'; $a->strings['Ignore contact'] = 'Ignoriere den Kontakt'; $a->strings['Delete contact'] = 'Lösche den Kontakt'; $a->strings['Last updated: '] = 'Letzte Aktualisierung: '; -$a->strings['Update public posts: '] = 'Öffentliche Nachricht aktualisieren: '; +$a->strings['Update public posts: '] = 'Aktualisierung öffentlicher Nachrichten: '; $a->strings['Never'] = 'Niemals'; $a->strings['Unblock this contact'] = 'Blockade dieses Kontakts aufheben'; $a->strings['Block this contact'] = 'Diesen Kontakt blockieren'; @@ -80,24 +80,24 @@ $a->strings['Response from remote site was not understood.'] = 'Antwort der entf $a->strings['Unexpected response from remote site: '] = 'Unerwartete Antwort der Gegenstelle: '; $a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; $a->strings['Remote site reported: '] = 'Entfernte Seite meldet: '; -$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again."; -$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; -$a->strings['Unable to set contact photo.'] = 'Unable to set contact photo.'; -$a->strings['is now friends with'] = 'is now friends with'; -$a->strings['No user record found for '] = 'No user record found for '; -$a->strings['Our site encryption key is apparently messed up.'] = 'Our site encryption key is apparently messed up.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.'; -$a->strings['Contact record was not found for you on our site.'] = 'Contact record was not found for you on our site.'; -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'The ID provided by your system is a duplicate on our system. It should work if you try again.'; -$a->strings['Unable to set your contact credentials on our system.'] = 'Unable to set your contact credentials on our system.'; -$a->strings['Unable to update your contact profile details on our system'] = 'Unable to update your contact profile details on our system'; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Vorstellung schlug fehl oder wurde zurück gezogen."; +$a->strings['Unable to set contact photo.'] = 'Konnte das Bild des Kontakts nicht speichern.'; +$a->strings['is now friends with'] = 'ist jetzt ein(e) Freund(in) von'; +$a->strings['No user record found for '] = 'Kein Nutzereintrag gefunden für '; +$a->strings['Our site encryption key is apparently messed up.'] = 'Der Verschlüsslungsschlüssel unserer Seite ist anscheinend im Arsch.'; +$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.'; +$a->strings['Contact record was not found for you on our site.'] = 'Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.'; +$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'Die ID die uns dein System angeboten hat ist hier bereits vergeben. Bitte versuche es noch einmal.'; +$a->strings['Unable to set your contact credentials on our system.'] = 'Deine Kontaktreferenzen konnten nicht in unserm System gespeichert werden.'; +$a->strings['Unable to update your contact profile details on our system'] = 'Die Updates für dein Profil konnten nicht gespeichert werden'; $a->strings["Connection accepted at "] = "Connection accepted at "; $a->strings['Administrator'] = 'Administrator'; $a->strings['New mail received at '] = 'New mail received at '; $a->strings[' commented on an item at '] = ' commented on an item at '; $a->strings[" commented on an item at "] = " commented on an item at "; $a->strings[' welcomes '] = ' welcomes '; -$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; +$a->strings["This introduction has already been accepted."] = "Diese Vorstellung wurde bereits abgeschlossen."; $a->strings['Profile location is not valid or does not contain profile information.'] = 'Profile location is not valid or does not contain profile information.'; $a->strings['Warning: profile location has no identifiable owner name.'] = 'Warning: profile location has no identifiable owner name.'; $a->strings['Warning: profile location has no profile photo.'] = 'Warning: profile location has no profile photo.'; @@ -105,43 +105,43 @@ $a->strings[' required parameter'] = ' required parameter'; $a->strings[" was "] = " was "; $a->strings["s were "] = "s were "; $a->strings["not found at the given location."] = "not found at the given location."; -$a->strings["Introduction complete."] = "Introduction complete."; -$a->strings['Unrecoverable protocol error.'] = 'Unrecoverable protocol error.'; -$a->strings['Profile unavailable.'] = 'Profile unavailable.'; -$a->strings[' has received too many connection requests today.'] = ' has received too many connection requests today.'; -$a->strings['Spam protection measures have been invoked.'] = 'Spam protection measures have been invoked.'; -$a->strings['Friends are advised to please try again in 24 hours.'] = 'Friends are advised to please try again in 24 hours.'; +$a->strings["Introduction complete."] = "Vorstellung abgeschlossen."; +$a->strings['Unrecoverable protocol error.'] = 'Nicht behebbarer Protokollfehler.'; +$a->strings['Profile unavailable.'] = 'Profil nicht verfügbar.'; +$a->strings[' has received too many connection requests today.'] = ' hat heute zu viele Nachfragen zwecks Kontaktaufnahme erhalten.'; +$a->strings['Spam protection measures have been invoked.'] = 'Maßnahmen zum Spamschutz wurden ergriffen.'; +$a->strings['Friends are advised to please try again in 24 hours.'] = 'Freunde sind angehalten es in 24 Stunden erneut zu versuchen.'; $a->strings["Invalid locator"] = "Invalid locator"; $a->strings["Unable to resolve your name at the provided location."] = "Unable to resolve your name at the provided location."; -$a->strings['You have already introduced yourself here.'] = 'You have already introduced yourself here.'; -$a->strings['Apparently you are already friends with .'] = 'Apparently you are already friends with .'; -$a->strings['Invalid profile URL.'] = 'Invalid profile URL.'; -$a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.'; -$a->strings['Your introduction has been sent.'] = 'Your introduction has been sent.'; -$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; +$a->strings['You have already introduced yourself here.'] = 'Du hast dich hier bereits vorgestellt.'; +$a->strings['Apparently you are already friends with .'] = 'Offenbar bist du bereits ein Freund von '; +$a->strings['Invalid profile URL.'] = 'Ungültige Profil URL.'; +$a->strings['Disallowed profile URL.'] = 'Nicht erlaubte Profil URL.'; +$a->strings['Your introduction has been sent.'] = 'Deine Vorstellung wurde abgeschickt.'; +$a->strings["Please login to confirm introduction."] = "Bitte melde dich an um die Vorstellung zu bestätigen."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; -$a->strings['[Name Withheld]'] = '[Name Withheld]'; -$a->strings['Friend/Connection Request'] = 'Friend/Connection Request'; -$a->strings['Please answer the following:'] = 'Please answer the following:'; -$a->strings['Does $name know you?'] = 'Does $name know you?'; -$a->strings['Yes'] = 'Yes'; -$a->strings['No'] = 'No'; -$a->strings['Add a personal note:'] = 'Add a personal note:'; -$a->strings['Please enter your profile address from one of the following supported social networks:'] = 'Please enter your profile address from one of the following supported social networks:'; +$a->strings['[Name Withheld]'] = '[Name Zurückgehalten]'; +$a->strings['Friend/Connection Request'] = 'Freundschafts/Kontakt Anfrage'; +$a->strings['Please answer the following:'] = 'Bitte beantworte folgende Fragen:'; +$a->strings['Does $name know you?'] = 'Kennt $name dich?'; +$a->strings['Yes'] = 'Ja'; +$a->strings['No'] = 'Nein'; +$a->strings['Add a personal note:'] = 'Eine persönliche Notiz anfügen:'; +$a->strings['Please enter your profile address from one of the following supported social networks:'] = 'Bitte gib deine Profil Adresse von einem der unterstützten Sozialen Netzwerken an:'; $a->strings['Friendika'] = 'Friendika'; $a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web'; -$a->strings["Private \x28secure\x29 network"] = "Private \x28secure\x29 network"; -$a->strings["Public \x28insecure\x29 network"] = "Public \x28insecure\x29 network"; -$a->strings['Your profile address:'] = 'Your profile address:'; -$a->strings['Submit Request'] = 'Submit Request'; -$a->strings['Cancel'] = 'Cancel'; -$a->strings['Global Directory'] = 'Global Directory'; -$a->strings['Item not found.'] = 'Item not found.'; -$a->strings['Private Message'] = 'Private Message'; -$a->strings['This is you'] = 'This is you'; -$a->strings['View $name\'s profile'] = 'View $name\'s profile'; -$a->strings['Item has been removed.'] = 'Item has been removed.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'The profile address specified does not provide adequate information.'; +$a->strings["Private \x28secure\x29 network"] = "Privates \x28sicheres\x29 Netzwerk"; +$a->strings["Public \x28insecure\x29 network"] = "Öffentliches \x28unsicheres\x29 Netzwerk"; +$a->strings['Your profile address:'] = 'Deine Profiladresse:'; +$a->strings['Submit Request'] = 'Anfrage abschicken'; +$a->strings['Cancel'] = 'Abbrechen'; +$a->strings['Global Directory'] = 'Weltweites Verzeichnis'; +$a->strings['Item not found.'] = 'Eintrag nicht gefunden.'; +$a->strings['Private Message'] = 'Private Nachricht'; +$a->strings['This is you'] = 'Das bist du'; +$a->strings['View $name\'s profile'] = 'Profile von $name'; +$a->strings['Item has been removed.'] = 'Eintrag wurde entfernt.'; +$a->strings['The profile address specified does not provide adequate information.'] = 'Die angegebene Profiladresse liefert unzureichende Informationen.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited profile. This person will be unable to receive direct/personal notifications from you.'; $a->strings['Unable to retrieve contact information.'] = 'Unable to retrieve contact information.'; $a->strings['following'] = 'following'; From b5c9f80919bd8678521c31913eeb08ccc56914dd Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 15 Jan 2011 21:13:42 +0100 Subject: [PATCH 04/51] some more German translation --- view/de/strings.php | 258 ++++++++++++++++++++++---------------------- 1 file changed, 129 insertions(+), 129 deletions(-) diff --git a/view/de/strings.php b/view/de/strings.php index 271241197d..d7ad7ab4f8 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -142,27 +142,27 @@ $a->strings['This is you'] = 'Das bist du'; $a->strings['View $name\'s profile'] = 'Profile von $name'; $a->strings['Item has been removed.'] = 'Eintrag wurde entfernt.'; $a->strings['The profile address specified does not provide adequate information.'] = 'Die angegebene Profiladresse liefert unzureichende Informationen.'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited profile. This person will be unable to receive direct/personal notifications from you.'; -$a->strings['Unable to retrieve contact information.'] = 'Unable to retrieve contact information.'; -$a->strings['following'] = 'following'; -$a->strings['Group created.'] = 'Group created.'; -$a->strings['Could not create group.'] = 'Could not create group.'; -$a->strings['Group not found.'] = 'Group not found.'; -$a->strings['Group name changed.'] = 'Group name changed.'; -$a->strings['Membership list updated.'] = 'Membership list updated.'; -$a->strings['Group removed.'] = 'Group removed.'; -$a->strings['Unable to remove group.'] = 'Unable to remove group.'; -$a->strings['Delete'] = 'Delete'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.'; +$a->strings['Unable to retrieve contact information.'] = 'Konnte die Kontaktinformationen nicht empfangen.'; +$a->strings['following'] = 'folgen'; +$a->strings['Group created.'] = 'Gruppe erstellt.'; +$a->strings['Could not create group.'] = 'Konnte die Gruppe nicht erstellen.'; +$a->strings['Group not found.'] = 'Gruppe nicht gefunden.'; +$a->strings['Group name changed.'] = 'Gruppenname geändert.'; +$a->strings['Membership list updated.'] = 'Mitgliedsliste aktualisiert.'; +$a->strings['Group removed.'] = 'Gruppe entfernt.'; +$a->strings['Unable to remove group.'] = 'Konnte die Gruppe nicht entfernen.'; +$a->strings['Delete'] = 'Löschen'; $a->strings["Welcome to "] = "Welcome to "; -$a->strings['Could not create/connect to database.'] = 'Could not create/connect to database.'; -$a->strings['Connected to database.'] = 'Connected to database.'; -$a->strings['Database import succeeded.'] = 'Database import succeeded.'; +$a->strings['Could not create/connect to database.'] = 'Konnte die Verbindung zur Datenbank nicht aufbauen bzw. die Datenbank anlegen.'; +$a->strings['Connected to database.'] = 'Mit der Datenbank verbunden.'; +$a->strings['Database import succeeded.'] = 'Import der Datenbank erfolgreich.'; $a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Please see the file "INSTALL.txt".'; -$a->strings['Database import failed.'] = 'Database import failed.'; -$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'You may need to import the file "database.sql" manually using phpmyadmin or mysql.'; -$a->strings['Welcome to Friendika.'] = 'Welcome to Friendika.'; -$a->strings['Submit'] = 'Submit'; +$a->strings['Please see the file "INSTALL.txt".'] = 'Lies bitte die "INSTALL.txt".'; +$a->strings['Database import failed.'] = 'Import der Datenbank schlug fehl.'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Möglicherweise musst du die Datei "database.sql" manuell mit phpmyadmin oder mysql importieren.'; +$a->strings['Welcome to Friendika.'] = 'Willkommen bei Friendika.'; +$a->strings['Submit'] = 'Senden'; $a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Could not find a command line version of PHP in the web server PATH.'; $a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'This is required. Please adjust the configuration file .htconfig.php accordingly.'; $a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'The command line version of PHP on your system does not have "register_argc_argv" enabled.'; @@ -310,134 +310,134 @@ $a->strings['Registration request at '] = 'Registration request at '; $a->strings['Your registration is pending approval by the site owner.'] = 'Your registration is pending approval by the site owner.'; $a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'; -$a->strings["Your OpenID \x28optional\x29: "] = "Your OpenID \x28optional\x29: "; +$a->strings["Your OpenID \x28optional\x29: "] = "Deine OpenID \x28optional\x29: "; $a->strings['Shared content is covered by the Creative Commons Attribution 3.0 license.'] = 'Shared content is covered by the Creative Commons Attribution 3.0 license.'; $a->strings['Registration'] = 'Registration'; -$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '; -$a->strings['Your Email Address: '] = 'Your Email Address: '; -$a->strings['Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'nickname@$sitename\'.'] = 'Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'nickname@$sitename\'.'; -$a->strings['Choose a nickname: '] = 'Choose a nickname: '; -$a->strings['Register'] = 'Register'; -$a->strings['Please login.'] = 'Please login.'; +$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Vollständiger Name ' . "\x28" . 'z.B. Joe Smith' . "\x29" . ': '; +$a->strings['Your Email Address: '] = 'Deine EMail Adresse: '; +$a->strings['Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'nickname@$sitename\'.'] = 'Wähle eine Spitznamen, der mit einem Buchstaben beginnt. Deine globale Profiladresse wird dann \'spitzname@$sitename\' sein.'; +$a->strings['Choose a nickname: '] = 'Spitznamen wählen: '; +$a->strings['Register'] = 'Registrieren'; +$a->strings['Please login.'] = 'Bitte melde dich an.'; $a->strings['Registration revoked for '] = 'Registration revoked for '; -$a->strings['Account approved.'] = 'Account approved.'; -$a->strings['View in context'] = 'View in context'; -$a->strings['Passwords do not match. Password unchanged.'] = 'Passwords do not match. Password unchanged.'; -$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Empty passwords are not allowed. Password unchanged.'; -$a->strings['Password changed.'] = 'Password changed.'; -$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.'; -$a->strings[' Please use a shorter name.'] = ' Please use a shorter name.'; -$a->strings[' Name too short.'] = ' Name too short.'; -$a->strings[' Not valid email.'] = ' Not valid email.'; -$a->strings['Settings updated.'] = 'Settings updated.'; -$a->strings['Plugin Settings'] = 'Plugin Settings'; -$a->strings['Account Settings'] = 'Account Settings'; -$a->strings['No Plugin settings configured'] = 'No Plugin settings configured'; +$a->strings['Account approved.'] = 'Account freigegeben.'; +$a->strings['View in context'] = 'Im Kontext betrachten'; +$a->strings['Passwords do not match. Password unchanged.'] = 'Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.'; +$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.'; +$a->strings['Password changed.'] = 'Passwort ändern.'; +$a->strings['Password update failed. Please try again.'] = 'Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal'; +$a->strings[' Please use a shorter name.'] = ' Bitte verwende einen kürzeren Namen.'; +$a->strings[' Name too short.'] = ' Name ist zu kurz.'; +$a->strings[' Not valid email.'] = ' Keine gültige EMail.'; +$a->strings['Settings updated.'] = 'Einstellungen aktualisiert.'; +$a->strings['Plugin Settings'] = 'Erweiterungseinstellungen'; +$a->strings['Account Settings'] = 'Account Einstellungen'; +$a->strings['No Plugin settings configured'] = 'Keine Erweiterungen konfiguriert'; $a->strings['OpenID: '] = 'OpenID: '; -$a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Optional\x29 Allow this OpenID to login to this account."; -$a->strings['Profile is not published.'] = 'Profile is not published.'; -$a->strings['Default Post Permissions'] = 'Default Post Permissions'; -$a->strings['Tag removed'] = 'Tag removed'; -$a->strings['Remove Item Tag'] = 'Remove Item Tag'; -$a->strings['Select a tag to remove: '] = 'Select a tag to remove: '; -$a->strings['Remove'] = 'Remove'; -$a->strings['No contacts.'] = 'No contacts.'; -$a->strings['Wall Photos'] = 'Wall Photos'; -$a->strings['Logged out.'] = 'Logged out.'; -$a->strings['Visible To:'] = 'Visible To:'; -$a->strings['Groups'] = 'Groups'; -$a->strings['Except For:'] = 'Except For:'; -$a->strings['Unknown | Not categorised'] = 'Unknown | Not categorised'; -$a->strings['Block immediately'] = 'Block immediately'; -$a->strings['Shady, spammer, self-marketer'] = 'Shady, spammer, self-marketer'; -$a->strings['Known to me, but no opinion'] = 'Known to me, but no opinion'; -$a->strings['OK, probably harmless'] = 'OK, probably harmless'; -$a->strings['Reputable, has my trust'] = 'Reputable, has my trust'; -$a->strings['Frequently'] = 'Frequently'; -$a->strings['Hourly'] = 'Hourly'; -$a->strings['Twice daily'] = 'Twice daily'; -$a->strings['Daily'] = 'Daily'; -$a->strings['Weekly'] = 'Weekly'; -$a->strings['Monthly'] = 'Monthly'; -$a->strings['Miscellaneous'] = 'Miscellaneous'; -$a->strings['less than a second ago'] = 'less than a second ago'; -$a->strings['year'] = 'year'; -$a->strings['years'] = 'years'; -$a->strings['month'] = 'month'; -$a->strings['months'] = 'months'; -$a->strings['week'] = 'week'; -$a->strings['weeks'] = 'weeks'; -$a->strings['day'] = 'day'; -$a->strings['days'] = 'days'; -$a->strings['hour'] = 'hour'; -$a->strings['hours'] = 'hours'; -$a->strings['minute'] = 'minute'; -$a->strings['minutes'] = 'minutes'; -$a->strings['second'] = 'second'; -$a->strings['seconds'] = 'seconds'; -$a->strings[' ago'] = ' ago'; -$a->strings['Create a new group'] = 'Create a new group'; -$a->strings['Everybody'] = 'Everybody'; -$a->strings['Logout'] = 'Logout'; -$a->strings['Home'] = 'Home'; -$a->strings['Directory'] = 'Directory'; -$a->strings['Network'] = 'Network'; -$a->strings['Notifications'] = 'Notifications'; -$a->strings['Settings'] = 'Settings'; -$a->strings['Profiles'] = 'Profiles'; -$a->strings['Male'] = 'Male'; -$a->strings['Female'] = 'Female'; -$a->strings['Currently Male'] = 'Currently Male'; -$a->strings['Currently Female'] = 'Currently Female'; -$a->strings['Mostly Male'] = 'Mostly Male'; -$a->strings['Mostly Female'] = 'Mostly Female'; +$a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Optional\x29 Erlaube dieser OpenID sich für diesen Account anzumelden."; +$a->strings['Profile is not published.'] = 'Profil ist nicht veröffentlicht.'; +$a->strings['Default Post Permissions'] = 'Grundeinstellung für Veröffentlichungen'; +$a->strings['Tag removed'] = 'Tag entfernt'; +$a->strings['Remove Item Tag'] = 'Gegenstands Tag entfernen'; +$a->strings['Select a tag to remove: '] = 'Wähle ein Tag zum Entfernen aus: '; +$a->strings['Remove'] = 'Entfernen'; +$a->strings['No contacts.'] = 'Keine Kontakte.'; +$a->strings['Wall Photos'] = 'Wall Fotos'; +$a->strings['Logged out.'] = 'Abgemeldet.'; +$a->strings['Visible To:'] = 'Sichtbar für:'; +$a->strings['Groups'] = 'Gruppen'; +$a->strings['Except For:'] = 'Abgesehen von:'; +$a->strings['Unknown | Not categorised'] = 'Unbekannt | Nicht kategorisiert'; +$a->strings['Block immediately'] = 'Sofort blockieren'; +$a->strings['Shady, spammer, self-marketer'] = 'Zwielichtig, Spammer, Selbstdarsteller'; +$a->strings['Known to me, but no opinion'] = 'Ist mir bekannt, hab aber keine Meinung'; +$a->strings['OK, probably harmless'] = 'OK, wahrscheinlich harmlos'; +$a->strings['Reputable, has my trust'] = 'Seriös, hat mein Vertrauen'; +$a->strings['Frequently'] = 'Häufig'; +$a->strings['Hourly'] = 'Stündlich'; +$a->strings['Twice daily'] = 'Zweimal Täglich'; +$a->strings['Daily'] = 'Täglich'; +$a->strings['Weekly'] = 'Wöchendlich'; +$a->strings['Monthly'] = 'Monatlich'; +$a->strings['Miscellaneous'] = 'Verschiedenes'; +$a->strings['less than a second ago'] = 'vor weniger als einer Sekunde'; +$a->strings['year'] = 'Jahr'; +$a->strings['years'] = 'Jahre'; +$a->strings['month'] = 'Monat'; +$a->strings['months'] = 'Monate'; +$a->strings['week'] = 'Woche'; +$a->strings['weeks'] = 'Wochen'; +$a->strings['day'] = 'Tag'; +$a->strings['days'] = 'Tage'; +$a->strings['hour'] = 'Stunde'; +$a->strings['hours'] = 'Stunden'; +$a->strings['minute'] = 'Minute'; +$a->strings['minutes'] = 'Minuten'; +$a->strings['second'] = 'Sekunde'; +$a->strings['seconds'] = 'Sekunden'; +$a->strings[' ago'] = ' her'; +$a->strings['Create a new group'] = 'Neue Gruppe erstellen'; +$a->strings['Everybody'] = 'Jede(r)'; +$a->strings['Logout'] = 'Abmelden'; +$a->strings['Home'] = 'Persönlich'; +$a->strings['Directory'] = 'Verzeichnis'; +$a->strings['Network'] = 'Netzwerk'; +$a->strings['Notifications'] = 'Nachrichten'; +$a->strings['Settings'] = 'Einstellungen'; +$a->strings['Profiles'] = 'Profile'; +$a->strings['Male'] = 'Männlich'; +$a->strings['Female'] = 'Weiblich'; +$a->strings['Currently Male'] = 'Momentan Männlich'; +$a->strings['Currently Female'] = 'Momentan Weiblich'; +$a->strings['Mostly Male'] = 'Hauptsächlich Männlich'; +$a->strings['Mostly Female'] = 'Hauptsächlich Weiblich'; $a->strings['Transgender'] = 'Transgender'; $a->strings['Intersex'] = 'Intersex'; -$a->strings['Transsexual'] = 'Transsexual'; -$a->strings['Hermaphrodite'] = 'Hermaphrodite'; +$a->strings['Transsexual'] = 'Transsexuel'; +$a->strings['Hermaphrodite'] = 'Hermaphrodit'; $a->strings['Neuter'] = 'Neuter'; -$a->strings['Non-specific'] = 'Non-specific'; -$a->strings['Other'] = 'Other'; -$a->strings['Undecided'] = 'Undecided'; -$a->strings['Males'] = 'Males'; -$a->strings['Females'] = 'Females'; -$a->strings['Gay'] = 'Gay'; -$a->strings['Lesbian'] = 'Lesbian'; -$a->strings['No Preference'] = 'No Preference'; -$a->strings['Bisexual'] = 'Bisexual'; +$a->strings['Non-specific'] = 'Nicht spezifiziert'; +$a->strings['Other'] = 'Andere'; +$a->strings['Undecided'] = 'Unentschieden'; +$a->strings['Males'] = 'Männer'; +$a->strings['Females'] = 'Frauen'; +$a->strings['Gay'] = 'Schwul'; +$a->strings['Lesbian'] = 'Lesbisch'; +$a->strings['No Preference'] = 'Keine Vorlieben'; +$a->strings['Bisexual'] = 'Bisexuel'; $a->strings['Autosexual'] = 'Autosexual'; $a->strings['Abstinent'] = 'Abstinent'; -$a->strings['Virgin'] = 'Virgin'; +$a->strings['Virgin'] = 'Jungfrau'; $a->strings['Deviant'] = 'Deviant'; $a->strings['Fetish'] = 'Fetish'; $a->strings['Oodles'] = 'Oodles'; $a->strings['Nonsexual'] = 'Nonsexual'; $a->strings['Single'] = 'Single'; -$a->strings['Lonely'] = 'Lonely'; -$a->strings['Available'] = 'Available'; -$a->strings['Unavailable'] = 'Unavailable'; +$a->strings['Lonely'] = 'Einsam'; +$a->strings['Available'] = 'Verfügbar'; +$a->strings['Unavailable'] = 'Nichtverfügbar'; $a->strings['Dating'] = 'Dating'; -$a->strings['Unfaithful'] = 'Unfaithful'; -$a->strings['Sex Addict'] = 'Sex Addict'; -$a->strings['Friends'] = 'Friends'; +$a->strings['Unfaithful'] = 'Untreu'; +$a->strings['Sex Addict'] = 'Sex Besessen'; +$a->strings['Friends'] = 'Freunde'; $a->strings['Friends/Benefits'] = 'Friends/Benefits'; $a->strings['Casual'] = 'Casual'; -$a->strings['Engaged'] = 'Engaged'; -$a->strings['Married'] = 'Married'; -$a->strings['Partners'] = 'Partners'; -$a->strings['Cohabiting'] = 'Cohabiting'; -$a->strings['Happy'] = 'Happy'; -$a->strings['Not Looking'] = 'Not Looking'; +$a->strings['Engaged'] = 'Verlobt'; +$a->strings['Married'] = 'Verheiratet'; +$a->strings['Partners'] = 'Partner'; +$a->strings['Cohabiting'] = 'kohabitierend'; +$a->strings['Happy'] = 'Glücklich'; +$a->strings['Not Looking'] = 'Nicht auf der Suche'; $a->strings['Swinger'] = 'Swinger'; -$a->strings['Betrayed'] = 'Betrayed'; -$a->strings['Separated'] = 'Separated'; -$a->strings['Unstable'] = 'Unstable'; -$a->strings['Divorced'] = 'Divorced'; -$a->strings['Widowed'] = 'Widowed'; -$a->strings['Uncertain'] = 'Uncertain'; -$a->strings['Complicated'] = 'Complicated'; -$a->strings['Don\'t care'] = 'Don\'t care'; -$a->strings['Ask me'] = 'Ask me'; +$a->strings['Betrayed'] = 'Betrogen'; +$a->strings['Separated'] = 'Getrennt'; +$a->strings['Unstable'] = 'Unstabil'; +$a->strings['Divorced'] = 'Geschieden'; +$a->strings['Widowed'] = 'Verwidwet'; +$a->strings['Uncertain'] = 'Unsicher'; +$a->strings['Complicated'] = 'Kompliziert'; +$a->strings['Don\'t care'] = 'Ist mir nicht wichtig'; +$a->strings['Ask me'] = 'Frag mich'; $a->strings['Africa/Abidjan'] = 'Africa/Abidjan'; $a->strings['Africa/Accra'] = 'Africa/Accra'; $a->strings['Africa/Addis_Ababa'] = 'Africa/Addis_Ababa'; From 0c77263a85d6930997b616f541e967fa60923b58 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Jan 2011 11:18:23 +0100 Subject: [PATCH 05/51] update to view/en placed into de --- view/de/profile_advanced.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/de/profile_advanced.php b/view/de/profile_advanced.php index 82c66adece..9aee6c2627 100644 --- a/view/de/profile_advanced.php +++ b/view/de/profile_advanced.php @@ -39,8 +39,8 @@ EOT; $o .= '
' . ((intval($a->profile['dob'])) - ? datetime_convert('UTC',date_default_timezone_get(),$a->profile['dob'],'j F, Y') - : datetime_convert('UTC',date_default_timezone_get(),'2001-' . substr($a->profile['dob'],6),'j F')) + ? day_translate(datetime_convert('UTC',date_default_timezone_get(),$a->profile['dob'],'j F, Y')) + : day_translate(datetime_convert('UTC',date_default_timezone_get(),'2001-' . substr($a->profile['dob'],6),'j F'))) . "
\r\n"; $o .= '
'; From 80e77516c8d3104b6def9176861120f8a233c9da Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Jan 2011 11:24:52 +0100 Subject: [PATCH 06/51] german translation of cmnt_received_eml.tpl --- view/de/cmnt_received_eml.tpl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/view/de/cmnt_received_eml.tpl b/view/de/cmnt_received_eml.tpl index d60fcd375d..2c7ebaa65c 100644 --- a/view/de/cmnt_received_eml.tpl +++ b/view/de/cmnt_received_eml.tpl @@ -1,18 +1,18 @@ -Dear $username, +Hallo $username, - '$from' commented on an item/conversation which you have been following. + '$from' hat ein Ding oder eine Konversation kommentiert welchem/r du + auch folgst. ----- $body ----- -Please login at $siteurl to view the complete conversation: +Um die gesamte Konversation zu sehen melde dich bitte bei $siteurl an: $display -Thank you, - $sitename administrator - +Danke für die Aufmerksamkeit + $sitename Administrator From fe00d451a7b367ab48641992cb649c8e0893901b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Jan 2011 11:40:27 +0100 Subject: [PATCH 07/51] german translation of view/de/contact_edit.tpl --- view/de/contact_edit.tpl | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/view/de/contact_edit.tpl b/view/de/contact_edit.tpl index 79a7651c1c..28ed8b2139 100644 --- a/view/de/contact_edit.tpl +++ b/view/de/contact_edit.tpl @@ -39,7 +39,7 @@ $ignored
-

Contact Information / Notes

+

Kontaktinformation / Notizen

@@ -47,8 +47,9 @@ $ignored
-

Profile Visibility

-

Please choose the profile you would like to display to $name when viewing your profile securely. +

Profil Sichtbarkeit

+

Bitte wähle das Profil, das du $name gezeigt werden soll, wenn er sich dein +Profil in Friendika betrachtet.

$profile_select @@ -60,14 +61,17 @@ $profile_select

Online Reputation

-Occasionally your friends may wish to inquire about this person's online legitimacy. You may help them choose whether or not to interact with this person by providing a 'reputation' to guide them. +Gelegentlich werden sich deine Freunde nach der online Legitimität dieser +Person erkundigen. Du kannst ihnen helfen bei der Entscheidung ob sie mit +dieser Person interagieren wollen indem du den "Ruf" der Person bewertest.

$rating

-Please take a moment to elaborate on this selection if you feel it could be helpful to others. +Bitte numm dir einen Moment um deine Auswahl zu kommentieren wenn du meinst das +könnte anderen weiter helfen.

From f7b0a4569db349564fcaf0db85e784a24085e9fe Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Jan 2011 12:44:28 +0100 Subject: [PATCH 08/51] german translation of view/de/cropbody.tpl --- view/de/cropbody.tpl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/view/de/cropbody.tpl b/view/de/cropbody.tpl index 39395af8e1..0211fe3089 100644 --- a/view/de/cropbody.tpl +++ b/view/de/cropbody.tpl @@ -1,6 +1,7 @@ -

Crop Image

+

Bild zuschneiden

-Please adjust the image cropping for optimum viewing. +Zur optimalen Darstellung des Bildes kann es nun auf einen Bereich +zugeschnitten werden. Bitte wähle diesen Bereich.

From 11d95896f26a810b32bba22ddd16ce0010d4265f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Jan 2011 12:46:13 +0100 Subject: [PATCH 09/51] german translation of view/de/dfrn_req_confirm.tpl --- view/de/dfrn_req_confirm.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/de/dfrn_req_confirm.tpl b/view/de/dfrn_req_confirm.tpl index f053f22af2..88d05b49a8 100644 --- a/view/de/dfrn_req_confirm.tpl +++ b/view/de/dfrn_req_confirm.tpl @@ -1,8 +1,8 @@

-Welcome home $username. +Willkommen zu Hause $username.
-Please confirm your introduction to $dfrn_url. +Bitte bestätige deine Vorstellung bei $dfrn_url.

@@ -14,4 +14,4 @@ $aes_allow
- \ No newline at end of file + From 6c42edf3518b649364813020ace9685157b2a8ae Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Jan 2011 12:47:03 +0100 Subject: [PATCH 10/51] german translation view/de/directory_header.tpl --- view/de/directory_header.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/de/directory_header.tpl b/view/de/directory_header.tpl index 03eed62b3c..cda2f49145 100644 --- a/view/de/directory_header.tpl +++ b/view/de/directory_header.tpl @@ -1,4 +1,4 @@ -

Site Directory

+

Verzeichnis dieser Seite

$globaldir From 468c1824054b7527a3d691e0e404e09c37721711 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 18 Jan 2011 13:44:46 +0100 Subject: [PATCH 11/51] german translation view/de/follow_notify_eml.tpl --- view/de/follow_notify_eml.tpl | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/view/de/follow_notify_eml.tpl b/view/de/follow_notify_eml.tpl index ae758c9a8f..d7259a2406 100644 --- a/view/de/follow_notify_eml.tpl +++ b/view/de/follow_notify_eml.tpl @@ -1,14 +1,15 @@ -Dear $myname, +Hallo $myname, -You have a new follower at $sitename - '$requestor'. +'$requestor' folgt dir jetzt auf $sitename. -You may visit their profile at $url. +Du kannst das Profil unter $url abrufen. -Please login to your site to approve or ignore/cancel the request. +Bitte melde dich auf deiner Seite an um die Anfrage zu bestätigen, abzulehnen +oder zu ignorieren. $siteurl -Regards, +Grüße, + $sitename Administrator - $sitename administrator \ No newline at end of file From 8a17ce6da1c2de4aa9ac290c56ac110fc20650b0 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jan 2011 15:31:50 +0100 Subject: [PATCH 12/51] added --- view/de/profile_edit.tpl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/view/de/profile_edit.tpl b/view/de/profile_edit.tpl index 50227b7f3b..beff3b8bd5 100644 --- a/view/de/profile_edit.tpl +++ b/view/de/profile_edit.tpl @@ -29,6 +29,13 @@ $default
+
+ + +
+
+ +
$gender From 990aafbfcfb7dadaed3f8a9cdbb655159074ac0d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jan 2011 15:32:19 +0100 Subject: [PATCH 13/51] german translation of view/dev/group_edit.tpl --- view/de/group_edit.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/de/group_edit.tpl b/view/de/group_edit.tpl index e6c7afb490..1dea97f4d4 100644 --- a/view/de/group_edit.tpl +++ b/view/de/group_edit.tpl @@ -1,15 +1,15 @@ -

Group Editor

+

Gruppen Editor

- +
- + $selector
From fcf1f573e80b26dd504a6ab25353137ae6c921c1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jan 2011 15:33:23 +0100 Subject: [PATCH 14/51] german translation of group_new.tpl --- view/de/group_new.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/de/group_new.tpl b/view/de/group_new.tpl index a1efa77175..639eab8a86 100644 --- a/view/de/group_new.tpl +++ b/view/de/group_new.tpl @@ -6,10 +6,10 @@

-Create a group of contacts/friends. +Erstelle eine neue Gruppe für Freunde/Kontakte.

- +
@@ -20,4 +20,4 @@ Create a group of contacts/friends.
- \ No newline at end of file + From 5702782caaf317f3a2d05544e41a3e7b0b8cab0b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jan 2011 15:45:55 +0100 Subject: [PATCH 15/51] german translation of friend_complete_eml.tpl --- view/de/friend_complete_eml.tpl | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/view/de/friend_complete_eml.tpl b/view/de/friend_complete_eml.tpl index ab12fcb6b7..f6e0adf4ca 100644 --- a/view/de/friend_complete_eml.tpl +++ b/view/de/friend_complete_eml.tpl @@ -1,22 +1,22 @@ -Dear $username, +Lieber $username, - Great news... '$fn' at '$dfrn_url' has accepted -your connection request at '$sitename'. +großartige Neuigkeiten... '$fn' von '$dfrn_url' hat deine Kontaktaufnahme auf +'$sitename' bestätigt. -You are now mutual friends and may exchange status updates, photos, and email -without restriction. +Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Fotos und +EMail ohne Einschränkungen austauschen. -Please visit your 'Contacts' page at $sitename if you wish to make -any changes to this relationship. +Bitte rufe deine 'Kontakte' Seite auf $sitename auf um du Änderungen an +dieser Freundschaft vorzunehmen. $siteurl -[For instance, you may create a separate profile with information that is not -available to the general public - and assign viewing rights to '$fn']. +[Du könntest zum Beispiel ein neue Profil anlegen mit Informationen die nicht +für die Allgemeinheit bestimmt sind, die du aber gerne mit '$fn' teilen +möchtest]. -Sincerely, - - $sitename Administrator +Mit freundlichen Grüßen + $sitename Administrator From 387e1aefbc4b14386aa76ca5492923528359f56b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jan 2011 16:21:41 +0100 Subject: [PATCH 16/51] german translations of insecure_net.tpl intro_complete_eml.tpl and intros-top.tpl --- view/de/insecure_net.tpl | 8 +++++--- view/de/intro_complete_eml.tpl | 28 ++++++++++++---------------- view/de/intros-top.tpl | 2 +- 3 files changed, 18 insertions(+), 20 deletions(-) diff --git a/view/de/insecure_net.tpl b/view/de/insecure_net.tpl index 5628639ccf..900f286425 100644 --- a/view/de/insecure_net.tpl +++ b/view/de/insecure_net.tpl @@ -1,6 +1,8 @@

-The social network that $name belongs to is an open network with limited or non-existent privacy controls. -Please use appropriate discretion. +Das Soziale Netzwerk dem $name angehört ist ein offenes Netzwerk das nur +eingeschränkte oder nicht existente Privatspäreneinstellungen bietet. + +Bitte verhalte dich entsprechend diskret.

-
\ No newline at end of file +
diff --git a/view/de/intro_complete_eml.tpl b/view/de/intro_complete_eml.tpl index a60745ec55..46ffc87812 100644 --- a/view/de/intro_complete_eml.tpl +++ b/view/de/intro_complete_eml.tpl @@ -1,22 +1,18 @@ -Dear $username, +Lieber $username, - '$fn' at '$dfrn_url' has accepted -your connection request at '$sitename'. +'$fn' von '$dfrn_url' hat deine Kontaktanfrage auf '$sitename' bestätigt. - '$fn' has chosen to accept you a "fan", which restricts -some forms of communication - such as private messaging and some profile -interactions. If this is a celebrity or community page, these settings were -applied automatically. +'$fn' hat sich dazu entschlossen dich als "Fan" mit eingeschränkten +Kommunikationsmöglichkeiten zu akzeptieren. Dies umfasst private Nachrichten +und einige Profilaktivitäten. Sollte dies eine Prominenten oder +Gemeinschaftsseite sein, wurden diese Einstellungen automatisch vorgenommen. - '$fn' may choose to extend this into a two-way or more permissive -relationship in the future. +'$fn' kann sich in Zukunft dazu entschließen eure Beziehung in eine beidseitige +Freundschaft oder freizügigere Beziehung zu erweitern. - You will start receiving public status updates from '$fn', -which will appear on your 'Network' page at +Ab sofort wirst du Statusmitteilungen von '$fn' erhalten, die auf deiner +'Netzwerkseite' erscheinen werden. -$siteurl - -Sincerely, - - $sitename Administrator +Mit freundlichen Grüßen, + $sitename Administrator diff --git a/view/de/intros-top.tpl b/view/de/intros-top.tpl index d8b7394a4a..e65da1a3f2 100644 --- a/view/de/intros-top.tpl +++ b/view/de/intros-top.tpl @@ -1,4 +1,4 @@ -

Pending Friend/Connect Notifications

+

Schwebende Freundschafts/Kontakt Benachrichtigungen

$hide_text From ba9e85261b75d543b6719bfd7f4115bdac183c54 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jan 2011 16:27:28 +0100 Subject: [PATCH 17/51] german translation of jot-header.tpl --- view/de/jot-header.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/de/jot-header.tpl b/view/de/jot-header.tpl index b687f65a69..508715dca6 100644 --- a/view/de/jot-header.tpl +++ b/view/de/jot-header.tpl @@ -77,7 +77,7 @@ tinyMCE.init({ }); function jotGetLink() { - reply = prompt("Please enter a link URL:"); + reply = prompt("Bitte URL des Links angeben:"); if(reply && reply.length) { $('#profile-rotator').show(); $.get('parse_url?url=' + reply, function(data) { @@ -88,14 +88,14 @@ tinyMCE.init({ } function jotGetVideo() { - reply = prompt("Please enter a YouTube link:"); + reply = prompt("Bitte den YouTube Link angeben:"); if(reply && reply.length) { tinyMCE.execCommand('mceInsertRawHTML',false,'[youtube]' + reply + '[/youtube]'); } } function jotGetLocation() { - reply = prompt("Where are you right now?", $('#jot-location').val()); + reply = prompt("Wo bist du im Moment?", $('#jot-location').val()); if(reply && reply.length) { $('#jot-location').val(reply); } From ea010de8634a4264ad4f35bd5dd7b65fba3081c5 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jan 2011 16:33:42 +0100 Subject: [PATCH 18/51] german translation of like.tpl --- view/de/like.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/de/like.tpl b/view/de/like.tpl index 1c385e5deb..2f778851af 100644 --- a/view/de/like.tpl +++ b/view/de/like.tpl @@ -1,5 +1,5 @@ From b43ec25955de2a2e18cd1d65023341abdcd5b519 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jan 2011 16:37:59 +0100 Subject: [PATCH 19/51] german translation mail_received_eml.tpl --- view/de/mail_received_eml.tpl | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/view/de/mail_received_eml.tpl b/view/de/mail_received_eml.tpl index 261aec4bed..8ec9f79148 100644 --- a/view/de/mail_received_eml.tpl +++ b/view/de/mail_received_eml.tpl @@ -1,16 +1,17 @@ -Dear $username, +Lieber $username, - You've received a new private message at $sitename from '$from'. +du hast eine neue private Nachricht von '$from' auf '$sitename' erhhalten. ----- $title ----- $body ----- -Please login at $siteurl to read and reply to your private messages. +Bitte melde dich unter $siteurl an um deine privaten Nachrichte zu lesen und zu +beantworten. -Thank you, - $sitename administrator +Viele Grüße, + $sitenname Administrator From 07db9459212028dd380216dc26333a378af3b488 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 20 Jan 2011 15:43:51 +0100 Subject: [PATCH 20/51] german translation of wall_received_eml.tpl --- view/de/wall_received_eml.tpl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/view/de/wall_received_eml.tpl b/view/de/wall_received_eml.tpl index c296de7851..b0ca45b244 100644 --- a/view/de/wall_received_eml.tpl +++ b/view/de/wall_received_eml.tpl @@ -1,18 +1,18 @@ -Dear $username, +Hallo $username, - '$from' posted something to your profile wall. +'$from' hat etwas auf deiner Profilwand gepostet. ----- $body ----- -Please login at $siteurl to view or delete the item: +Bitte melde dich unter $siteurl an um den Eintrag anzusehen oder zu löschen. $display -Thank you, - $sitename administrator +Besten Dank! + $sitename Administrator From 787496b7c2ec23c353e4f117972e35dd29537cc7 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 20 Jan 2011 16:43:59 +0100 Subject: [PATCH 21/51] german translation of settings.tpl --- view/de/settings.tpl | 48 ++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/view/de/settings.tpl b/view/de/settings.tpl index 5e1bfabf4c..6259c171a2 100644 --- a/view/de/settings.tpl +++ b/view/de/settings.tpl @@ -1,6 +1,6 @@ -

Account Settings

+

Account Einstellungen

- + $nickname_block @@ -8,16 +8,16 @@ $nickname_block -

Basic Settings

+

Grundeinstellungen

- +
- +
@@ -25,19 +25,19 @@ $nickname_block
- + $zoneselect
- +
- +
@@ -46,7 +46,7 @@ $zoneselect
- + $theme
@@ -56,15 +56,15 @@ $theme
-

Security and Privacy Settings

+

Sicherheits und Privatsphären Einstellungen

- + -
(to prevent spam abuse)
+
(um SPAM zu verhindern)
@@ -95,24 +95,24 @@ $profile_in_net_dir -

Notification Settings

+

Benachrichtigungs Einstellungen

-
Send a notification email when:
- +
Benachrichtigungsemail senden wenn:
+
- +
- +
- +
- +
@@ -123,20 +123,20 @@ $profile_in_net_dir
-

Password Settings

+

Passwort Einstellungen

-Leave password fields blank unless changing +Lass die Passwortfelder frei außer du willst das Passwort ändern.

- +
- +
@@ -152,7 +152,7 @@ Leave password fields blank unless changing
-

Advanced Page Settings

+

Erweiterte Seiteneinstellungen

$pagetype From 76ed216aaadcdaeb5010ed663573ae02f63577ad Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 20 Jan 2011 18:01:04 +0100 Subject: [PATCH 22/51] german translation of wall_item_drop.tpl --- view/de/wall_item_drop.tpl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/view/de/wall_item_drop.tpl b/view/de/wall_item_drop.tpl index 66777db15c..7b267f314a 100644 --- a/view/de/wall_item_drop.tpl +++ b/view/de/wall_item_drop.tpl @@ -1,2 +1,4 @@ -
Delete
+
Löschen
From 723aca6109f57e68654c978169b57b73ab25330f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 20 Jan 2011 18:15:12 +0100 Subject: [PATCH 23/51] german translation of settings_nick_unset.tpl --- view/de/settings_nick_unset.tpl | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/view/de/settings_nick_unset.tpl b/view/de/settings_nick_unset.tpl index 903768b594..2a56fda7ae 100644 --- a/view/de/settings_nick_unset.tpl +++ b/view/de/settings_nick_unset.tpl @@ -1,13 +1,15 @@

-Your profile URL is currently '$baseurl/profile/$uid'. -Setting a nickname will allow a friendly profile URL such as -'nickname@$basepath'. +Deine Profil URL ist im Moment '$baseurl/profile/$uid'. +Wenn du einen Spitznamen wählst kann man diese URL freundlicher ausdrücken +z.B. 'spitzname@$basepath'.
-Once set, it can never be changed. The nickname must start with a letter; and only letters, numbers, dashes, and underscores are allowed. +Einmal gewählt kann der Spitzname nicht mehr geändert werden. Er +muss mit einem Buchstaben beginnen. Es sind ausschließlich +Buchstaben, Zahlen sowie Binde- und Unterstriche erlaubt.

- +
From b4049f67ea6a335cb18516e2045c57941838e847 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 20 Jan 2011 18:21:32 +0100 Subject: [PATCH 24/51] german translation of settings_nick_subdir.tpl --- view/de/settings_nick_subdir.tpl | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/view/de/settings_nick_subdir.tpl b/view/de/settings_nick_subdir.tpl index 303c24df71..83b077be66 100644 --- a/view/de/settings_nick_subdir.tpl +++ b/view/de/settings_nick_subdir.tpl @@ -1,6 +1,9 @@

-It appears that your website is located in a subdirectory of the
-$hostname website, so this setting may not work reliably.
+Es scheint so als ob deine Webseite in einem Unterverzeichnis von $hostname +liegt, es könnte deshalb unzuverlässig arbeiten. +

+

+Solltest du irgendwelche Probleme haben versuche bitte folgende Profil Adresse +'$baseurl/profile/$nickname' eventuell funktioniert es damit +besser.

-

If you have any issues, you may have better results using the profile
address '$baseurl/profile/$nickname'. -

\ No newline at end of file From ed37b1d166b22499c8f46e7f71e698a2985c9233 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 20 Jan 2011 18:45:48 +0100 Subject: [PATCH 25/51] german translation of settings_nick_set.tpl --- view/de/settings_nick_set.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/de/settings_nick_set.tpl b/view/de/settings_nick_set.tpl index a36b3b9a20..9336951d4e 100644 --- a/view/de/settings_nick_set.tpl +++ b/view/de/settings_nick_set.tpl @@ -1,7 +1,7 @@

-Your profile address is '$nickname@$basepath' +Deine Profiladresse lautet '$nickname@$basepath'

$subdir From 5b0db3d228b96ddaae661f63285d240ffd8ed826 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jan 2011 09:59:13 +0100 Subject: [PATCH 26/51] german translation of wallwall_item.tpl --- view/de/wallwall_item.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/de/wallwall_item.tpl b/view/de/wallwall_item.tpl index f8affd1c56..fd05a74ace 100644 --- a/view/de/wallwall_item.tpl +++ b/view/de/wallwall_item.tpl @@ -1,18 +1,18 @@
Wall-To-Wall
$lock - $name to $owner_name via Wall-To-Wall:
+ $name to $owner_name via Wall-To-Wall:
$ago
$location
$vote From d4496c511856474525fc688c5e4c807827b9882b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jan 2011 10:03:51 +0100 Subject: [PATCH 27/51] german translation of request_notify_eml.tpl --- view/de/request_notify_eml.tpl | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/view/de/request_notify_eml.tpl b/view/de/request_notify_eml.tpl index 9eef7a61eb..15b83f64fa 100644 --- a/view/de/request_notify_eml.tpl +++ b/view/de/request_notify_eml.tpl @@ -1,17 +1,14 @@ -Dear $myname, +Lieber $myname, -You have just received a connection request at $sitename +du hast gerade eine Kontaktanfrage von '$requestor' auf $sitename erhalten. -from '$requestor'. +Du kannst dir das Profil unter $url ansehen. -You may visit their profile at $url. - -Please login to your site to view the complete introduction -and approve or ignore/cancel the request. +Bitte melde dich auf deiner Seite an um die komplette Vorstellung anzusehen +und bestätige oder ignoriere die Anfrage. $siteurl -Regards, - - $sitename administrator \ No newline at end of file +Schöne Grüße, + $sitename Administrator From 10be4f6d29c6abd9a583b5a835acb8240255b261 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jan 2011 10:14:29 +0100 Subject: [PATCH 28/51] german translation of register_verify_eml.tpl --- view/de/register_verify_eml.tpl | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/view/de/register_verify_eml.tpl b/view/de/register_verify_eml.tpl index 60c38d8000..17477c6c19 100644 --- a/view/de/register_verify_eml.tpl +++ b/view/de/register_verify_eml.tpl @@ -1,26 +1,21 @@ -A new user registration request was received at $sitename which requires -your approval. +Ein neuer Nutzer hat sich auf $sitename registriert. Diese Registration +benötigt noch deine Zustimmung. + +Die Anmeldedetails sind Folgende: + +Kompletter Name: $username +URL der Seite: $siteurl +Anmelde Name: $email -The login details are as follows: - -Full Name: $username -Site Location: $siteurl -Login Name: $email - - -To approve this request please visit the following link: - +Um dieser Anmeldung zuzustimmen folge bitte diesem Link: $siteurl/regmod/allow/$hash -To deny the request and remove the account, please visit: - +Um die Anfrage abzulehen und den Account zu entfernen folge diesem Link: $siteurl/regmod/deny/$hash - -Thank you. - +Besten Dank! From 41bba5534eb1eaac800de343a2648682fe70f8cb Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jan 2011 10:23:10 +0100 Subject: [PATCH 29/51] german translation of register_open_eml.tpl --- view/de/register_open_eml.tpl | 37 +++++++++++++++------------------ view/de/register_verify_eml.tpl | 2 +- 2 files changed, 18 insertions(+), 21 deletions(-) diff --git a/view/de/register_open_eml.tpl b/view/de/register_open_eml.tpl index c88eba8d35..2addf32895 100644 --- a/view/de/register_open_eml.tpl +++ b/view/de/register_open_eml.tpl @@ -1,25 +1,22 @@ -Dear $username, - Thank you for registering at $sitename. Your account has been created. -The login details are as follows: +Lieber $username, +danke für die Registrierung bei $sitename. Dein neuer Account wurde angelegt. +Die Anmeldedetails sind die Folgenden. + +Adresse der Seite: $siteurl +Anmelde Name: $email +Passwort: $password + +Du kannst dein Passwort auf der "Einstellungen" Seite deines Accounts ändern +nachdem du dich angemeldet hast. + +Nimm dir bitte ein paar Augenblicke Zeit um die anderen Einstellungen deines +Accounts zu bearbeiten. Standardmäßig ist dein Account privat und versteckt +(unsichtbar für andere Personen). Falls du möchtest kannst du dein Profil +veröffentlichen, damit andere Leute dich im Verzeichnis finden. -Site Location: $siteurl -Login Name: $email -Password: $password +Vielen Dank und Willkommen auf $sitename. -You may change your password from your account "Settings" page after logging -in. - -Please take a few moments to review the other account settings on that page. -By default your account is private and hidden (invisible to other people). -You might wish to change this by publishing your profile - so that it appears -in a directory and other people can find you. - - -Thank you and welcome to $sitename. - -Sincerely, +Mit freundlichem Gruß, $sitename Administrator - - diff --git a/view/de/register_verify_eml.tpl b/view/de/register_verify_eml.tpl index 17477c6c19..7ae432d612 100644 --- a/view/de/register_verify_eml.tpl +++ b/view/de/register_verify_eml.tpl @@ -5,7 +5,7 @@ benötigt noch deine Zustimmung. Die Anmeldedetails sind Folgende: Kompletter Name: $username -URL der Seite: $siteurl +Adresse der Seite: $siteurl Anmelde Name: $email From 38ede4f3be5bab51ac32f0e1f6f361d516fb0440 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jan 2011 10:24:18 +0100 Subject: [PATCH 30/51] german translation of register-link.tpl --- view/de/register-link.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/de/register-link.tpl b/view/de/register-link.tpl index 7f3fca4d6c..cf9d7976d1 100644 --- a/view/de/register-link.tpl +++ b/view/de/register-link.tpl @@ -1 +1 @@ - Register + Registrieren From 57a1731678a144355805610cc80bdd32002cd393 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jan 2011 10:27:23 +0100 Subject: [PATCH 31/51] german translation of pwdreset.tpl --- view/de/pwdreset.tpl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/view/de/pwdreset.tpl b/view/de/pwdreset.tpl index dd609f0610..30aca0748e 100644 --- a/view/de/pwdreset.tpl +++ b/view/de/pwdreset.tpl @@ -1,16 +1,16 @@ -

Password Reset

+

Zurücksetzen des Passworts

-Your password has been reset as requested. +Dein Passwort wurde wie gewünscht zurück gesetzt.

-Your new password is +Dein neues Passwort lautet:

$newpass

-Save or copy your new password - and then click here to login. +Sichere oder kopiere dein neues Passwort und melde dich dann hier an.

-Your password may be changed from the 'Settings' page after successful login. \ No newline at end of file +Nachdem du dich angemeldet hast kannst du dein Passwort auf der "Einstellungen" Seite ändern. \ No newline at end of file From 5863199b8d9ac024b063078c41b0341806904165 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jan 2011 10:58:32 +0100 Subject: [PATCH 32/51] german translation of the profile* files --- view/de/profile-hide-friends.tpl | 6 +++--- view/de/profile-in-directory.tpl | 6 +++--- view/de/profile-in-netdir.tpl | 6 +++--- view/de/profile.php | 6 +++--- view/de/profile_entry_default.tpl | 2 +- view/de/profile_listing_header.tpl | 6 +++--- view/de/profile_photo.tpl | 4 ++-- view/de/profile_tabs.tpl | 4 ++-- 8 files changed, 20 insertions(+), 20 deletions(-) diff --git a/view/de/profile-hide-friends.tpl b/view/de/profile-hide-friends.tpl index 54ade00fec..1d6903825e 100644 --- a/view/de/profile-hide-friends.tpl +++ b/view/de/profile-hide-friends.tpl @@ -1,15 +1,15 @@

-Hide my contact/friend list from viewers of this profile? +Verberge meine Kontaktliste von Leuten die dieses Profil ansehen?

- +
- +
diff --git a/view/de/profile-in-directory.tpl b/view/de/profile-in-directory.tpl index 98af3e59a9..9cc62fc69f 100644 --- a/view/de/profile-in-directory.tpl +++ b/view/de/profile-in-directory.tpl @@ -1,15 +1,15 @@

-Publish your default profile in site directory? +Soll dein Standard-Profil im Verzeichnis dieser Seite veröffentlich werden?

- +
- +
diff --git a/view/de/profile-in-netdir.tpl b/view/de/profile-in-netdir.tpl index be111aa67f..26f45ac902 100644 --- a/view/de/profile-in-netdir.tpl +++ b/view/de/profile-in-netdir.tpl @@ -1,15 +1,15 @@

-Publish your default profile in global social directory? +Soll dein Standard-Profil im globalen Verzeichnis veröffentlicht werden?

- +
- +
diff --git a/view/de/profile.php b/view/de/profile.php index fa7372668c..40b6abd557 100644 --- a/view/de/profile.php +++ b/view/de/profile.php @@ -21,7 +21,7 @@