From 6f04a7e07033c8ca06df47defe1839d5763f1ee6 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 5 May 2013 19:34:56 -0700 Subject: minor fixes related to postgres development --- boot.php | 8 +- include/account.php | 3 +- include/session.php | 28 +- install/database.sql | 4 +- install/update.php | 12 +- util/messages.po | 2949 +++++++++++++++++++++++++------------------------- version.inc | 2 +- 7 files changed, 1503 insertions(+), 1503 deletions(-) diff --git a/boot.php b/boot.php index 1cb30bdc4..401fd458e 100644 --- a/boot.php +++ b/boot.php @@ -38,10 +38,10 @@ require_once('library/Mobile_Detect/Mobile_Detect.php'); require_once('include/BaseObject.php'); require_once('include/features.php'); -define ( 'RED_PLATFORM', 'Red'); -define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); -define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1040 ); +define ( 'RED_PLATFORM', 'Red' ); +define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); +define ( 'ZOT_REVISION', 1 ); +define ( 'DB_UPDATE_VERSION', 1041 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/include/account.php b/include/account.php index 6f3499a0f..1b45a1244 100644 --- a/include/account.php +++ b/include/account.php @@ -107,7 +107,8 @@ function create_account($arr) { $parent = ((x($arr,'parent')) ? intval($arr['parent']) : 0 ); $flags = ((x($arr,'account_flags')) ? intval($arr['account_flags']) : ACCOUNT_OK); $roles = ((x($arr,'account_roles')) ? intval($arr['account_roles']) : 0 ); - + $expires = ((x($arr,'expires')) ? intval($arr['expires']) : '0000-00-00 00:00:00'); + $default_service_class = get_config('system','default_service_class'); if($default_service_class === false) $default_service_class = ''; diff --git a/include/session.php b/include/session.php index 0a6576bdd..a8c466450 100644 --- a/include/session.php +++ b/include/session.php @@ -6,12 +6,12 @@ $session_exists = 0; $session_expire = 180000; -if(! function_exists('ref_session_open')) { + function ref_session_open ($s,$n) { return true; -}} +} + -if(! function_exists('ref_session_read')) { function ref_session_read ($id) { global $session_exists; if(x($id)) @@ -21,9 +21,9 @@ function ref_session_read ($id) { return $r[0]['data']; } return ''; -}} +} + -if(! function_exists('ref_session_write')) { function ref_session_write ($id,$data) { global $session_exists, $session_expire; if(! $id || ! $data) { @@ -44,25 +44,25 @@ function ref_session_write ($id,$data) { dbesc($id), dbesc($default_expire), dbesc($data)); return true; -}} +} + -if(! function_exists('ref_session_close')) { function ref_session_close() { return true; -}} +} + -if(! function_exists('ref_session_destroy')) { function ref_session_destroy ($id) { q("DELETE FROM `session` WHERE `sid` = '%s'", dbesc($id)); return true; -}} +} + -if(! function_exists('ref_session_gc')) { function ref_session_gc($expire) { q("DELETE FROM `session` WHERE `expire` < %d", dbesc(time())); q("OPTIMIZE TABLE `sess_data`"); return true; -}} +} $gc_probability = 50; @@ -71,6 +71,4 @@ ini_set('session.use_only_cookies', 1); ini_set('session.cookie_httponly', 1); -session_set_save_handler ('ref_session_open', 'ref_session_close', - 'ref_session_read', 'ref_session_write', - 'ref_session_destroy', 'ref_session_gc'); +session_set_save_handler ('ref_session_open', 'ref_session_close', 'ref_session_read', 'ref_session_write', 'ref_session_destroy', 'ref_session_gc'); diff --git a/install/database.sql b/install/database.sql index ab60678e4..720c79402 100644 --- a/install/database.sql +++ b/install/database.sql @@ -768,7 +768,7 @@ CREATE TABLE IF NOT EXISTS `session` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `sid` char(255) NOT NULL, `data` text NOT NULL, - `expire` int(10) unsigned NOT NULL, + `expire` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `sid` (`sid`), KEY `expire` (`expire`) @@ -832,7 +832,7 @@ CREATE TABLE IF NOT EXISTS `tokens` ( `id` varchar(40) NOT NULL, `secret` text NOT NULL, `client_id` varchar(20) NOT NULL, - `expires` int(11) NOT NULL, + `expires` bigint(20) unsigned NOT NULL, `scope` varchar(200) NOT NULL, `uid` int(11) NOT NULL, PRIMARY KEY (`id`), diff --git a/install/update.php b/install/update.php index eb796ccf6..31857ff2d 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ \n" "Language-Team: LANGUAGE \n" @@ -22,34 +22,23 @@ msgstr "" msgid "Public Timeline" msgstr "" -#: ../../include/zot.php:474 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:595 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/photo/photo_driver.php:493 +#: ../../include/photo/photo_driver.php:500 +#: ../../include/photo/photo_driver.php:507 ../../include/photos.php:51 +#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:93 +#: ../../mod/profile_photo.php:98 ../../mod/profile_photo.php:223 +#: ../../mod/profile_photo.php:323 ../../mod/profile_photo.php:332 +#: ../../mod/photos.php:97 ../../mod/photos.php:751 ../../mod/photos.php:773 +msgid "Profile Photos" msgstr "" -#: ../../include/bbcode.php:94 ../../include/bbcode.php:411 -msgid "Image/photo" +#: ../../include/zot.php:453 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/bbcode.php:161 +#: ../../include/zot.php:581 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:163 ../../include/text.php:1401 -msgid "post" -msgstr "" - -#: ../../include/bbcode.php:376 ../../include/bbcode.php:396 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/bbcode.php:415 ../../include/bbcode.php:416 -msgid "Encrypted content" +msgid "Unable to verify site signature for %s" msgstr "" #: ../../include/Contact.php:53 ../../include/contact_widgets.php:9 @@ -65,33 +54,33 @@ msgstr "" msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/Contact.php:375 ../../include/conversation.php:835 +#: ../../include/Contact.php:375 ../../include/conversation.php:878 msgid "Poke" msgstr "" -#: ../../include/Contact.php:376 ../../include/conversation.php:829 +#: ../../include/Contact.php:376 ../../include/conversation.php:872 msgid "View Status" msgstr "" -#: ../../include/Contact.php:377 ../../include/conversation.php:830 -#: ../../include/nav.php:75 ../../mod/connections.php:264 +#: ../../include/Contact.php:377 ../../include/nav.php:75 +#: ../../include/conversation.php:873 ../../mod/connections.php:264 #: ../../mod/connections.php:363 msgid "View Profile" msgstr "" -#: ../../include/Contact.php:378 ../../include/conversation.php:831 +#: ../../include/Contact.php:378 ../../include/conversation.php:874 msgid "View Photos" msgstr "" -#: ../../include/Contact.php:379 ../../include/conversation.php:832 +#: ../../include/Contact.php:379 ../../include/conversation.php:875 msgid "Network Posts" msgstr "" -#: ../../include/Contact.php:380 ../../include/conversation.php:833 +#: ../../include/Contact.php:380 ../../include/conversation.php:876 msgid "Edit Contact" msgstr "" -#: ../../include/Contact.php:381 ../../include/conversation.php:834 +#: ../../include/Contact.php:381 ../../include/conversation.php:877 msgid "Send PM" msgstr "" @@ -208,6 +197,27 @@ msgstr "" msgid "School/education:" msgstr "" +#: ../../include/bbcode.php:94 ../../include/bbcode.php:411 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:161 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:163 ../../include/text.php:1401 +msgid "post" +msgstr "" + +#: ../../include/bbcode.php:376 ../../include/bbcode.php:396 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/bbcode.php:415 ../../include/bbcode.php:416 +msgid "Encrypted content" +msgstr "" + #: ../../include/message.php:16 msgid "No recipient provided." msgstr "" @@ -526,268 +536,6 @@ msgstr "" msgid "don't show" msgstr "" -#: ../../include/conversation.php:122 ../../include/text.php:1396 -#: ../../mod/like.php:103 ../../mod/tagger.php:62 ../../mod/subthread.php:89 -msgid "photo" -msgstr "" - -#: ../../include/conversation.php:125 ../../include/text.php:1394 -msgid "event" -msgstr "" - -#: ../../include/conversation.php:133 ../../mod/like.php:103 -#: ../../mod/tagger.php:62 ../../mod/subthread.php:89 -msgid "status" -msgstr "" - -#: ../../include/conversation.php:140 ../../mod/like.php:131 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:143 ../../mod/like.php:133 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:174 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:205 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:209 ../../include/text.php:730 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:227 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../include/conversation.php:572 ../../include/ItemObject.php:129 -msgid "Select" -msgstr "" - -#: ../../include/conversation.php:573 ../../include/ItemObject.php:123 -#: ../../mod/connections.php:304 ../../mod/settings.php:659 -#: ../../mod/group.php:175 ../../mod/admin.php:628 ../../mod/photos.php:1236 -msgid "Delete" -msgstr "" - -#: ../../include/conversation.php:598 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:610 ../../include/text.php:1026 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:611 ../../include/text.php:1041 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:620 -#, php-format -msgid " from %s" -msgstr "" - -#: ../../include/conversation.php:637 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:639 ../../include/conversation.php:982 -#: ../../include/ItemObject.php:245 ../../mod/editpost.php:75 -#: ../../mod/photos.php:1126 ../../mod/message.php:289 -#: ../../mod/message.php:422 -msgid "Please wait" -msgstr "" - -#: ../../include/conversation.php:735 ../../include/text.php:1023 -#: ../../include/text.php:1038 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:739 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:740 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:828 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:897 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:897 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:901 -#, php-format -msgid "%2$d people like this." -msgstr "" - -#: ../../include/conversation.php:903 -#, php-format -msgid "%2$d people don't like this." -msgstr "" - -#: ../../include/conversation.php:909 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:912 -#, php-format -msgid ", and %d other people" -msgstr "" - -#: ../../include/conversation.php:913 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:913 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:938 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:939 ../../mod/message.php:245 -#: ../../mod/message.php:356 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:940 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:941 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:942 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:943 ../../mod/filer.php:35 -msgid "Save to Folder:" -msgstr "" - -#: ../../include/conversation.php:944 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:959 ../../mod/photos.php:1125 -msgid "Share" -msgstr "" - -#: ../../include/conversation.php:961 -msgid "Page link title" -msgstr "" - -#: ../../include/conversation.php:963 ../../mod/editpost.php:67 -#: ../../mod/message.php:287 ../../mod/message.php:419 -msgid "Upload photo" -msgstr "" - -#: ../../include/conversation.php:964 -msgid "upload photo" -msgstr "" - -#: ../../include/conversation.php:965 ../../mod/editpost.php:68 -msgid "Attach file" -msgstr "" - -#: ../../include/conversation.php:966 -msgid "attach file" -msgstr "" - -#: ../../include/conversation.php:967 ../../mod/editpost.php:69 -#: ../../mod/message.php:288 ../../mod/message.php:420 -msgid "Insert web link" -msgstr "" - -#: ../../include/conversation.php:968 -msgid "web link" -msgstr "" - -#: ../../include/conversation.php:969 -msgid "Insert video link" -msgstr "" - -#: ../../include/conversation.php:970 -msgid "video link" -msgstr "" - -#: ../../include/conversation.php:971 -msgid "Insert audio link" -msgstr "" - -#: ../../include/conversation.php:972 -msgid "audio link" -msgstr "" - -#: ../../include/conversation.php:973 ../../mod/editpost.php:73 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:974 -msgid "set location" -msgstr "" - -#: ../../include/conversation.php:975 ../../mod/editpost.php:74 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:976 -msgid "clear location" -msgstr "" - -#: ../../include/conversation.php:978 ../../mod/editpost.php:87 -msgid "Set title" -msgstr "" - -#: ../../include/conversation.php:981 ../../mod/editpost.php:89 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:983 ../../mod/editpost.php:76 -msgid "Permission settings" -msgstr "" - -#: ../../include/conversation.php:984 -msgid "permissions" -msgstr "" - -#: ../../include/conversation.php:992 ../../mod/editpost.php:84 -msgid "Public post" -msgstr "" - -#: ../../include/conversation.php:994 ../../mod/editpost.php:90 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: ../../include/conversation.php:1000 ../../include/ItemObject.php:548 -#: ../../mod/editpost.php:95 ../../mod/photos.php:1145 -msgid "Preview" -msgstr "" - #: ../../include/enotify.php:36 msgid "Red Notification" msgstr "" @@ -978,22 +726,22 @@ msgstr "" #: ../../include/attach.php:237 ../../include/attach.php:251 #: ../../include/attach.php:272 ../../include/attach.php:464 #: ../../include/items.php:4475 ../../include/photos.php:15 -#: ../../mod/profile_photo.php:185 ../../mod/profile_photo.php:198 #: ../../mod/invite.php:13 ../../mod/invite.php:99 ../../mod/allfriends.php:10 -#: ../../mod/setup.php:157 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/viewconnections.php:33 ../../mod/viewconnections.php:38 -#: ../../mod/suggest.php:32 ../../mod/common.php:43 ../../mod/item.php:147 -#: ../../mod/connections.php:146 ../../mod/settings.php:578 -#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 -#: ../../mod/editpost.php:10 ../../mod/viewsrc.php:12 -#: ../../mod/fsuggest.php:78 ../../mod/group.php:15 ../../mod/profiles.php:163 -#: ../../mod/profiles.php:471 ../../mod/intro.php:50 ../../mod/photos.php:74 -#: ../../mod/photos.php:688 ../../mod/message.php:197 ../../mod/mood.php:111 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/viewconnections.php:33 +#: ../../mod/viewconnections.php:38 ../../mod/suggest.php:32 +#: ../../mod/common.php:43 ../../mod/profile_photo.php:185 +#: ../../mod/profile_photo.php:198 ../../mod/connections.php:146 +#: ../../mod/settings.php:578 ../../mod/delegate.php:6 +#: ../../mod/editpost.php:10 ../../mod/setup.php:157 ../../mod/photos.php:74 +#: ../../mod/photos.php:639 ../../mod/viewsrc.php:12 ../../mod/fsuggest.php:78 +#: ../../mod/group.php:15 ../../mod/profiles.php:163 +#: ../../mod/profiles.php:471 ../../mod/intro.php:50 ../../mod/crepair.php:115 +#: ../../mod/poke.php:128 ../../mod/message.php:197 ../../mod/mood.php:111 #: ../../mod/manage.php:6 ../../mod/network.php:7 ../../mod/new_channel.php:66 #: ../../mod/new_channel.php:97 ../../mod/nogroup.php:25 -#: ../../mod/notifications.php:66 ../../mod/poke.php:128 -#: ../../mod/channel.php:105 ../../mod/register.php:60 ../../mod/regmod.php:18 -#: ../../mod/events.php:134 ../../index.php:174 ../../index.php:336 +#: ../../mod/notifications.php:66 ../../mod/channel.php:105 +#: ../../mod/register.php:60 ../../mod/regmod.php:18 ../../mod/events.php:134 +#: ../../mod/item.php:147 ../../index.php:174 ../../index.php:336 msgid "Permission denied." msgstr "" @@ -1794,8 +1542,12 @@ msgstr "" msgid "poke" msgstr "" -#: ../../include/text.php:731 -msgid "ping" +#: ../../include/text.php:730 ../../include/conversation.php:209 +msgid "poked" +msgstr "" + +#: ../../include/text.php:731 +msgid "ping" msgstr "" #: ../../include/text.php:731 @@ -1998,10 +1750,23 @@ msgstr "" msgid "bytes" msgstr "" +#: ../../include/text.php:1023 ../../include/text.php:1038 +#: ../../include/conversation.php:778 +msgid "remove" +msgstr "" + #: ../../include/text.php:1023 ../../include/text.php:1038 msgid "[remove]" msgstr "" +#: ../../include/text.php:1026 ../../include/conversation.php:641 +msgid "Categories:" +msgstr "" + +#: ../../include/text.php:1041 ../../include/conversation.php:642 +msgid "Filed under:" +msgstr "" + #: ../../include/text.php:1057 ../../include/text.php:1069 msgid "Click to open/close" msgstr "" @@ -2018,6 +1783,15 @@ msgstr "" msgid "Select an alternate language" msgstr "" +#: ../../include/text.php:1394 ../../include/conversation.php:125 +msgid "event" +msgstr "" + +#: ../../include/text.php:1396 ../../include/conversation.php:122 +#: ../../mod/like.php:103 ../../mod/tagger.php:62 ../../mod/subthread.php:89 +msgid "photo" +msgstr "" + #: ../../include/text.php:1398 msgid "activity" msgstr "" @@ -2030,6 +1804,247 @@ msgstr "" msgid "Item filed" msgstr "" +#: ../../include/conversation.php:133 ../../mod/like.php:103 +#: ../../mod/tagger.php:62 ../../mod/subthread.php:89 +msgid "status" +msgstr "" + +#: ../../include/conversation.php:140 ../../mod/like.php:131 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:143 ../../mod/like.php:133 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../include/conversation.php:174 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:205 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:227 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../include/conversation.php:603 ../../include/ItemObject.php:129 +msgid "Select" +msgstr "" + +#: ../../include/conversation.php:604 ../../include/ItemObject.php:123 +#: ../../mod/connections.php:304 ../../mod/settings.php:659 +#: ../../mod/photos.php:1154 ../../mod/group.php:177 ../../mod/admin.php:628 +msgid "Delete" +msgstr "" + +#: ../../include/conversation.php:629 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:651 +#, php-format +msgid " from %s" +msgstr "" + +#: ../../include/conversation.php:668 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:670 ../../include/conversation.php:1025 +#: ../../include/ItemObject.php:245 ../../mod/editpost.php:75 +#: ../../mod/photos.php:1044 ../../mod/message.php:289 +#: ../../mod/message.php:422 +msgid "Please wait" +msgstr "" + +#: ../../include/conversation.php:782 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:783 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:871 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:940 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:940 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:944 +#, php-format +msgid "%2$d people like this." +msgstr "" + +#: ../../include/conversation.php:946 +#, php-format +msgid "%2$d people don't like this." +msgstr "" + +#: ../../include/conversation.php:952 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:955 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: ../../include/conversation.php:956 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:956 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:981 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:982 ../../mod/message.php:245 +#: ../../mod/message.php:356 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../include/conversation.php:983 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:984 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:985 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:986 ../../mod/filer.php:35 +msgid "Save to Folder:" +msgstr "" + +#: ../../include/conversation.php:987 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1002 ../../mod/photos.php:1043 +msgid "Share" +msgstr "" + +#: ../../include/conversation.php:1004 +msgid "Page link title" +msgstr "" + +#: ../../include/conversation.php:1006 ../../mod/editpost.php:67 +#: ../../mod/message.php:287 ../../mod/message.php:419 +msgid "Upload photo" +msgstr "" + +#: ../../include/conversation.php:1007 +msgid "upload photo" +msgstr "" + +#: ../../include/conversation.php:1008 ../../mod/editpost.php:68 +msgid "Attach file" +msgstr "" + +#: ../../include/conversation.php:1009 +msgid "attach file" +msgstr "" + +#: ../../include/conversation.php:1010 ../../mod/editpost.php:69 +#: ../../mod/message.php:288 ../../mod/message.php:420 +msgid "Insert web link" +msgstr "" + +#: ../../include/conversation.php:1011 +msgid "web link" +msgstr "" + +#: ../../include/conversation.php:1012 +msgid "Insert video link" +msgstr "" + +#: ../../include/conversation.php:1013 +msgid "video link" +msgstr "" + +#: ../../include/conversation.php:1014 +msgid "Insert audio link" +msgstr "" + +#: ../../include/conversation.php:1015 +msgid "audio link" +msgstr "" + +#: ../../include/conversation.php:1016 ../../mod/editpost.php:73 +msgid "Set your location" +msgstr "" + +#: ../../include/conversation.php:1017 +msgid "set location" +msgstr "" + +#: ../../include/conversation.php:1018 ../../mod/editpost.php:74 +msgid "Clear browser location" +msgstr "" + +#: ../../include/conversation.php:1019 +msgid "clear location" +msgstr "" + +#: ../../include/conversation.php:1021 ../../mod/editpost.php:87 +msgid "Set title" +msgstr "" + +#: ../../include/conversation.php:1024 ../../mod/editpost.php:89 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1026 ../../mod/editpost.php:76 +msgid "Permission settings" +msgstr "" + +#: ../../include/conversation.php:1027 +msgid "permissions" +msgstr "" + +#: ../../include/conversation.php:1035 ../../mod/editpost.php:84 +msgid "Public post" +msgstr "" + +#: ../../include/conversation.php:1037 ../../mod/editpost.php:90 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: ../../include/conversation.php:1043 ../../include/ItemObject.php:548 +#: ../../mod/editpost.php:95 ../../mod/photos.php:1063 +msgid "Preview" +msgstr "" + +#: ../../include/dba/dba_driver.php:48 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + #: ../../include/items.php:112 ../../mod/like.php:55 ../../mod/group.php:70 #: ../../mod/profperm.php:28 ../../index.php:335 msgid "Permission denied" @@ -2067,15 +2082,6 @@ msgstr "" msgid "Archives" msgstr "" -#: ../../include/network.php:1097 -msgid "view full size" -msgstr "" - -#: ../../include/dba/dba_driver.php:48 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - #: ../../include/follow.php:21 msgid "Channel is blocked on this site." msgstr "" @@ -2111,48 +2117,38 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "" -#: ../../include/group.php:221 +#: ../../include/group.php:222 msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/group.php:240 +#: ../../include/group.php:241 msgid "All Channels" msgstr "" -#: ../../include/group.php:262 +#: ../../include/group.php:263 msgid "edit" msgstr "" -#: ../../include/group.php:283 +#: ../../include/group.php:284 msgid "Collections" msgstr "" -#: ../../include/group.php:284 +#: ../../include/group.php:285 msgid "Edit collection" msgstr "" -#: ../../include/group.php:285 +#: ../../include/group.php:286 msgid "Create a new collection" msgstr "" -#: ../../include/group.php:286 +#: ../../include/group.php:287 msgid "Channels not in any collection" msgstr "" -#: ../../include/group.php:288 ../../mod/network.php:164 +#: ../../include/group.php:289 ../../mod/network.php:164 msgid "add" msgstr "" -#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:493 -#: ../../include/photo/photo_driver.php:500 -#: ../../include/photo/photo_driver.php:507 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:93 ../../mod/profile_photo.php:98 -#: ../../mod/profile_photo.php:223 ../../mod/profile_photo.php:323 -#: ../../mod/profile_photo.php:332 ../../mod/photos.php:97 -#: ../../mod/photos.php:800 ../../mod/photos.php:822 -msgid "Profile Photos" -msgstr "" - #: ../../include/photos.php:88 #, php-format msgid "Image exceeds website size limit of %lu bytes" @@ -2174,8 +2170,8 @@ msgstr "" msgid "Photo Albums" msgstr "" -#: ../../include/photos.php:277 ../../mod/photos.php:838 -#: ../../mod/photos.php:1370 +#: ../../include/photos.php:277 ../../mod/photos.php:789 +#: ../../mod/photos.php:1288 msgid "Upload New Photos" msgstr "" @@ -2184,8 +2180,8 @@ msgid "Delete this item?" msgstr "" #: ../../include/js_strings.php:6 ../../include/ItemObject.php:538 -#: ../../mod/photos.php:1143 ../../mod/photos.php:1181 -#: ../../mod/photos.php:1208 +#: ../../mod/photos.php:1061 ../../mod/photos.php:1099 +#: ../../mod/photos.php:1126 msgid "Comment" msgstr "" @@ -2274,15 +2270,19 @@ msgstr "" msgid "timeago.numbers" msgstr "" -#: ../../include/plugin.php:400 ../../include/plugin.php:402 +#: ../../include/network.php:1097 +msgid "view full size" +msgstr "" + +#: ../../include/plugin.php:435 ../../include/plugin.php:437 msgid "Click here to upgrade." msgstr "" -#: ../../include/plugin.php:408 +#: ../../include/plugin.php:443 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/plugin.php:413 +#: ../../include/plugin.php:448 msgid "This action is not available under your subscription plan." msgstr "" @@ -2397,7 +2397,7 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/ItemObject.php:105 ../../mod/photos.php:977 +#: ../../include/ItemObject.php:105 ../../mod/photos.php:928 msgid "Private Message" msgstr "" @@ -2430,7 +2430,7 @@ msgstr "" msgid "add tag" msgstr "" -#: ../../include/ItemObject.php:179 ../../mod/photos.php:1123 +#: ../../include/ItemObject.php:179 ../../mod/photos.php:1041 msgid "I like this (toggle)" msgstr "" @@ -2438,7 +2438,7 @@ msgstr "" msgid "like" msgstr "" -#: ../../include/ItemObject.php:180 ../../mod/photos.php:1124 +#: ../../include/ItemObject.php:180 ../../mod/photos.php:1042 msgid "I don't like this (toggle)" msgstr "" @@ -2483,26 +2483,25 @@ msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:536 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1179 ../../mod/photos.php:1206 +#: ../../include/ItemObject.php:536 ../../mod/photos.php:1059 +#: ../../mod/photos.php:1097 ../../mod/photos.php:1124 msgid "This is you" msgstr "" #: ../../include/ItemObject.php:539 ../../mod/invite.php:138 -#: ../../mod/setup.php:257 ../../mod/setup.php:298 -#: ../../mod/connections.php:372 ../../mod/settings.php:596 -#: ../../mod/settings.php:708 ../../mod/settings.php:737 -#: ../../mod/settings.php:760 ../../mod/settings.php:831 -#: ../../mod/settings.php:997 ../../mod/crepair.php:166 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:83 -#: ../../mod/profiles.php:523 ../../mod/import.php:339 ../../mod/admin.php:397 -#: ../../mod/admin.php:621 ../../mod/admin.php:757 ../../mod/admin.php:956 -#: ../../mod/admin.php:1043 ../../mod/photos.php:723 ../../mod/photos.php:815 -#: ../../mod/photos.php:1105 ../../mod/photos.php:1144 -#: ../../mod/photos.php:1182 ../../mod/photos.php:1209 +#: ../../mod/import.php:339 ../../mod/connections.php:372 +#: ../../mod/settings.php:596 ../../mod/settings.php:708 +#: ../../mod/settings.php:737 ../../mod/settings.php:760 +#: ../../mod/settings.php:831 ../../mod/settings.php:997 +#: ../../mod/setup.php:257 ../../mod/setup.php:298 ../../mod/photos.php:674 +#: ../../mod/photos.php:766 ../../mod/photos.php:1023 +#: ../../mod/photos.php:1062 ../../mod/photos.php:1100 +#: ../../mod/photos.php:1127 ../../mod/fsuggest.php:108 ../../mod/group.php:83 +#: ../../mod/profiles.php:523 ../../mod/crepair.php:166 +#: ../../mod/admin.php:397 ../../mod/admin.php:621 ../../mod/admin.php:757 +#: ../../mod/admin.php:956 ../../mod/admin.php:1043 ../../mod/poke.php:166 #: ../../mod/message.php:290 ../../mod/message.php:421 ../../mod/mood.php:134 -#: ../../mod/poke.php:166 ../../mod/events.php:456 -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../mod/events.php:456 ../../view/theme/redbasic/php/config.php:131 #: ../../view/theme/redbasic/php/config.php:148 msgid "Submit" msgstr "" @@ -2562,97 +2561,17 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../mod/profile_photo.php:54 -msgid "Image uploaded but image cropping failed." +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../mod/profile_photo.php:102 -msgid "Image resize failed." +#: ../../mod/invite.php:47 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../mod/profile_photo.php:139 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../mod/profile_photo.php:161 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/profile_photo.php:170 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/profile_photo.php:212 ../../mod/profile_photo.php:250 -msgid "Photo not available." -msgstr "" - -#: ../../mod/profile_photo.php:269 -msgid "Upload File:" -msgstr "" - -#: ../../mod/profile_photo.php:270 -msgid "Select a profile:" -msgstr "" - -#: ../../mod/profile_photo.php:271 -msgid "Upload Profile Photo" -msgstr "" - -#: ../../mod/profile_photo.php:272 -msgid "Upload" -msgstr "" - -#: ../../mod/profile_photo.php:276 ../../mod/settings.php:961 -msgid "or" -msgstr "" - -#: ../../mod/profile_photo.php:276 -msgid "skip this step" -msgstr "" - -#: ../../mod/profile_photo.php:276 -msgid "select a photo from your photo albums" -msgstr "" - -#: ../../mod/profile_photo.php:290 -msgid "Crop Image" -msgstr "" - -#: ../../mod/profile_photo.php:291 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../mod/profile_photo.php:293 -msgid "Done Editing" -msgstr "" - -#: ../../mod/profile_photo.php:326 -msgid "Image uploaded successfully." -msgstr "" - -#: ../../mod/profile_photo.php:328 -msgid "Image upload failed." -msgstr "" - -#: ../../mod/profile_photo.php:335 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:47 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../mod/invite.php:71 -msgid "Please join us on Red" +#: ../../mod/invite.php:71 +msgid "Please join us on Red" msgstr "" #: ../../mod/invite.php:82 @@ -2748,1456 +2667,1667 @@ msgstr "" msgid "No friends to display." msgstr "" -#: ../../mod/setup.php:123 -msgid "Red Identity/Communications Server - Setup" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../mod/setup.php:129 -msgid "Could not connect to database." +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../mod/setup.php:133 -msgid "Could not create table." +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../mod/setup.php:139 -msgid "Your site database has been installed." +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../mod/setup.php:144 -msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." +#: ../../mod/api.php:105 ../../mod/settings.php:952 ../../mod/settings.php:957 +#: ../../mod/settings.php:980 ../../mod/settings.php:982 +#: ../../mod/settings.php:983 ../../mod/settings.php:984 +#: ../../mod/profiles.php:501 +msgid "Yes" msgstr "" -#: ../../mod/setup.php:145 ../../mod/setup.php:212 ../../mod/setup.php:528 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../mod/api.php:106 ../../mod/settings.php:952 ../../mod/settings.php:957 +#: ../../mod/settings.php:980 ../../mod/settings.php:982 +#: ../../mod/settings.php:983 ../../mod/settings.php:984 +#: ../../mod/profiles.php:502 +msgid "No" msgstr "" -#: ../../mod/setup.php:209 -msgid "System check" +#: ../../mod/apps.php:8 +msgid "No installed applications." msgstr "" -#: ../../mod/setup.php:213 ../../mod/events.php:349 -msgid "Next" +#: ../../mod/apps.php:13 +msgid "Applications" msgstr "" -#: ../../mod/setup.php:214 -msgid "Check again" +#: ../../mod/attach.php:9 +msgid "Item not available." msgstr "" -#: ../../mod/setup.php:235 -msgid "Database connection" +#: ../../mod/viewconnections.php:28 ../../mod/display.php:9 +#: ../../mod/directory.php:23 ../../mod/photos.php:556 +#: ../../mod/community.php:18 ../../mod/search.php:80 +msgid "Public access denied." msgstr "" -#: ../../mod/setup.php:236 -msgid "" -"In order to install Red we need to know how to connect to your database." +#: ../../mod/viewconnections.php:57 +msgid "No connections." msgstr "" -#: ../../mod/setup.php:237 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/viewconnections.php:69 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../mod/setup.php:238 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/viewconnections.php:83 +msgid "View Connnections" msgstr "" -#: ../../mod/setup.php:242 -msgid "Database Server Name" +#: ../../mod/import.php:31 +msgid "Nothing to import." msgstr "" -#: ../../mod/setup.php:243 -msgid "Database Login Name" +#: ../../mod/import.php:53 +msgid "Unable to download data from old server" msgstr "" -#: ../../mod/setup.php:244 -msgid "Database Login Password" +#: ../../mod/import.php:59 +msgid "Imported file is empty." msgstr "" -#: ../../mod/setup.php:245 -msgid "Database Name" +#: ../../mod/import.php:82 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../mod/setup.php:247 ../../mod/setup.php:287 -msgid "Site administrator email address" +#: ../../mod/import.php:100 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../mod/setup.php:247 ../../mod/setup.php:287 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../mod/import.php:110 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../mod/setup.php:248 ../../mod/setup.php:289 -msgid "Website URL" +#: ../../mod/import.php:319 +msgid "Import completed." msgstr "" -#: ../../mod/setup.php:248 ../../mod/setup.php:289 -msgid "Please use SSL (https) URL if available." +#: ../../mod/import.php:328 +msgid "Import Channel" msgstr "" -#: ../../mod/setup.php:251 ../../mod/setup.php:292 -msgid "Please select a default timezone for your website" +#: ../../mod/import.php:329 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file. Only identity and connections/relationships will be " +"imported. Importation of content is not yet available." msgstr "" -#: ../../mod/setup.php:277 -msgid "Site settings" +#: ../../mod/import.php:330 +msgid "File to Upload" msgstr "" -#: ../../mod/setup.php:332 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/import.php:331 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../mod/setup.php:333 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../mod/import.php:332 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../mod/setup.php:337 -msgid "PHP executable path" +#: ../../mod/import.php:333 +msgid "Your old login email address" msgstr "" -#: ../../mod/setup.php:337 +#: ../../mod/import.php:334 +msgid "Your old login password" +msgstr "" + +#: ../../mod/import.php:335 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../mod/setup.php:342 -msgid "Command line PHP" +#: ../../mod/import.php:336 +msgid "Make this hub my primary location" msgstr "" -#: ../../mod/setup.php:351 +#: ../../mod/post.php:114 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -#: ../../mod/setup.php:352 -msgid "This is required for message delivery to work." +#: ../../mod/post.php:124 +#, php-format +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/setup.php:354 -msgid "PHP register_argc_argv" +#: ../../mod/chanview.php:74 ../../mod/magic.php:58 ../../mod/page.php:21 +#: ../../mod/wall_upload.php:35 +msgid "Channel not found." msgstr "" -#: ../../mod/setup.php:375 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../mod/chanview.php:90 +msgid "toggle full screen mode" msgstr "" -#: ../../mod/setup.php:376 +#: ../../mod/suggest.php:41 msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../mod/setup.php:378 -msgid "Generate encryption keys" +#: ../../mod/suggest.php:58 +msgid "Ignore/Hide" msgstr "" -#: ../../mod/setup.php:385 -msgid "libCurl PHP module" +#: ../../mod/common.php:10 +msgid "No channel." msgstr "" -#: ../../mod/setup.php:386 -msgid "GD graphics PHP module" +#: ../../mod/common.php:47 +msgid "Common connections" msgstr "" -#: ../../mod/setup.php:387 -msgid "OpenSSL PHP module" +#: ../../mod/common.php:52 +msgid "No connections in common." msgstr "" -#: ../../mod/setup.php:388 -msgid "mysqli PHP module" +#: ../../mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/setup.php:389 -msgid "mb_string PHP module" +#: ../../mod/profile_photo.php:54 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../mod/setup.php:390 -msgid "mcrypt PHP module" +#: ../../mod/profile_photo.php:102 +msgid "Image resize failed." msgstr "" -#: ../../mod/setup.php:395 ../../mod/setup.php:397 -msgid "Apache mod_rewrite module" +#: ../../mod/profile_photo.php:139 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../mod/setup.php:395 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../mod/profile_photo.php:161 +#, php-format +msgid "Image exceeds size limit of %d" msgstr "" -#: ../../mod/setup.php:401 ../../mod/setup.php:404 -msgid "proc_open" +#: ../../mod/profile_photo.php:170 +msgid "Unable to process image." msgstr "" -#: ../../mod/setup.php:401 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../mod/profile_photo.php:212 ../../mod/profile_photo.php:250 +msgid "Photo not available." msgstr "" -#: ../../mod/setup.php:409 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/profile_photo.php:269 +msgid "Upload File:" msgstr "" -#: ../../mod/setup.php:413 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../mod/profile_photo.php:270 +msgid "Select a profile:" msgstr "" -#: ../../mod/setup.php:417 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/profile_photo.php:271 +msgid "Upload Profile Photo" msgstr "" -#: ../../mod/setup.php:421 -msgid "Error: mysqli PHP module required but not installed." +#: ../../mod/profile_photo.php:272 +msgid "Upload" msgstr "" -#: ../../mod/setup.php:425 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/profile_photo.php:276 ../../mod/settings.php:961 +msgid "or" msgstr "" -#: ../../mod/setup.php:429 -msgid "Error: mcrypt PHP module required but not installed." +#: ../../mod/profile_photo.php:276 +msgid "skip this step" msgstr "" -#: ../../mod/setup.php:445 -msgid "" -"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." +#: ../../mod/profile_photo.php:276 +msgid "select a photo from your photo albums" msgstr "" -#: ../../mod/setup.php:446 -msgid "" -"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." +#: ../../mod/profile_photo.php:290 +msgid "Crop Image" msgstr "" -#: ../../mod/setup.php:447 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../mod/profile_photo.php:291 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../mod/setup.php:448 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../mod/profile_photo.php:293 +msgid "Done Editing" msgstr "" -#: ../../mod/setup.php:451 -msgid ".htconfig.php is writable" +#: ../../mod/profile_photo.php:326 +msgid "Image uploaded successfully." msgstr "" -#: ../../mod/setup.php:461 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../mod/profile_photo.php:328 +msgid "Image upload failed." msgstr "" -#: ../../mod/setup.php:462 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/tpl/smarty3/ under the Red top level " -"folder." +#: ../../mod/profile_photo.php:335 +#, php-format +msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/setup.php:463 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../mod/connections.php:59 +msgid "Could not access contact record." msgstr "" -#: ../../mod/setup.php:464 +#: ../../mod/connections.php:73 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../mod/connections.php:112 ../../mod/intro.php:29 +msgid "Connection updated." +msgstr "" + +#: ../../mod/connections.php:114 +msgid "Failed to update connection record." +msgstr "" + +#: ../../mod/connections.php:167 +msgid "Could not access address book record." +msgstr "" + +#: ../../mod/connections.php:181 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../mod/connections.php:188 +msgid "Channel has been unblocked" +msgstr "" + +#: ../../mod/connections.php:189 +msgid "Channel has been blocked" +msgstr "" + +#: ../../mod/connections.php:191 ../../mod/connections.php:201 +#: ../../mod/connections.php:211 ../../mod/connections.php:221 +#: ../../mod/connections.php:234 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../mod/connections.php:198 +msgid "Channel has been unignored" +msgstr "" + +#: ../../mod/connections.php:199 +msgid "Channel has been ignored" +msgstr "" + +#: ../../mod/connections.php:208 +msgid "Channel has been unarchived" +msgstr "" + +#: ../../mod/connections.php:209 +msgid "Channel has been archived" +msgstr "" + +#: ../../mod/connections.php:218 +msgid "Channel has been unhidden" +msgstr "" + +#: ../../mod/connections.php:219 +msgid "Channel has been hidden" +msgstr "" + +#: ../../mod/connections.php:231 +msgid "Channel has been approved" +msgstr "" + +#: ../../mod/connections.php:232 +msgid "Channel has been unapproved" +msgstr "" + +#: ../../mod/connections.php:247 +msgid "Contact has been removed." +msgstr "" + +#: ../../mod/connections.php:267 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../mod/connections.php:271 +msgid "Refresh Permissions" +msgstr "" + +#: ../../mod/connections.php:274 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../mod/connections.php:278 ../../mod/connections.php:408 +#: ../../mod/admin.php:630 +msgid "Unblock" +msgstr "" + +#: ../../mod/connections.php:278 ../../mod/connections.php:408 +#: ../../mod/intro.php:14 ../../mod/intro.php:99 ../../mod/admin.php:629 +msgid "Block" +msgstr "" + +#: ../../mod/connections.php:281 +msgid "Block or Unblock this connection" +msgstr "" + +#: ../../mod/connections.php:285 ../../mod/connections.php:409 +msgid "Unignore" +msgstr "" + +#: ../../mod/connections.php:285 ../../mod/connections.php:409 +#: ../../mod/intro.php:17 ../../mod/intro.php:100 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 +#: ../../mod/notifications.php:206 +msgid "Ignore" +msgstr "" + +#: ../../mod/connections.php:288 +msgid "Ignore or Unignore this connection" +msgstr "" + +#: ../../mod/connections.php:291 +msgid "Unarchive" +msgstr "" + +#: ../../mod/connections.php:291 +msgid "Archive" +msgstr "" + +#: ../../mod/connections.php:294 +msgid "Archive or Unarchive this connection" +msgstr "" + +#: ../../mod/connections.php:297 +msgid "Unhide" +msgstr "" + +#: ../../mod/connections.php:297 +msgid "Hide" +msgstr "" + +#: ../../mod/connections.php:300 +msgid "Hide or Unhide this connection" +msgstr "" + +#: ../../mod/connections.php:307 +msgid "Delete this connection" +msgstr "" + +#: ../../mod/connections.php:334 ../../mod/network.php:375 +msgid "Me" +msgstr "" + +#: ../../mod/connections.php:336 ../../mod/network.php:376 +msgid "Best Friends" +msgstr "" + +#: ../../mod/connections.php:338 ../../mod/network.php:379 +msgid "Former Friends" +msgstr "" + +#: ../../mod/connections.php:339 ../../mod/network.php:380 +msgid "Acquaintances" +msgstr "" + +#: ../../mod/connections.php:340 +msgid "Unknown" +msgstr "" + +#: ../../mod/connections.php:350 ../../mod/connections.php:370 +msgid "Approve this connection" +msgstr "" + +#: ../../mod/connections.php:350 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../mod/connections.php:358 +msgid "Automatic Permissions Settings" +msgstr "" + +#: ../../mod/connections.php:358 +#, php-format +msgid "Connections: settings for %s" +msgstr "" + +#: ../../mod/connections.php:362 msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/tpl/smarty3/ only--not the template files (.tpl) that it contains." +"When receiving a channel introduction, any permissions provided here will be " +"applied to the new connection automatically and the introduction approved. " +"Leave this page if you do not wish to use this feature." msgstr "" -#: ../../mod/setup.php:467 -msgid "view/tpl/smarty3 is writable" +#: ../../mod/connections.php:364 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../mod/setup.php:479 +#: ../../mod/connections.php:371 +msgid "Connection has no permissions!" +msgstr "" + +#: ../../mod/connections.php:373 +msgid "Profile Visibility" +msgstr "" + +#: ../../mod/connections.php:374 +#, php-format msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../mod/connections.php:375 +msgid "Contact Information / Notes" +msgstr "" + +#: ../../mod/connections.php:376 +msgid "Edit contact notes" +msgstr "" + +#: ../../mod/connections.php:378 +msgid "Their Settings" +msgstr "" + +#: ../../mod/connections.php:379 +msgid "My Settings" msgstr "" -#: ../../mod/setup.php:481 -msgid "Url rewrite is working" +#: ../../mod/connections.php:381 +msgid "Forum Members" msgstr "" -#: ../../mod/setup.php:491 -msgid "" -"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." +#: ../../mod/connections.php:382 +msgid "Soapbox" msgstr "" -#: ../../mod/setup.php:515 -msgid "Errors encountered creating database tables." +#: ../../mod/connections.php:383 +msgid "Full Sharing" msgstr "" -#: ../../mod/setup.php:526 -msgid "

What next

" +#: ../../mod/connections.php:384 +msgid "Cautious Sharing" msgstr "" -#: ../../mod/setup.php:527 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/connections.php:385 +msgid "Follow Only" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../mod/connections.php:386 ../../mod/photos.php:710 +#: ../../mod/photos.php:1019 +msgid "Permissions" msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../mod/connections.php:387 +msgid "Advanced Permissions" msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../mod/connections.php:388 +msgid "Quick Links" msgstr "" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../mod/connections.php:392 +#, php-format +msgid "Visit %s's profile - %s" msgstr "" -#: ../../mod/api.php:105 ../../mod/settings.php:952 ../../mod/settings.php:957 -#: ../../mod/settings.php:980 ../../mod/settings.php:982 -#: ../../mod/settings.php:983 ../../mod/settings.php:984 -#: ../../mod/profiles.php:501 -msgid "Yes" +#: ../../mod/connections.php:393 +msgid "Block/Unblock contact" msgstr "" -#: ../../mod/api.php:106 ../../mod/settings.php:952 ../../mod/settings.php:957 -#: ../../mod/settings.php:980 ../../mod/settings.php:982 -#: ../../mod/settings.php:983 ../../mod/settings.php:984 -#: ../../mod/profiles.php:502 -msgid "No" +#: ../../mod/connections.php:394 +msgid "Ignore contact" msgstr "" -#: ../../mod/apps.php:8 -msgid "No installed applications." +#: ../../mod/connections.php:395 +msgid "Repair URL settings" msgstr "" -#: ../../mod/apps.php:13 -msgid "Applications" +#: ../../mod/connections.php:396 +msgid "View conversations" msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../mod/connections.php:398 +msgid "Delete contact" msgstr "" -#: ../../mod/viewconnections.php:28 ../../mod/display.php:9 -#: ../../mod/directory.php:23 ../../mod/photos.php:556 -#: ../../mod/community.php:18 ../../mod/search.php:80 -msgid "Public access denied." +#: ../../mod/connections.php:401 +msgid "Last update:" msgstr "" -#: ../../mod/viewconnections.php:57 -msgid "No connections." +#: ../../mod/connections.php:403 +msgid "Update public posts" msgstr "" -#: ../../mod/viewconnections.php:69 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../mod/connections.php:405 +msgid "Update now" msgstr "" -#: ../../mod/viewconnections.php:83 -msgid "View Connnections" +#: ../../mod/connections.php:410 +msgid "Currently blocked" msgstr "" -#: ../../mod/chanview.php:74 ../../mod/wall_upload.php:35 -#: ../../mod/magic.php:58 ../../mod/page.php:21 -msgid "Channel not found." +#: ../../mod/connections.php:411 +msgid "Currently ignored" msgstr "" -#: ../../mod/chanview.php:90 -msgid "toggle full screen mode" +#: ../../mod/connections.php:412 +msgid "Currently archived" msgstr "" -#: ../../mod/suggest.php:41 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/connections.php:413 +msgid "Currently pending" msgstr "" -#: ../../mod/suggest.php:58 -msgid "Ignore/Hide" +#: ../../mod/connections.php:414 ../../mod/intro.php:95 +#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 +msgid "Hide this contact from others" msgstr "" -#: ../../mod/common.php:10 -msgid "No channel." +#: ../../mod/connections.php:414 +msgid "" +"Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/common.php:47 -msgid "Common connections" +#: ../../mod/connections.php:450 ../../mod/connections.php:521 +msgid "Blocked" msgstr "" -#: ../../mod/common.php:52 -msgid "No connections in common." +#: ../../mod/connections.php:455 ../../mod/connections.php:528 +msgid "Ignored" msgstr "" -#: ../../mod/tagger.php:95 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../mod/connections.php:460 ../../mod/connections.php:542 +msgid "Hidden" msgstr "" -#: ../../mod/item.php:120 -msgid "Unable to locate original post." +#: ../../mod/connections.php:465 ../../mod/connections.php:535 +msgid "Archived" msgstr "" -#: ../../mod/item.php:281 -msgid "Empty post discarded." +#: ../../mod/connections.php:470 ../../mod/network.php:311 +msgid "New" msgstr "" -#: ../../mod/item.php:696 -msgid "System error. Post not saved." +#: ../../mod/connections.php:475 +msgid "All" msgstr "" -#: ../../mod/item.php:965 ../../mod/wall_upload.php:41 -msgid "Wall Photos" +#: ../../mod/connections.php:496 +msgid "Suggestions" msgstr "" -#: ../../mod/connections.php:59 -msgid "Could not access contact record." +#: ../../mod/connections.php:499 +msgid "Suggest new connections" msgstr "" -#: ../../mod/connections.php:73 -msgid "Could not locate selected profile." +#: ../../mod/connections.php:505 +msgid "Show pending (new) connections" msgstr "" -#: ../../mod/connections.php:112 ../../mod/intro.php:29 -msgid "Connection updated." +#: ../../mod/connections.php:508 +msgid "All Connections" msgstr "" -#: ../../mod/connections.php:114 -msgid "Failed to update connection record." +#: ../../mod/connections.php:511 +msgid "Show all connections" msgstr "" -#: ../../mod/connections.php:167 -msgid "Could not access address book record." +#: ../../mod/connections.php:514 +msgid "Unblocked" msgstr "" -#: ../../mod/connections.php:181 -msgid "Refresh failed - channel is currently unavailable." +#: ../../mod/connections.php:517 +msgid "Only show unblocked connections" msgstr "" -#: ../../mod/connections.php:188 -msgid "Channel has been unblocked" +#: ../../mod/connections.php:524 +msgid "Only show blocked connections" msgstr "" -#: ../../mod/connections.php:189 -msgid "Channel has been blocked" +#: ../../mod/connections.php:531 +msgid "Only show ignored connections" msgstr "" -#: ../../mod/connections.php:191 ../../mod/connections.php:201 -#: ../../mod/connections.php:211 ../../mod/connections.php:221 -#: ../../mod/connections.php:234 -msgid "Unable to set address book parameters." +#: ../../mod/connections.php:538 +msgid "Only show archived connections" msgstr "" -#: ../../mod/connections.php:198 -msgid "Channel has been unignored" +#: ../../mod/connections.php:545 +msgid "Only show hidden connections" msgstr "" -#: ../../mod/connections.php:199 -msgid "Channel has been ignored" +#: ../../mod/connections.php:587 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../mod/connections.php:208 -msgid "Channel has been unarchived" +#: ../../mod/connections.php:588 ../../mod/nogroup.php:41 +msgid "Edit contact" msgstr "" -#: ../../mod/connections.php:209 -msgid "Channel has been archived" +#: ../../mod/connections.php:614 +msgid "Search your connections" msgstr "" -#: ../../mod/connections.php:218 -msgid "Channel has been unhidden" +#: ../../mod/connections.php:615 +msgid "Finding: " msgstr "" -#: ../../mod/connections.php:219 -msgid "Channel has been hidden" +#: ../../mod/settings.php:43 +msgid "Account settings" msgstr "" -#: ../../mod/connections.php:231 -msgid "Channel has been approved" +#: ../../mod/settings.php:49 +msgid "Channel settings" msgstr "" -#: ../../mod/connections.php:232 -msgid "Channel has been unapproved" +#: ../../mod/settings.php:55 +msgid "Additional features" msgstr "" -#: ../../mod/connections.php:247 -msgid "Contact has been removed." +#: ../../mod/settings.php:61 +msgid "Feature settings" msgstr "" -#: ../../mod/connections.php:267 -#, php-format -msgid "View %s's profile" +#: ../../mod/settings.php:67 +msgid "Display settings" msgstr "" -#: ../../mod/connections.php:271 -msgid "Refresh Permissions" +#: ../../mod/settings.php:73 +msgid "Connected apps" msgstr "" -#: ../../mod/connections.php:274 -msgid "Fetch updated permissions" +#: ../../mod/settings.php:79 +msgid "Export channel" msgstr "" -#: ../../mod/connections.php:278 ../../mod/connections.php:408 -#: ../../mod/admin.php:630 -msgid "Unblock" +#: ../../mod/settings.php:91 +msgid "Automatic Permissions (Advanced)" msgstr "" -#: ../../mod/connections.php:278 ../../mod/connections.php:408 -#: ../../mod/intro.php:14 ../../mod/intro.php:99 ../../mod/admin.php:629 -msgid "Block" +#: ../../mod/settings.php:146 +msgid "Missing some important data!" msgstr "" -#: ../../mod/connections.php:281 -msgid "Block or Unblock this connection" +#: ../../mod/settings.php:149 ../../mod/settings.php:622 +msgid "Update" msgstr "" -#: ../../mod/connections.php:285 ../../mod/connections.php:409 -msgid "Unignore" +#: ../../mod/settings.php:259 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/connections.php:285 ../../mod/connections.php:409 -#: ../../mod/intro.php:17 ../../mod/intro.php:100 -#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 -#: ../../mod/notifications.php:206 -msgid "Ignore" +#: ../../mod/settings.php:263 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/connections.php:288 -msgid "Ignore or Unignore this connection" +#: ../../mod/settings.php:276 +msgid "Password changed." msgstr "" -#: ../../mod/connections.php:291 -msgid "Unarchive" +#: ../../mod/settings.php:278 +msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/connections.php:291 -msgid "Archive" +#: ../../mod/settings.php:292 +msgid "Not valid email." msgstr "" -#: ../../mod/connections.php:294 -msgid "Archive or Unarchive this connection" +#: ../../mod/settings.php:295 +msgid "Protected email. Cannot change to that email." msgstr "" -#: ../../mod/connections.php:297 -msgid "Unhide" +#: ../../mod/settings.php:304 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/connections.php:297 -msgid "Hide" +#: ../../mod/settings.php:530 +msgid "Settings updated." msgstr "" -#: ../../mod/connections.php:300 -msgid "Hide or Unhide this connection" +#: ../../mod/settings.php:595 ../../mod/settings.php:621 +#: ../../mod/settings.php:657 +msgid "Add application" msgstr "" -#: ../../mod/connections.php:307 -msgid "Delete this connection" +#: ../../mod/settings.php:597 ../../mod/settings.php:623 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 +msgid "Cancel" msgstr "" -#: ../../mod/connections.php:334 ../../mod/network.php:375 -msgid "Me" +#: ../../mod/settings.php:598 ../../mod/settings.php:624 +#: ../../mod/crepair.php:148 ../../mod/admin.php:624 +msgid "Name" msgstr "" -#: ../../mod/connections.php:336 ../../mod/network.php:376 -msgid "Best Friends" +#: ../../mod/settings.php:599 ../../mod/settings.php:625 +msgid "Consumer Key" msgstr "" -#: ../../mod/connections.php:338 ../../mod/network.php:379 -msgid "Former Friends" +#: ../../mod/settings.php:600 ../../mod/settings.php:626 +msgid "Consumer Secret" msgstr "" -#: ../../mod/connections.php:339 ../../mod/network.php:380 -msgid "Acquaintances" +#: ../../mod/settings.php:601 ../../mod/settings.php:627 +msgid "Redirect" msgstr "" -#: ../../mod/connections.php:340 -msgid "Unknown" +#: ../../mod/settings.php:602 ../../mod/settings.php:628 +msgid "Icon url" msgstr "" -#: ../../mod/connections.php:350 ../../mod/connections.php:370 -msgid "Approve this connection" +#: ../../mod/settings.php:613 +msgid "You can't edit this application." msgstr "" -#: ../../mod/connections.php:350 -msgid "Accept connection to allow communication" +#: ../../mod/settings.php:656 +msgid "Connected Apps" msgstr "" -#: ../../mod/connections.php:358 -msgid "Automatic Permissions Settings" +#: ../../mod/settings.php:660 +msgid "Client key starts with" msgstr "" -#: ../../mod/connections.php:358 -#, php-format -msgid "Connections: settings for %s" +#: ../../mod/settings.php:661 +msgid "No name" msgstr "" -#: ../../mod/connections.php:362 -msgid "" -"When receiving a channel introduction, any permissions provided here will be " -"applied to the new connection automatically and the introduction approved. " -"Leave this page if you do not wish to use this feature." +#: ../../mod/settings.php:662 +msgid "Remove authorization" msgstr "" -#: ../../mod/connections.php:364 -msgid "Slide to adjust your degree of friendship" +#: ../../mod/settings.php:673 +msgid "No feature settings configured" msgstr "" -#: ../../mod/connections.php:371 -msgid "Connection has no permissions!" +#: ../../mod/settings.php:681 +msgid "Feature Settings" msgstr "" -#: ../../mod/connections.php:373 -msgid "Profile Visibility" +#: ../../mod/settings.php:704 +msgid "Account Settings" msgstr "" -#: ../../mod/connections.php:374 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../mod/settings.php:705 +msgid "Password Settings" msgstr "" -#: ../../mod/connections.php:375 -msgid "Contact Information / Notes" +#: ../../mod/settings.php:706 +msgid "New Password:" msgstr "" -#: ../../mod/connections.php:376 -msgid "Edit contact notes" +#: ../../mod/settings.php:707 +msgid "Confirm:" msgstr "" -#: ../../mod/connections.php:378 -msgid "Their Settings" +#: ../../mod/settings.php:707 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/connections.php:379 -msgid "My Settings" +#: ../../mod/settings.php:709 ../../mod/settings.php:1006 +msgid "Email Address:" msgstr "" -#: ../../mod/connections.php:381 -msgid "Forum Members" +#: ../../mod/settings.php:710 +msgid "Remove Account" msgstr "" -#: ../../mod/connections.php:382 -msgid "Soapbox" +#: ../../mod/settings.php:711 +msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/connections.php:383 -msgid "Full Sharing" +#: ../../mod/settings.php:728 +msgid "Off" msgstr "" -#: ../../mod/connections.php:384 -msgid "Cautious Sharing" +#: ../../mod/settings.php:728 +msgid "On" msgstr "" -#: ../../mod/connections.php:385 -msgid "Follow Only" +#: ../../mod/settings.php:735 +msgid "Additional Features" msgstr "" -#: ../../mod/connections.php:386 ../../mod/photos.php:759 -#: ../../mod/photos.php:1101 -msgid "Permissions" +#: ../../mod/settings.php:759 +msgid "Connector Settings" msgstr "" -#: ../../mod/connections.php:387 -msgid "Advanced Permissions" +#: ../../mod/settings.php:789 ../../mod/admin.php:356 +msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/connections.php:388 -msgid "Quick Links" +#: ../../mod/settings.php:829 +msgid "Display Settings" msgstr "" -#: ../../mod/connections.php:392 -#, php-format -msgid "Visit %s's profile - %s" +#: ../../mod/settings.php:835 +msgid "Display Theme:" msgstr "" -#: ../../mod/connections.php:393 -msgid "Block/Unblock contact" +#: ../../mod/settings.php:836 +msgid "Mobile Theme:" msgstr "" -#: ../../mod/connections.php:394 -msgid "Ignore contact" +#: ../../mod/settings.php:837 +msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/connections.php:395 -msgid "Repair URL settings" +#: ../../mod/settings.php:837 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/connections.php:396 -msgid "View conversations" +#: ../../mod/settings.php:838 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/connections.php:398 -msgid "Delete contact" +#: ../../mod/settings.php:838 +msgid "Maximum of 100 items" msgstr "" -#: ../../mod/connections.php:401 -msgid "Last update:" +#: ../../mod/settings.php:839 +msgid "Don't show emoticons" msgstr "" -#: ../../mod/connections.php:403 -msgid "Update public posts" +#: ../../mod/settings.php:875 +msgid "Nobody except yourself" msgstr "" -#: ../../mod/connections.php:405 -msgid "Update now" +#: ../../mod/settings.php:876 +msgid "Only those you specifically allow" msgstr "" -#: ../../mod/connections.php:410 -msgid "Currently blocked" +#: ../../mod/settings.php:877 +msgid "Anybody in your address book" msgstr "" -#: ../../mod/connections.php:411 -msgid "Currently ignored" +#: ../../mod/settings.php:878 +msgid "Anybody on this website" msgstr "" -#: ../../mod/connections.php:412 -msgid "Currently archived" +#: ../../mod/settings.php:879 +msgid "Anybody in this network" msgstr "" -#: ../../mod/connections.php:413 -msgid "Currently pending" +#: ../../mod/settings.php:880 +msgid "Anybody on the internet" msgstr "" -#: ../../mod/connections.php:414 ../../mod/intro.php:95 -#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 -msgid "Hide this contact from others" +#: ../../mod/settings.php:952 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/connections.php:414 -msgid "" -"Replies/likes to your public posts may still be visible" +#: ../../mod/settings.php:957 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/connections.php:450 ../../mod/connections.php:521 -msgid "Blocked" +#: ../../mod/settings.php:966 +msgid "Your channel address is" msgstr "" -#: ../../mod/connections.php:455 ../../mod/connections.php:528 -msgid "Ignored" +#: ../../mod/settings.php:977 +msgid "Automatically expire posts after this many days:" msgstr "" -#: ../../mod/connections.php:460 ../../mod/connections.php:542 -msgid "Hidden" +#: ../../mod/settings.php:977 +msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: ../../mod/connections.php:465 ../../mod/connections.php:535 -msgid "Archived" +#: ../../mod/settings.php:978 +msgid "Advanced expiration settings" msgstr "" -#: ../../mod/connections.php:470 ../../mod/network.php:311 -msgid "New" +#: ../../mod/settings.php:979 +msgid "Advanced Expiration" msgstr "" -#: ../../mod/connections.php:475 -msgid "All" +#: ../../mod/settings.php:980 +msgid "Expire posts:" msgstr "" -#: ../../mod/connections.php:496 -msgid "Suggestions" +#: ../../mod/settings.php:982 +msgid "Expire starred posts:" msgstr "" -#: ../../mod/connections.php:499 -msgid "Suggest new connections" +#: ../../mod/settings.php:983 +msgid "Expire photos:" msgstr "" -#: ../../mod/connections.php:505 -msgid "Show pending (new) connections" +#: ../../mod/settings.php:984 +msgid "Only expire posts by others:" msgstr "" -#: ../../mod/connections.php:508 -msgid "All Connections" +#: ../../mod/settings.php:995 +msgid "Channel Settings" msgstr "" -#: ../../mod/connections.php:511 -msgid "Show all connections" +#: ../../mod/settings.php:1004 +msgid "Basic Settings" msgstr "" -#: ../../mod/connections.php:514 -msgid "Unblocked" +#: ../../mod/settings.php:1007 +msgid "Your Timezone:" msgstr "" - -#: ../../mod/connections.php:517 -msgid "Only show unblocked connections" + +#: ../../mod/settings.php:1008 +msgid "Default Post Location:" msgstr "" -#: ../../mod/connections.php:524 -msgid "Only show blocked connections" +#: ../../mod/settings.php:1009 +msgid "Use Browser Location:" msgstr "" -#: ../../mod/connections.php:531 -msgid "Only show ignored connections" +#: ../../mod/settings.php:1012 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/connections.php:538 -msgid "Only show archived connections" +#: ../../mod/settings.php:1016 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/connections.php:545 -msgid "Only show hidden connections" +#: ../../mod/settings.php:1016 +msgid "May reduce spam activity" msgstr "" -#: ../../mod/connections.php:587 -#, php-format -msgid "%1$s [%2$s]" +#: ../../mod/settings.php:1017 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/connections.php:588 ../../mod/nogroup.php:41 -msgid "Edit contact" +#: ../../mod/settings.php:1018 +msgid "(click to open/close)" msgstr "" -#: ../../mod/connections.php:614 -msgid "Search your connections" +#: ../../mod/settings.php:1031 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/connections.php:615 -msgid "Finding: " +#: ../../mod/settings.php:1031 +msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/settings.php:43 -msgid "Account settings" +#: ../../mod/settings.php:1034 +msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:49 -msgid "Channel settings" +#: ../../mod/settings.php:1035 +msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:55 -msgid "Additional features" +#: ../../mod/settings.php:1036 +msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:61 -msgid "Feature settings" +#: ../../mod/settings.php:1037 +msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:67 -msgid "Display settings" +#: ../../mod/settings.php:1038 +msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:73 -msgid "Connected apps" +#: ../../mod/settings.php:1039 +msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:79 -msgid "Export channel" +#: ../../mod/settings.php:1040 +msgid "You receive an introduction" msgstr "" -#: ../../mod/settings.php:91 -msgid "Automatic Permissions (Advanced)" +#: ../../mod/settings.php:1041 +msgid "Your introductions are confirmed" msgstr "" -#: ../../mod/settings.php:146 -msgid "Missing some important data!" +#: ../../mod/settings.php:1042 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:149 ../../mod/settings.php:622 -msgid "Update" +#: ../../mod/settings.php:1043 +msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:259 -msgid "Passwords do not match. Password unchanged." +#: ../../mod/settings.php:1044 +msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:263 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../mod/settings.php:1045 +msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:276 -msgid "Password changed." +#: ../../mod/settings.php:1046 +msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:278 -msgid "Password update failed. Please try again." +#: ../../mod/settings.php:1047 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:292 -msgid "Not valid email." +#: ../../mod/settings.php:1050 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:295 -msgid "Protected email. Cannot change to that email." +#: ../../mod/settings.php:1051 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:304 -msgid "System failure storing new email. Please try again." +#: ../../mod/tagrm.php:41 +msgid "Tag removed" msgstr "" -#: ../../mod/settings.php:530 -msgid "Settings updated." +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" msgstr "" -#: ../../mod/settings.php:595 ../../mod/settings.php:621 -#: ../../mod/settings.php:657 -msgid "Add application" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " msgstr "" -#: ../../mod/settings.php:597 ../../mod/settings.php:623 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 -msgid "Cancel" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +msgid "Remove" msgstr "" -#: ../../mod/settings.php:598 ../../mod/settings.php:624 -#: ../../mod/crepair.php:148 ../../mod/admin.php:624 -msgid "Name" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." msgstr "" -#: ../../mod/settings.php:599 ../../mod/settings.php:625 -msgid "Consumer Key" +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" msgstr "" -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -msgid "Consumer Secret" +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." msgstr "" -#: ../../mod/settings.php:601 ../../mod/settings.php:627 -msgid "Redirect" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" msgstr "" -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -msgid "Icon url" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" msgstr "" -#: ../../mod/settings.php:613 -msgid "You can't edit this application." +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" msgstr "" -#: ../../mod/settings.php:656 -msgid "Connected Apps" +#: ../../mod/delegate.php:131 +msgid "Add" msgstr "" -#: ../../mod/settings.php:660 -msgid "Client key starts with" +#: ../../mod/delegate.php:132 +msgid "No entries." msgstr "" -#: ../../mod/settings.php:661 -msgid "No name" +#: ../../mod/directory.php:103 ../../mod/profiles.php:578 +msgid "Age: " msgstr "" -#: ../../mod/settings.php:662 -msgid "Remove authorization" +#: ../../mod/directory.php:106 +msgid "Gender: " msgstr "" -#: ../../mod/settings.php:673 -msgid "No feature settings configured" +#: ../../mod/directory.php:161 +msgid "Finding:" msgstr "" -#: ../../mod/settings.php:681 -msgid "Feature Settings" +#: ../../mod/directory.php:169 +msgid "more" msgstr "" -#: ../../mod/settings.php:704 -msgid "Account Settings" +#: ../../mod/directory.php:169 +msgid "back" msgstr "" -#: ../../mod/settings.php:705 -msgid "Password Settings" +#: ../../mod/directory.php:176 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../mod/settings.php:706 -msgid "New Password:" +#: ../../mod/dirfind.php:26 +msgid "People Search" msgstr "" -#: ../../mod/settings.php:707 -msgid "Confirm:" +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" msgstr "" -#: ../../mod/settings.php:707 -msgid "Leave password fields blank unless changing" +#: ../../mod/update_channel.php:43 ../../mod/update_community.php:18 +#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/settings.php:709 ../../mod/settings.php:1006 -msgid "Email Address:" +#: ../../mod/editpost.php:17 +msgid "Item not found" msgstr "" -#: ../../mod/settings.php:710 -msgid "Remove Account" +#: ../../mod/editpost.php:28 +msgid "Item is not editable" msgstr "" -#: ../../mod/settings.php:711 -msgid "Warning: This action is permanent and cannot be reversed." +#: ../../mod/editpost.php:37 +msgid "Edit post" msgstr "" -#: ../../mod/settings.php:728 -msgid "Off" +#: ../../mod/editpost.php:70 +msgid "Insert YouTube video" msgstr "" -#: ../../mod/settings.php:728 -msgid "On" +#: ../../mod/editpost.php:71 +msgid "Insert Vorbis [.ogg] video" msgstr "" -#: ../../mod/settings.php:735 -msgid "Additional Features" +#: ../../mod/editpost.php:72 +msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/settings.php:759 -msgid "Connector Settings" +#: ../../mod/siteinfo.php:51 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/settings.php:789 ../../mod/admin.php:356 -msgid "No special theme for mobile devices" +#: ../../mod/siteinfo.php:65 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/settings.php:829 -msgid "Display Settings" +#: ../../mod/siteinfo.php:78 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/settings.php:835 -msgid "Display Theme:" +#: ../../mod/siteinfo.php:81 +msgid "Red" msgstr "" -#: ../../mod/settings.php:836 -msgid "Mobile Theme:" +#: ../../mod/siteinfo.php:82 +msgid "" +"This is Red - another decentralized, distributed communications project by " +"the folks at Friendica." msgstr "" -#: ../../mod/settings.php:837 -msgid "Update browser every xx seconds" +#: ../../mod/siteinfo.php:84 +msgid "Running at web location" msgstr "" -#: ../../mod/settings.php:837 -msgid "Minimum of 10 seconds, no maximum" +#: ../../mod/siteinfo.php:85 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica and/or Red project." msgstr "" -#: ../../mod/settings.php:838 -msgid "Maximum number of conversations to load at any time:" +#: ../../mod/siteinfo.php:86 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/settings.php:838 -msgid "Maximum of 100 items" +#: ../../mod/siteinfo.php:89 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" msgstr "" -#: ../../mod/settings.php:839 -msgid "Don't show emoticons" +#: ../../mod/setup.php:123 +msgid "Red Identity/Communications Server - Setup" msgstr "" -#: ../../mod/settings.php:875 -msgid "Nobody except yourself" +#: ../../mod/setup.php:129 +msgid "Could not connect to database." msgstr "" -#: ../../mod/settings.php:876 -msgid "Only those you specifically allow" +#: ../../mod/setup.php:133 +msgid "Could not create table." msgstr "" -#: ../../mod/settings.php:877 -msgid "Anybody in your address book" +#: ../../mod/setup.php:139 +msgid "Your site database has been installed." msgstr "" -#: ../../mod/settings.php:878 -msgid "Anybody on this website" +#: ../../mod/setup.php:144 +msgid "" +"You may need to import the file \"install/database.sql\" manually using " +"phpmyadmin or mysql." msgstr "" -#: ../../mod/settings.php:879 -msgid "Anybody in this network" +#: ../../mod/setup.php:145 ../../mod/setup.php:212 ../../mod/setup.php:528 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../mod/settings.php:880 -msgid "Anybody on the internet" +#: ../../mod/setup.php:209 +msgid "System check" msgstr "" -#: ../../mod/settings.php:952 -msgid "Publish your default profile in the network directory" +#: ../../mod/setup.php:213 ../../mod/events.php:349 +msgid "Next" msgstr "" -#: ../../mod/settings.php:957 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../mod/setup.php:214 +msgid "Check again" msgstr "" -#: ../../mod/settings.php:966 -msgid "Your channel address is" +#: ../../mod/setup.php:235 +msgid "Database connection" msgstr "" -#: ../../mod/settings.php:977 -msgid "Automatically expire posts after this many days:" +#: ../../mod/setup.php:236 +msgid "" +"In order to install Red we need to know how to connect to your database." msgstr "" -#: ../../mod/settings.php:977 -msgid "If empty, posts will not expire. Expired posts will be deleted" +#: ../../mod/setup.php:237 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../mod/settings.php:978 -msgid "Advanced expiration settings" +#: ../../mod/setup.php:238 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../mod/settings.php:979 -msgid "Advanced Expiration" +#: ../../mod/setup.php:242 +msgid "Database Server Name" msgstr "" -#: ../../mod/settings.php:980 -msgid "Expire posts:" +#: ../../mod/setup.php:243 +msgid "Database Login Name" msgstr "" -#: ../../mod/settings.php:982 -msgid "Expire starred posts:" +#: ../../mod/setup.php:244 +msgid "Database Login Password" msgstr "" -#: ../../mod/settings.php:983 -msgid "Expire photos:" +#: ../../mod/setup.php:245 +msgid "Database Name" msgstr "" -#: ../../mod/settings.php:984 -msgid "Only expire posts by others:" +#: ../../mod/setup.php:247 ../../mod/setup.php:287 +msgid "Site administrator email address" msgstr "" -#: ../../mod/settings.php:995 -msgid "Channel Settings" +#: ../../mod/setup.php:247 ../../mod/setup.php:287 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../mod/settings.php:1004 -msgid "Basic Settings" +#: ../../mod/setup.php:248 ../../mod/setup.php:289 +msgid "Website URL" msgstr "" -#: ../../mod/settings.php:1007 -msgid "Your Timezone:" +#: ../../mod/setup.php:248 ../../mod/setup.php:289 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../mod/settings.php:1008 -msgid "Default Post Location:" +#: ../../mod/setup.php:251 ../../mod/setup.php:292 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../mod/settings.php:1009 -msgid "Use Browser Location:" +#: ../../mod/setup.php:277 +msgid "Site settings" msgstr "" -#: ../../mod/settings.php:1012 -msgid "Security and Privacy Settings" +#: ../../mod/setup.php:332 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../mod/settings.php:1016 -msgid "Maximum Friend Requests/Day:" +#: ../../mod/setup.php:333 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../mod/settings.php:1016 -msgid "May reduce spam activity" +#: ../../mod/setup.php:337 +msgid "PHP executable path" msgstr "" -#: ../../mod/settings.php:1017 -msgid "Default Post Permissions" +#: ../../mod/setup.php:337 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../mod/settings.php:1018 -msgid "(click to open/close)" +#: ../../mod/setup.php:342 +msgid "Command line PHP" msgstr "" -#: ../../mod/settings.php:1031 -msgid "Maximum private messages per day from unknown people:" +#: ../../mod/setup.php:351 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../mod/settings.php:1031 -msgid "Useful to reduce spamming" +#: ../../mod/setup.php:352 +msgid "This is required for message delivery to work." msgstr "" -#: ../../mod/settings.php:1034 -msgid "Notification Settings" +#: ../../mod/setup.php:354 +msgid "PHP register_argc_argv" msgstr "" -#: ../../mod/settings.php:1035 -msgid "By default post a status message when:" +#: ../../mod/setup.php:375 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../mod/settings.php:1036 -msgid "accepting a friend request" +#: ../../mod/setup.php:376 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../mod/settings.php:1037 -msgid "joining a forum/community" +#: ../../mod/setup.php:378 +msgid "Generate encryption keys" msgstr "" -#: ../../mod/settings.php:1038 -msgid "making an interesting profile change" +#: ../../mod/setup.php:385 +msgid "libCurl PHP module" msgstr "" -#: ../../mod/settings.php:1039 -msgid "Send a notification email when:" +#: ../../mod/setup.php:386 +msgid "GD graphics PHP module" msgstr "" -#: ../../mod/settings.php:1040 -msgid "You receive an introduction" +#: ../../mod/setup.php:387 +msgid "OpenSSL PHP module" msgstr "" -#: ../../mod/settings.php:1041 -msgid "Your introductions are confirmed" +#: ../../mod/setup.php:388 +msgid "mysqli PHP module" msgstr "" -#: ../../mod/settings.php:1042 -msgid "Someone writes on your profile wall" +#: ../../mod/setup.php:389 +msgid "mb_string PHP module" msgstr "" -#: ../../mod/settings.php:1043 -msgid "Someone writes a followup comment" +#: ../../mod/setup.php:390 +msgid "mcrypt PHP module" msgstr "" -#: ../../mod/settings.php:1044 -msgid "You receive a private message" +#: ../../mod/setup.php:395 ../../mod/setup.php:397 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../mod/settings.php:1045 -msgid "You receive a friend suggestion" +#: ../../mod/setup.php:395 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../mod/settings.php:1046 -msgid "You are tagged in a post" +#: ../../mod/setup.php:401 ../../mod/setup.php:404 +msgid "proc_open" msgstr "" -#: ../../mod/settings.php:1047 -msgid "You are poked/prodded/etc. in a post" +#: ../../mod/setup.php:401 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../mod/settings.php:1050 -msgid "Advanced Account/Page Type Settings" +#: ../../mod/setup.php:409 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../mod/settings.php:1051 -msgid "Change the behaviour of this account for special situations" +#: ../../mod/setup.php:413 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" +#: ../../mod/setup.php:417 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" +#: ../../mod/setup.php:421 +msgid "Error: mysqli PHP module required but not installed." msgstr "" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " +#: ../../mod/setup.php:425 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 -msgid "Remove" +#: ../../mod/setup.php:429 +msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." +#: ../../mod/setup.php:445 +msgid "" +"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." msgstr "" -#: ../../mod/crepair.php:104 -msgid "Contact update failed." +#: ../../mod/setup.php:446 +msgid "" +"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." msgstr "" -#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 -msgid "Contact not found." +#: ../../mod/setup.php:447 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" +#: ../../mod/setup.php:448 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." +#: ../../mod/setup.php:451 +msgid ".htconfig.php is writable" msgstr "" -#: ../../mod/crepair.php:138 +#: ../../mod/setup.php:461 msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" +#: ../../mod/setup.php:462 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/tpl/smarty3/ under the Red top level " +"folder." msgstr "" -#: ../../mod/crepair.php:149 -msgid "Account Nickname" +#: ../../mod/setup.php:463 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" +#: ../../mod/setup.php:464 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/tpl/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: ../../mod/crepair.php:151 -msgid "Account URL" +#: ../../mod/setup.php:467 +msgid "view/tpl/smarty3 is writable" msgstr "" -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" +#: ../../mod/setup.php:479 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." msgstr "" -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" +#: ../../mod/setup.php:481 +msgid "Url rewrite is working" msgstr "" -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" +#: ../../mod/setup.php:491 +msgid "" +"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." msgstr "" -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" +#: ../../mod/setup.php:515 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" +#: ../../mod/setup.php:526 +msgid "

What next

" msgstr "" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." +#: ../../mod/setup.php:527 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" +#: ../../mod/photos.php:83 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." +#: ../../mod/photos.php:103 +msgid "Album not found." msgstr "" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" +#: ../../mod/photos.php:125 ../../mod/photos.php:767 +msgid "Delete Album" msgstr "" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" +#: ../../mod/photos.php:165 ../../mod/photos.php:1024 +msgid "Delete Photo" msgstr "" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" +#: ../../mod/photos.php:492 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: ../../mod/delegate.php:131 -msgid "Add" +#: ../../mod/photos.php:492 +msgid "a photo" msgstr "" -#: ../../mod/delegate.php:132 -msgid "No entries." +#: ../../mod/photos.php:566 +msgid "No photos selected" msgstr "" -#: ../../mod/directory.php:103 ../../mod/profiles.php:578 -msgid "Age: " +#: ../../mod/photos.php:620 +msgid "Access to this item is restricted." msgstr "" -#: ../../mod/directory.php:106 -msgid "Gender: " +#: ../../mod/photos.php:653 ../../mod/photos.php:751 ../../mod/photos.php:773 +#: ../../mod/photos.php:1229 ../../mod/photos.php:1241 +msgid "Contact Photos" msgstr "" -#: ../../mod/directory.php:161 -msgid "Finding:" +#: ../../mod/photos.php:684 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: ../../mod/directory.php:169 -msgid "more" +#: ../../mod/photos.php:687 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." msgstr "" -#: ../../mod/directory.php:169 -msgid "back" +#: ../../mod/photos.php:702 +msgid "Upload Photos" msgstr "" -#: ../../mod/directory.php:176 -msgid "No entries (some entries may be hidden)." +#: ../../mod/photos.php:706 ../../mod/photos.php:762 +msgid "New album name: " msgstr "" -#: ../../mod/dirfind.php:26 -msgid "People Search" +#: ../../mod/photos.php:707 +msgid "or existing album name: " msgstr "" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" +#: ../../mod/photos.php:708 +msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/update_channel.php:43 ../../mod/update_community.php:18 -#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 -msgid "[Embedded content - reload page to view]" +#: ../../mod/photos.php:777 +msgid "Edit Album" msgstr "" -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" +#: ../../mod/photos.php:783 +msgid "Show Newest First" msgstr "" -#: ../../mod/editpost.php:17 -msgid "Item not found" +#: ../../mod/photos.php:785 +msgid "Show Oldest First" msgstr "" -#: ../../mod/editpost.php:28 -msgid "Item is not editable" +#: ../../mod/photos.php:828 ../../mod/photos.php:1271 +msgid "View Photo" msgstr "" -#: ../../mod/editpost.php:37 -msgid "Edit post" +#: ../../mod/photos.php:863 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/editpost.php:70 -msgid "Insert YouTube video" +#: ../../mod/photos.php:865 +msgid "Photo not available" msgstr "" -#: ../../mod/editpost.php:71 -msgid "Insert Vorbis [.ogg] video" +#: ../../mod/photos.php:921 +msgid "View photo" msgstr "" -#: ../../mod/editpost.php:72 -msgid "Insert Vorbis [.ogg] audio" +#: ../../mod/photos.php:921 +msgid "Edit photo" msgstr "" -#: ../../mod/siteinfo.php:51 -#, php-format -msgid "Version %s" +#: ../../mod/photos.php:922 +msgid "Use as profile photo" msgstr "" -#: ../../mod/siteinfo.php:65 -msgid "Installed plugins/addons/apps:" +#: ../../mod/photos.php:950 +msgid "View Full Size" msgstr "" -#: ../../mod/siteinfo.php:78 -msgid "No installed plugins/addons/apps" +#: ../../mod/photos.php:1009 +msgid "Rotate CW (right)" msgstr "" -#: ../../mod/siteinfo.php:81 -msgid "Red" +#: ../../mod/photos.php:1010 +msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/siteinfo.php:82 -msgid "" -"This is Red - another decentralized, distributed communications project by " -"the folks at Friendica." +#: ../../mod/photos.php:1012 +msgid "New album name" msgstr "" -#: ../../mod/siteinfo.php:84 -msgid "Running at web location" +#: ../../mod/photos.php:1015 +msgid "Caption" msgstr "" -#: ../../mod/siteinfo.php:85 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica and/or Red project." +#: ../../mod/photos.php:1017 +msgid "Add a Tag" msgstr "" -#: ../../mod/siteinfo.php:86 -msgid "Bug reports and issues: please visit" +#: ../../mod/photos.php:1021 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: ../../mod/siteinfo.php:89 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" +#: ../../mod/photos.php:1277 +msgid "View Album" msgstr "" -#: ../../mod/fbrowser.php:113 -msgid "Files" +#: ../../mod/photos.php:1286 +msgid "Recent Photos" msgstr "" #: ../../mod/filer.php:35 @@ -4208,6 +4338,11 @@ msgstr "" msgid "Channel added" msgstr "" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/crepair.php:129 +msgid "Contact not found." +msgstr "" + #: ../../mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "" @@ -4245,7 +4380,7 @@ msgstr "" msgid "Create a collection of connections." msgstr "" -#: ../../mod/group.php:89 ../../mod/group.php:182 +#: ../../mod/group.php:89 ../../mod/group.php:184 msgid "Collection Name: " msgstr "" @@ -4257,19 +4392,19 @@ msgstr "" msgid "Unable to remove collection." msgstr "" -#: ../../mod/group.php:181 +#: ../../mod/group.php:183 msgid "Collection Editor" msgstr "" -#: ../../mod/group.php:194 +#: ../../mod/group.php:196 msgid "Members" msgstr "" -#: ../../mod/group.php:196 +#: ../../mod/group.php:198 msgid "All Connected Channels" msgstr "" -#: ../../mod/group.php:229 +#: ../../mod/group.php:231 msgid "Click on a channel to add or remove." msgstr "" @@ -4529,114 +4664,41 @@ msgstr "" msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/profiles.php:618 ../../boot.php:1533 -msgid "Change profile photo" -msgstr "" - -#: ../../mod/profiles.php:619 ../../boot.php:1540 -msgid "Create New Profile" -msgstr "" - -#: ../../mod/profiles.php:630 ../../boot.php:1554 -msgid "Profile Image" -msgstr "" - -#: ../../mod/profiles.php:633 ../../boot.php:1557 -msgid "visible to everybody" -msgstr "" - -#: ../../mod/profiles.php:634 ../../boot.php:1558 -msgid "Edit visibility" -msgstr "" - -#: ../../mod/home.php:31 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../mod/rmagic.php:56 -msgid "Remote Authentication" -msgstr "" - -#: ../../mod/rmagic.php:57 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../mod/rmagic.php:58 -msgid "Authenticate" -msgstr "" - -#: ../../mod/import.php:31 -msgid "Nothing to import." -msgstr "" - -#: ../../mod/import.php:53 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../mod/import.php:59 -msgid "Imported file is empty." -msgstr "" - -#: ../../mod/import.php:82 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../mod/import.php:100 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../mod/import.php:110 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../mod/import.php:319 -msgid "Import completed." -msgstr "" - -#: ../../mod/import.php:328 -msgid "Import Channel" -msgstr "" - -#: ../../mod/import.php:329 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file. Only identity and connections/relationships will be " -"imported. Importation of content is not yet available." +#: ../../mod/profiles.php:618 ../../boot.php:1533 +msgid "Change profile photo" msgstr "" -#: ../../mod/import.php:330 -msgid "File to Upload" +#: ../../mod/profiles.php:619 ../../boot.php:1540 +msgid "Create New Profile" msgstr "" -#: ../../mod/import.php:331 -msgid "Or provide the old server/hub details" +#: ../../mod/profiles.php:630 ../../boot.php:1554 +msgid "Profile Image" msgstr "" -#: ../../mod/import.php:332 -msgid "Your old identity address (xyz@example.com)" +#: ../../mod/profiles.php:633 ../../boot.php:1557 +msgid "visible to everybody" msgstr "" -#: ../../mod/import.php:333 -msgid "Your old login email address" +#: ../../mod/profiles.php:634 ../../boot.php:1558 +msgid "Edit visibility" msgstr "" -#: ../../mod/import.php:334 -msgid "Your old login password" +#: ../../mod/home.php:31 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../mod/import.php:335 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +#: ../../mod/rmagic.php:56 +msgid "Remote Authentication" msgstr "" -#: ../../mod/import.php:336 -msgid "Make this hub my primary location" +#: ../../mod/rmagic.php:57 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../mod/rmagic.php:58 +msgid "Authenticate" msgstr "" #: ../../mod/xchan.php:25 @@ -4679,6 +4741,66 @@ msgstr "" msgid "Discard" msgstr "" +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "" + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "" + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "" + +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." +msgstr "" + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "" + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "" + #: ../../mod/admin.php:48 msgid "Theme settings updated." msgstr "" @@ -5177,148 +5299,24 @@ msgstr "" msgid "Log level" msgstr "" -#: ../../mod/photos.php:83 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../mod/photos.php:103 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:125 ../../mod/photos.php:816 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:165 ../../mod/photos.php:1106 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:492 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:492 -msgid "a photo" -msgstr "" - -#: ../../mod/photos.php:566 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:669 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/photos.php:702 ../../mod/photos.php:800 ../../mod/photos.php:822 -#: ../../mod/photos.php:1311 ../../mod/photos.php:1323 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:733 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: ../../mod/photos.php:736 -#, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "" - -#: ../../mod/photos.php:751 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:755 ../../mod/photos.php:811 -msgid "New album name: " -msgstr "" - -#: ../../mod/photos.php:756 -msgid "or existing album name: " -msgstr "" - -#: ../../mod/photos.php:757 -msgid "Do not show a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:826 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:832 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:834 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:877 ../../mod/photos.php:1353 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:912 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:914 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:970 -msgid "View photo" -msgstr "" - -#: ../../mod/photos.php:970 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:971 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:999 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:1067 -msgid "Tags: " -msgstr "" - -#: ../../mod/photos.php:1070 -msgid "[Remove any tag]" -msgstr "" - -#: ../../mod/photos.php:1091 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:1092 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:1094 -msgid "New album name" -msgstr "" - -#: ../../mod/photos.php:1097 -msgid "Caption" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" msgstr "" -#: ../../mod/photos.php:1099 -msgid "Add a Tag" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/photos.php:1103 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../mod/poke.php:161 +msgid "Recipient" msgstr "" -#: ../../mod/photos.php:1359 -msgid "View Album" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/photos.php:1368 -msgid "Recent Photos" +#: ../../mod/poke.php:165 +msgid "Make this post private" msgstr "" #: ../../mod/lockview.php:34 @@ -5521,6 +5519,10 @@ msgstr "" msgid "%1$s is following %2$s's %3$s" msgstr "" +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "" + #: ../../mod/community.php:23 msgid "Not available." msgstr "" @@ -5837,35 +5839,12 @@ msgstr "" msgid "posted an event" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "" - -#: ../../mod/post.php:114 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +#: ../../mod/wall_upload.php:41 ../../mod/item.php:965 +msgid "Wall Photos" msgstr "" -#: ../../mod/post.php:124 -#, php-format -msgid "Welcome %s. Remote authentication successful." +#: ../../mod/fbrowser.php:113 +msgid "Files" msgstr "" #: ../../mod/profperm.php:34 ../../mod/profperm.php:64 @@ -6033,6 +6012,18 @@ msgstr "" msgid "Share this event" msgstr "" +#: ../../mod/item.php:120 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:281 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:696 +msgid "System error. Post not saved." +msgstr "" + #: ../../view/theme/redbasic/php/config.php:133 #: ../../view/theme/redbasic/php/config.php:150 msgid "Theme settings" diff --git a/version.inc b/version.inc index e237be207..219c18d9e 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-05-02.301 +2013-05-05.304 -- cgit v1.2.3