alter table queue_item rename to queue_item_old;
alter table queue_item_new rename to queue_item;
+alter table consumer
+ add column consumer_secret varchar(255) not null comment 'secret value';
+
+create table oauth_application (
+ id integer auto_increment primary key comment 'unique identifier',
+ owner integer not null comment 'owner of the application' references profile (id),
+ consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key),
+ name varchar(255) not null comment 'name of the application',
+ description varchar(255) comment 'description of the application',
+ icon varchar(255) not null comment 'application icon',
+ source_url varchar(255) comment 'application homepage - used for source link',
+ organization varchar(255) comment 'name of the organization running the application',
+ homepage varchar(255) comment 'homepage for the organization',
+ callback_url varchar(255) comment 'url to redirect to after authentication',
+ type tinyint default 0 comment 'type of app, 1 = browser, 2 = desktop',
+ access_type tinyint default 0 comment 'default access type, bit 1 = read, bit 2 = write',
+ created datetime not null comment 'date this record was created',
+ modified timestamp comment 'date this record was modified'
+) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+
+create table oauth_application_user (
+ profile_id integer not null comment 'user of the application' references profile (id),
+ application_id integer not null comment 'id of the application' references oauth_application (id),
+ access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write, bit 3 = revoked',
+ token varchar(255) comment 'request or access token',
+ created datetime not null comment 'date this record was created',
+ modified timestamp comment 'date this record was modified',
+ constraint primary key (profile_id, application_id)
+) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+
+ alter table file_to_post
+ add index post_id_idx (post_id);
+ alter table group_inbox
+ add index group_inbox_notice_id_idx (notice_id);
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
- "POT-Creation-Date: 2010-03-01 15:47+0000\n"
-"POT-Creation-Date: 2010-03-01 14:08+0000\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
#: actions/othersettings.php:145 actions/passwordsettings.php:138
++#: actions/plugindisable.php:69 actions/pluginenable.php:69
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
"give access to your %4$s account to third parties you trust."
msgstr ""
--#: actions/apioauthauthorize.php:310 lib/action.php:441
++#: actions/apioauthauthorize.php:310
msgid "Account"
msgstr ""
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
--#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
++#: actions/nudge.php:63 actions/plugindisable.php:51
++#: actions/pluginenable.php:51 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "A list of the users in this group."
msgstr ""
--#: actions/groupmembers.php:182 lib/action.php:448 lib/groupnav.php:107
++#: actions/groupmembers.php:182 lib/groupnav.php:107
msgid "Admin"
msgstr ""
msgid "Error setting user. You are probably not authorized."
msgstr ""
--#: actions/login.php:188 actions/login.php:241 lib/action.php:466
--#: lib/logingroupnav.php:79
++#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79
msgid "Login"
msgstr ""
msgid "Users self-tagged with %1$s - page %2$d"
msgstr ""
++#: actions/plugindisable.php:76
++msgid "Plugin inactive or missing."
++msgstr ""
++
++#: actions/plugindisable.php:90
++msgid "Disabled"
++msgstr ""
++
++#: actions/pluginenable.php:76
++msgid "Plugin already active."
++msgstr ""
++
++#: actions/pluginenable.php:92
++msgid "Enabled"
++msgstr ""
++
#: actions/postnotice.php:84
msgid "Invalid notice content"
msgstr ""
msgid "Registration successful"
msgstr ""
--#: actions/register.php:114 actions/register.php:503 lib/action.php:463
--#: lib/logingroupnav.php:85
++#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85
msgid "Register"
msgstr ""
"Listenee stream license ā%1$sā is not compatible with site license ā%2$sā."
msgstr ""
--#: actions/useradminpanel.php:58 lib/adminpanelaction.php:332
--#: lib/personalgroupnav.php:115
++#: actions/useradminpanel.php:58
++msgctxt "User admin panel title"
msgid "User"
msgstr ""
msgstr ""
#: lib/action.php:439
--msgid "Home"
++msgctxt ""
++"Main menu option when logged in for access to personal profile and friends "
++"timeline"
++msgid "Personal"
msgstr ""
#: lib/action.php:439
++msgctxt "Tooltip for main menu option \"Personal\""
msgid "Personal profile and friends timeline"
msgstr ""
#: lib/action.php:441
++msgctxt "Main menu option when logged in for access to user settings"
++msgid "Account"
++msgstr ""
++
++#: lib/action.php:441
++msgctxt "Tooltip for main menu option \"Account\""
msgid "Change your email, avatar, password, profile"
msgstr ""
#: lib/action.php:444
++msgctxt ""
++"Main menu option when logged in and connection are possible for access to "
++"options to connect to other services"
msgid "Connect"
msgstr ""
#: lib/action.php:444
++msgctxt "Tooltip for main menu option \"Services\""
msgid "Connect to services"
msgstr ""
#: lib/action.php:448
++msgctxt ""
++"Main menu option when logged in and site admin for access to site "
++"configuration"
++msgid "Admin"
++msgstr ""
++
++#: lib/action.php:448
++msgctxt "Tooltip for menu option \"Admin\""
msgid "Change site configuration"
msgstr ""
--#: lib/action.php:452 lib/subgroupnav.php:105
++#: lib/action.php:452
++msgctxt ""
++"Main menu option when logged in and invitation are allowed for inviting new "
++"users"
msgid "Invite"
msgstr ""
--#: lib/action.php:453 lib/subgroupnav.php:106
++#: lib/action.php:453
#, php-format
++msgctxt "Tooltip for main menu option \"Invite\""
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
#: lib/action.php:458
++msgctxt "Main menu option when logged in to log out the current user"
msgid "Logout"
msgstr ""
#: lib/action.php:458
++msgctxt "Tooltip for main menu option \"Logout\""
msgid "Logout from the site"
msgstr ""
#: lib/action.php:463
++msgctxt "Main menu option when not logged in to register a new account"
++msgid "Register"
++msgstr ""
++
++#: lib/action.php:463
++msgctxt "Tooltip for main menu option \"Register\""
msgid "Create an account"
msgstr ""
#: lib/action.php:466
++msgctxt "Main menu option when not logged in to log in"
++msgid "Login"
++msgstr ""
++
++#: lib/action.php:466
++msgctxt "Tooltip for main menu option \"Login\""
msgid "Login to the site"
msgstr ""
--#: lib/action.php:469 lib/action.php:732
++#: lib/action.php:469
++msgctxt "Main menu option for help on the StatusNet site"
msgid "Help"
msgstr ""
#: lib/action.php:469
++msgctxt "Tooltip for main menu option \"Help\""
msgid "Help me!"
msgstr ""
--#: lib/action.php:472 lib/searchaction.php:127
++#: lib/action.php:472
++msgctxt ""
++"Main menu option when logged in or when the StatusNet instance is not private"
msgid "Search"
msgstr ""
#: lib/action.php:472
++msgctxt "Tooltip for main menu option \"Search\""
msgid "Search for people or text"
msgstr ""
msgid "Secondary site navigation"
msgstr ""
++#: lib/action.php:732
++msgid "Help"
++msgstr ""
++
#: lib/action.php:734
msgid "About"
msgstr ""
msgid "Design configuration"
msgstr ""
++#: lib/adminpanelaction.php:332 lib/personalgroupnav.php:115
++msgid "User"
++msgstr ""
++
#: lib/adminpanelaction.php:333
msgid "User configuration"
msgstr ""
msgid "Tags for this attachment"
msgstr ""
- #: lib/authenticationplugin.php:218 lib/authenticationplugin.php:223
-#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
++#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225
msgid "Password changing failed"
msgstr ""
- #: lib/authenticationplugin.php:233
-#: lib/authenticationplugin.php:197
++#: lib/authenticationplugin.php:235
msgid "Password changing is not allowed"
msgstr ""
msgid "Keyword(s)"
msgstr ""
++#: lib/searchaction.php:127
++msgid "Search"
++msgstr ""
++
#: lib/searchaction.php:162
msgid "Search help"
msgstr ""
msgid "Groups %s is a member of"
msgstr ""
++#: lib/subgroupnav.php:105
++msgid "Invite"
++msgstr ""
++
++#: lib/subgroupnav.php:106
++#, php-format
++msgid "Invite friends and colleagues to join you on %s"
++msgstr ""
++
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-12-07 20:38-0800\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "Lost or forgotten password?"
msgstr ""
--#: facebookaction.php:386 facebookhome.php:248
++#: facebookaction.php:330 facebookhome.php:248
msgid "Pagination"
msgstr ""
--#: facebookaction.php:395 facebookhome.php:257
++#: facebookaction.php:339 facebookhome.php:257
msgid "After"
msgstr ""
--#: facebookaction.php:403 facebookhome.php:265
++#: facebookaction.php:347 facebookhome.php:265
msgid "Before"
msgstr ""
--#: facebookaction.php:421
++#: facebookaction.php:365
msgid "No notice content!"
msgstr ""
--#: facebookaction.php:427
++#: facebookaction.php:371
#, php-format
msgid "That's too long. Max notice size is %d chars."
msgstr ""
--#: facebookaction.php:523
++#: facebookaction.php:430
msgid "Notices"
msgstr ""
--#: facebookutil.php:280
--#, php-format
--msgid "Your %1$s Facebook application access has been disabled."
--msgstr ""
--
--#: facebookutil.php:283
--#, php-format
--msgid ""
--"Hi, %1$s. We're sorry to inform you that we are unable to update your "
--"Facebook status from %2$s, and have disabled the Facebook application for "
--"your account. This may be because you have removed the Facebook "
--"application's authorization, or have deleted your Facebook account. You can "
--"re-enable the Facebook application and automatic status updating by re-"
--"installing the %2$s Facebook application.\n"
--"\n"
--"Regards,\n"
--"\n"
--"%2$s"
--msgstr ""
--
--#: FBConnectLogin.php:33
--msgid "Already logged in."
--msgstr ""
--
--#: FBConnectLogin.php:41
--msgid "Login with your Facebook Account"
--msgstr ""
--
--#: FBConnectLogin.php:55
--msgid "Facebook Login"
--msgstr ""
--
#: facebookhome.php:111
msgid "Server error - couldn't get user!"
msgstr ""
msgid "Skip"
msgstr ""
--#: facebooksettings.php:74
--msgid "There was a problem saving your sync preferences!"
--msgstr ""
--
--#: facebooksettings.php:76
--msgid "Sync preferences saved."
--msgstr ""
--
--#: facebooksettings.php:99
--msgid "Automatically update my Facebook status with my notices."
--msgstr ""
--
--#: facebooksettings.php:106
--msgid "Send \"@\" replies to Facebook."
--msgstr ""
--
--#: facebooksettings.php:115
--msgid "Prefix"
--msgstr ""
--
--#: facebooksettings.php:117
--msgid "A string to prefix notices with."
--msgstr ""
--
--#: facebooksettings.php:123
--msgid "Save"
--msgstr ""
--
--#: facebooksettings.php:133
--#, php-format
--msgid ""
--"If you would like %s to automatically update your Facebook status with your "
--"latest notice, you need to give it permission."
--msgstr ""
--
--#: facebooksettings.php:146
--#, php-format
--msgid "Allow %s to update my Facebook status"
--msgstr ""
--
--#: facebooksettings.php:156
--msgid "Sync preferences"
--msgstr ""
--
#: facebookinvite.php:72
#, php-format
msgid "Thanks for inviting your friends to use %s"
msgid "Send invitations"
msgstr ""
--#: facebookremove.php:58
--msgid "Couldn't remove Facebook user."
++#: FacebookPlugin.php:413 FacebookPlugin.php:433
++msgid "Facebook"
msgstr ""
--#: FBConnectSettings.php:56 FacebookPlugin.php:430
++#: FacebookPlugin.php:414
++msgid "Login or register using Facebook"
++msgstr ""
++
++#: FacebookPlugin.php:434 FBConnectSettings.php:56
msgid "Facebook Connect Settings"
msgstr ""
--#: FBConnectSettings.php:67
--msgid "Manage how your account connects to Facebook"
++#: FacebookPlugin.php:533
++msgid ""
++"The Facebook plugin allows you to integrate your StatusNet instance with <a "
++"href=\"http://facebook.com/\">Facebook</a> and Facebook Connect."
msgstr ""
--#: FBConnectSettings.php:92
--msgid "There is no Facebook user connected to this account."
++#: facebookremove.php:58
++msgid "Couldn't remove Facebook user."
msgstr ""
--#: FBConnectSettings.php:100
--msgid "Connected Facebook user"
++#: facebooksettings.php:74
++msgid "There was a problem saving your sync preferences!"
msgstr ""
--#: FBConnectSettings.php:119
--msgid "Disconnect my account from Facebook"
++#: facebooksettings.php:76
++msgid "Sync preferences saved."
msgstr ""
--#: FBConnectSettings.php:124
--msgid ""
--"Disconnecting your Faceboook would make it impossible to log in! Please "
++#: facebooksettings.php:99
++msgid "Automatically update my Facebook status with my notices."
msgstr ""
--#: FBConnectSettings.php:128
--msgid "set a password"
++#: facebooksettings.php:106
++msgid "Send \"@\" replies to Facebook."
msgstr ""
--#: FBConnectSettings.php:130
--msgid " first."
++#: facebooksettings.php:115
++msgid "Prefix"
msgstr ""
--#: FBConnectSettings.php:142
--msgid "Disconnect"
++#: facebooksettings.php:117
++msgid "A string to prefix notices with."
msgstr ""
--#: FBConnectSettings.php:164 FBConnectAuth.php:90
--msgid "There was a problem with your session token. Try again, please."
++#: facebooksettings.php:123
++msgid "Save"
msgstr ""
--#: FBConnectSettings.php:178
--msgid "Couldn't delete link to Facebook."
++#: facebooksettings.php:133
++#, php-format
++msgid ""
++"If you would like %s to automatically update your Facebook status with your "
++"latest notice, you need to give it permission."
msgstr ""
--#: FBConnectSettings.php:194
--msgid "You have disconnected from Facebook."
++#: facebooksettings.php:146
++#, php-format
++msgid "Allow %s to update my Facebook status"
msgstr ""
--#: FBConnectSettings.php:197
--msgid "Not sure what you're trying to do."
++#: facebooksettings.php:156
++msgid "Sync preferences"
++msgstr ""
++
++#: facebookutil.php:285
++#, php-format
++msgid ""
++"Hi, %1$s. We're sorry to inform you that we are unable to update your "
++"Facebook status from %2$s, and have disabled the Facebook application for "
++"your account. This may be because you have removed the Facebook "
++"application's authorization, or have deleted your Facebook account. You can "
++"re-enable the Facebook application and automatic status updating by re-"
++"installing the %2$s Facebook application.\n"
++"\n"
++"Regards,\n"
++"\n"
++"%2$s"
msgstr ""
#: FBConnectAuth.php:51
msgid "There is already a local user linked with this Facebook."
msgstr ""
++#: FBConnectAuth.php:90 FBConnectSettings.php:164
++msgid "There was a problem with your session token. Try again, please."
++msgstr ""
++
#: FBConnectAuth.php:95
msgid "You can't register if you don't agree to the license."
msgstr ""
msgid "Invalid username or password."
msgstr ""
--#: FacebookPlugin.php:409 FacebookPlugin.php:429
--msgid "Facebook"
++#: FBConnectLogin.php:33
++msgid "Already logged in."
msgstr ""
--#: FacebookPlugin.php:410
--msgid "Login or register using Facebook"
++#: FBConnectLogin.php:41
++msgid "Login with your Facebook Account"
++msgstr ""
++
++#: FBConnectLogin.php:55
++msgid "Facebook Login"
++msgstr ""
++
++#: FBConnectSettings.php:67
++msgid "Manage how your account connects to Facebook"
++msgstr ""
++
++#: FBConnectSettings.php:92
++msgid "There is no Facebook user connected to this account."
++msgstr ""
++
++#: FBConnectSettings.php:100
++msgid "Connected Facebook user"
++msgstr ""
++
++#: FBConnectSettings.php:119
++msgid "Disconnect my account from Facebook"
++msgstr ""
++
++#: FBConnectSettings.php:124
++msgid ""
++"Disconnecting your Faceboook would make it impossible to log in! Please "
++msgstr ""
++
++#: FBConnectSettings.php:128
++msgid "set a password"
++msgstr ""
++
++#: FBConnectSettings.php:130
++msgid " first."
++msgstr ""
++
++#: FBConnectSettings.php:142
++msgid "Disconnect"
++msgstr ""
++
++#: FBConnectSettings.php:178
++msgid "Couldn't delete link to Facebook."
++msgstr ""
++
++#: FBConnectSettings.php:194
++msgid "You have disconnected from Facebook."
++msgstr ""
++
++#: FBConnectSettings.php:197
++msgid "Not sure what you're trying to do."
msgstr ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-12-11 16:27-0800\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: GravatarPlugin.php:177
msgid "Gravatar removed."
msgstr ""
++
++#: GravatarPlugin.php:196
++msgid ""
++"The Gravatar plugin allows users to use their <a href=\"http://www.gravatar."
++"com/\">Gravatar</a> with StatusNet."
++msgstr ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-12-07 20:38-0800\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "User has no profile."
msgstr ""
--#: usermap.php:71
--#, php-format
--msgid "%s map, page %d"
--msgstr ""
--
--#: MapstractionPlugin.php:180
++#: MapstractionPlugin.php:182
msgid "Map"
msgstr ""
--#: MapstractionPlugin.php:191
++#: MapstractionPlugin.php:193
msgid "Full size"
msgstr ""
++
++#: MapstractionPlugin.php:205
++msgid ""
++"Show maps of users' and friends' notices with <a href=\"http://www."
++"mapstraction.com/\">Mapstraction</a> JavaScript library."
++msgstr ""
++
++#: usermap.php:71
++#, php-format
++msgid "%s map, page %d"
++msgstr ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
- "POT-Creation-Date: 2009-12-07 20:38-0800\n"
-"POT-Creation-Date: 2010-03-01 14:08-0800\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "Already subscribed!"
msgstr ""
- #: actions/feedsubsettings.php:220
- msgid "Feed subscribed!"
+ #. TRANS: OStatus remote subscription dialog error.
+ #: actions/ostatussub.php:361
+ msgid "Remote subscription failed!"
msgstr ""
- #: actions/feedsubsettings.php:222
- msgid "Feed subscription failed!"
+ #. TRANS: Page title for OStatus remote subscription form
+ #: actions/ostatussub.php:459
+ msgid "Authorize subscription"
+ msgstr ""
+
+ #: actions/ostatussub.php:470
+ msgid ""
+ "You can subscribe to users from other supported sites. Paste their address "
+ "or profile URI below:"
+ msgstr ""
+
+ #: classes/Ostatus_profile.php:789
+ #, php-format
+ msgid "Tried to update avatar for unsaved remote profile %s"
msgstr ""
- #: actions/feedsubsettings.php:231
- msgid "Previewing feed:"
+ #: classes/Ostatus_profile.php:797
+ #, php-format
+ msgid "Unable to fetch avatar from %s"
+ msgstr ""
+
+ #: lib/salmonaction.php:41
+ msgid "This method requires a POST."
+ msgstr ""
+
+ #: lib/salmonaction.php:45
+ msgid "Salmon requires application/magic-envelope+xml"
+ msgstr ""
+
+ #: lib/salmonaction.php:55
+ msgid "Salmon signature verification failed."
+ msgstr ""
+
-#: lib/salmonaction.php:66
++#: lib/salmonaction.php:67
+ msgid "Salmon post must be an Atom entry."
+ msgstr ""
+
-#: lib/salmonaction.php:114
++#: lib/salmonaction.php:115
+ msgid "Unrecognized activity type."
+ msgstr ""
+
-#: lib/salmonaction.php:122
++#: lib/salmonaction.php:123
+ msgid "This target doesn't understand posts."
+ msgstr ""
+
-#: lib/salmonaction.php:127
++#: lib/salmonaction.php:128
+ msgid "This target doesn't understand follows."
+ msgstr ""
+
-#: lib/salmonaction.php:132
++#: lib/salmonaction.php:133
+ msgid "This target doesn't understand unfollows."
+ msgstr ""
+
-#: lib/salmonaction.php:137
++#: lib/salmonaction.php:138
+ msgid "This target doesn't understand favorites."
+ msgstr ""
+
-#: lib/salmonaction.php:142
++#: lib/salmonaction.php:143
+ msgid "This target doesn't understand unfavorites."
+ msgstr ""
+
-#: lib/salmonaction.php:147
++#: lib/salmonaction.php:148
+ msgid "This target doesn't understand share events."
+ msgstr ""
+
-#: lib/salmonaction.php:152
++#: lib/salmonaction.php:153
+ msgid "This target doesn't understand joins."
+ msgstr ""
+
-#: lib/salmonaction.php:157
++#: lib/salmonaction.php:158
+ msgid "This target doesn't understand leave events."
+ msgstr ""
+
+ #: OStatusPlugin.php:319
+ #, php-format
+ msgid "Sent from %s via OStatus"
+ msgstr ""
+
+ #: OStatusPlugin.php:371
+ msgid "Could not set up remote subscription."
+ msgstr ""
+
+ #: OStatusPlugin.php:487
+ msgid "Could not set up remote group membership."
+ msgstr ""
+
+ #: OStatusPlugin.php:504
+ #, php-format
+ msgid "%s has joined group %s."
+ msgstr ""
+
+ #: OStatusPlugin.php:512
+ msgid "Failed joining remote group."
+ msgstr ""
+
+ #: OStatusPlugin.php:553
+ msgid "Leave"
+ msgstr ""
+
+ #: OStatusPlugin.php:554
+ #, php-format
+ msgid "%s has left group %s."
+ msgstr ""
+
+ #: OStatusPlugin.php:685
+ msgid "Subscribe to remote user"
+ msgstr ""
+
+ #: OStatusPlugin.php:726
+ msgid "Profile update"
+ msgstr ""
+
+ #: OStatusPlugin.php:727
+ #, php-format
+ msgid "%s has updated their profile page."
+ msgstr ""
+
+ #: tests/gettext-speedtest.php:57
+ msgid "Feeds"
msgstr ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-12-07 20:38-0800\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
--#: openidlogin.php:30 finishopenidlogin.php:34
++#: finishaddopenid.php:67
++msgid "Not logged in."
++msgstr ""
++
++#: finishaddopenid.php:88 finishopenidlogin.php:149
++msgid "OpenID authentication cancelled."
++msgstr ""
++
++#: finishaddopenid.php:92 finishopenidlogin.php:153
++#, php-format
++msgid "OpenID authentication failed: %s"
++msgstr ""
++
++#: finishaddopenid.php:112
++msgid "You already have this OpenID!"
++msgstr ""
++
++#: finishaddopenid.php:114
++msgid "Someone else already has this OpenID."
++msgstr ""
++
++#: finishaddopenid.php:126
++msgid "Error connecting user."
++msgstr ""
++
++#: finishaddopenid.php:131
++msgid "Error updating profile"
++msgstr ""
++
++#: finishaddopenid.php:170 openidlogin.php:95
++msgid "OpenID Login"
++msgstr ""
++
++#: finishopenidlogin.php:34 openidlogin.php:30
msgid "Already logged in."
msgstr ""
--#: openidlogin.php:37 openidsettings.php:194 finishopenidlogin.php:38
++#: finishopenidlogin.php:38 openidlogin.php:37 openidsettings.php:194
msgid "There was a problem with your session token. Try again, please."
msgstr ""
--#: openidlogin.php:66
++#: finishopenidlogin.php:43
++msgid "You can't register if you don't agree to the license."
++msgstr ""
++
++#: finishopenidlogin.php:52 openidsettings.php:208
++msgid "Something weird happened."
++msgstr ""
++
++#: finishopenidlogin.php:66
#, php-format
msgid ""
--"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
--"before changing your settings."
++"This is the first time you've logged into %s so we must connect your OpenID "
++"to a local account. You can either create a new account, or connect with "
++"your existing account, if you have one."
msgstr ""
--#: openidlogin.php:70
--#, php-format
--msgid "Login with an [OpenID](%%doc.openid%%) account."
++#: finishopenidlogin.php:72
++msgid "OpenID Account Setup"
msgstr ""
--#: openidlogin.php:95 finishaddopenid.php:170
--msgid "OpenID Login"
++#: finishopenidlogin.php:97
++msgid "Create new account"
msgstr ""
--#: openidlogin.php:112
--msgid "OpenID login"
++#: finishopenidlogin.php:99
++msgid "Create a new user with this nickname."
msgstr ""
--#: openidlogin.php:117 openidsettings.php:107
--msgid "OpenID URL"
++#: finishopenidlogin.php:102
++msgid "New nickname"
msgstr ""
--#: openidlogin.php:119
--msgid "Your OpenID URL"
++#: finishopenidlogin.php:104
++msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
--#: openidlogin.php:122
--msgid "Remember me"
++#: finishopenidlogin.php:114
++msgid "My text and files are available under "
msgstr ""
--#: openidlogin.php:123
--msgid "Automatically login in the future; not for shared computers!"
++#: finishopenidlogin.php:117
++msgid ""
++" except this private data: password, email address, IM address, phone number."
msgstr ""
--#: openidlogin.php:127
--msgid "Login"
++#: finishopenidlogin.php:121
++msgid "Create"
msgstr ""
--#: openidserver.php:106
--#, php-format
--msgid "You are not authorized to use the identity %s"
++#: finishopenidlogin.php:126
++msgid "Connect existing account"
msgstr ""
--#: openidserver.php:126
--msgid "Just an OpenID provider. Nothing to see here, move along..."
++#: finishopenidlogin.php:128
++msgid ""
++"If you already have an account, login with your username and password to "
++"connect it to your OpenID."
msgstr ""
--#: OpenIDPlugin.php:123 OpenIDPlugin.php:135
--msgid "OpenID"
++#: finishopenidlogin.php:131
++msgid "Existing nickname"
msgstr ""
--#: OpenIDPlugin.php:124
--msgid "Login or register with OpenID"
++#: finishopenidlogin.php:134
++msgid "Password"
msgstr ""
--#: OpenIDPlugin.php:136
--msgid "Add or remove OpenIDs"
++#: finishopenidlogin.php:137
++msgid "Connect"
++msgstr ""
++
++#: finishopenidlogin.php:215 finishopenidlogin.php:224
++msgid "Registration not allowed."
++msgstr ""
++
++#: finishopenidlogin.php:231
++msgid "Not a valid invitation code."
++msgstr ""
++
++#: finishopenidlogin.php:241
++msgid "Nickname must have only lowercase letters and numbers and no spaces."
++msgstr ""
++
++#: finishopenidlogin.php:246
++msgid "Nickname not allowed."
++msgstr ""
++
++#: finishopenidlogin.php:251
++msgid "Nickname already in use. Try another one."
++msgstr ""
++
++#: finishopenidlogin.php:258 finishopenidlogin.php:338
++msgid "Stored OpenID not found."
++msgstr ""
++
++#: finishopenidlogin.php:267
++msgid "Creating new account for OpenID that already has a user."
++msgstr ""
++
++#: finishopenidlogin.php:327
++msgid "Invalid username or password."
++msgstr ""
++
++#: finishopenidlogin.php:345
++msgid "Error connecting user to OpenID."
msgstr ""
#: openid.php:141
msgid "OpenID Auto-Submit"
msgstr ""
--#: openidtrust.php:51
--msgid "OpenID Identity Verification"
--msgstr ""
--
--#: openidtrust.php:69
++#: openidlogin.php:66
++#, php-format
msgid ""
--"This page should only be reached during OpenID processing, not directly."
++"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
++"before changing your settings."
msgstr ""
--#: openidtrust.php:118
++#: openidlogin.php:70
#, php-format
--msgid ""
--"%s has asked to verify your identity. Click Continue to verify your "
--"identity and login without creating a new password."
++msgid "Login with an [OpenID](%%doc.openid%%) account."
msgstr ""
--#: openidtrust.php:136
--msgid "Continue"
++#: openidlogin.php:112
++msgid "OpenID login"
msgstr ""
--#: openidtrust.php:137
--msgid "Cancel"
++#: openidlogin.php:117 openidsettings.php:107
++msgid "OpenID URL"
msgstr ""
--#: finishaddopenid.php:67
--msgid "Not logged in."
++#: openidlogin.php:119
++msgid "Your OpenID URL"
msgstr ""
--#: finishaddopenid.php:88 finishopenidlogin.php:149
--msgid "OpenID authentication cancelled."
++#: openidlogin.php:122
++msgid "Remember me"
msgstr ""
--#: finishaddopenid.php:92 finishopenidlogin.php:153
--#, php-format
--msgid "OpenID authentication failed: %s"
++#: openidlogin.php:123
++msgid "Automatically login in the future; not for shared computers!"
msgstr ""
--#: finishaddopenid.php:112
--msgid "You already have this OpenID!"
++#: openidlogin.php:127
++msgid "Login"
msgstr ""
--#: finishaddopenid.php:114
--msgid "Someone else already has this OpenID."
++#: OpenIDPlugin.php:123 OpenIDPlugin.php:135
++msgid "OpenID"
msgstr ""
--#: finishaddopenid.php:126
--msgid "Error connecting user."
++#: OpenIDPlugin.php:124
++msgid "Login or register with OpenID"
msgstr ""
--#: finishaddopenid.php:131
--msgid "Error updating profile"
++#: OpenIDPlugin.php:136
++msgid "Add or remove OpenIDs"
++msgstr ""
++
++#: OpenIDPlugin.php:324
++msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site."
++msgstr ""
++
++#: openidserver.php:106
++#, php-format
++msgid "You are not authorized to use the identity %s."
++msgstr ""
++
++#: openidserver.php:126
++msgid "Just an OpenID provider. Nothing to see here, move along..."
msgstr ""
#: openidsettings.php:59
msgid "Remove"
msgstr ""
--#: openidsettings.php:208 finishopenidlogin.php:52
--msgid "Something weird happened."
--msgstr ""
--
#: openidsettings.php:228
msgid "No such OpenID."
msgstr ""
msgid "OpenID removed."
msgstr ""
--#: finishopenidlogin.php:43
--msgid "You can't register if you don't agree to the license."
--msgstr ""
--
--#: finishopenidlogin.php:66
--#, php-format
--msgid ""
--"This is the first time you've logged into %s so we must connect your OpenID "
--"to a local account. You can either create a new account, or connect with "
--"your existing account, if you have one."
--msgstr ""
--
--#: finishopenidlogin.php:72
--msgid "OpenID Account Setup"
--msgstr ""
--
--#: finishopenidlogin.php:97
--msgid "Create new account"
--msgstr ""
--
--#: finishopenidlogin.php:99
--msgid "Create a new user with this nickname."
--msgstr ""
--
--#: finishopenidlogin.php:102
--msgid "New nickname"
--msgstr ""
--
--#: finishopenidlogin.php:104
--msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
--msgstr ""
--
--#: finishopenidlogin.php:114
--msgid "My text and files are available under "
++#: openidtrust.php:51
++msgid "OpenID Identity Verification"
msgstr ""
--#: finishopenidlogin.php:117
++#: openidtrust.php:69
msgid ""
--" except this private data: password, email address, IM address, phone number."
--msgstr ""
--
--#: finishopenidlogin.php:121
--msgid "Create"
--msgstr ""
--
--#: finishopenidlogin.php:126
--msgid "Connect existing account"
++"This page should only be reached during OpenID processing, not directly."
msgstr ""
--#: finishopenidlogin.php:128
++#: openidtrust.php:118
++#, php-format
msgid ""
--"If you already have an account, login with your username and password to "
--"connect it to your OpenID."
--msgstr ""
--
--#: finishopenidlogin.php:131
--msgid "Existing nickname"
--msgstr ""
--
--#: finishopenidlogin.php:134
--msgid "Password"
--msgstr ""
--
--#: finishopenidlogin.php:137
--msgid "Connect"
--msgstr ""
--
--#: finishopenidlogin.php:215 finishopenidlogin.php:224
--msgid "Registration not allowed."
--msgstr ""
--
--#: finishopenidlogin.php:231
--msgid "Not a valid invitation code."
--msgstr ""
--
--#: finishopenidlogin.php:241
--msgid "Nickname must have only lowercase letters and numbers and no spaces."
--msgstr ""
--
--#: finishopenidlogin.php:246
--msgid "Nickname not allowed."
--msgstr ""
--
--#: finishopenidlogin.php:251
--msgid "Nickname already in use. Try another one."
--msgstr ""
--
--#: finishopenidlogin.php:258 finishopenidlogin.php:338
--msgid "Stored OpenID not found."
--msgstr ""
--
--#: finishopenidlogin.php:267
--msgid "Creating new account for OpenID that already has a user."
++"%s has asked to verify your identity. Click Continue to verify your "
++"identity and login without creating a new password."
msgstr ""
--#: finishopenidlogin.php:327
--msgid "Invalid username or password."
++#: openidtrust.php:136
++msgid "Continue"
msgstr ""
--#: finishopenidlogin.php:345
--msgid "Error connecting user to OpenID."
++#: openidtrust.php:137
++msgid "Cancel"
msgstr ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2010-01-22 15:03-0800\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
--#: PoweredByStatusNetPlugin.php:49
++#: PoweredByStatusNetPlugin.php:50
#, php-format
msgid "powered by %s"
msgstr ""
--#: PoweredByStatusNetPlugin.php:51
++#: PoweredByStatusNetPlugin.php:52
msgid "StatusNet"
msgstr ""
--#: PoweredByStatusNetPlugin.php:64
++#: PoweredByStatusNetPlugin.php:65
msgid ""
"Outputs powered by <a href=\"http://status.net/\">StatusNet</a> after site "
"name."
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2010-02-24 16:33-0800\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2009-12-07 20:38-0800\n"
++"POT-Creation-Date: 2010-03-01 14:58-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
--#: twitterauthorization.php:81
--msgid "Not logged in."
++#: twitter.php:320
++msgid "Your Twitter bridge has been disabled."
msgstr ""
--#: twitterauthorization.php:131 twitterauthorization.php:150
--#: twitterauthorization.php:170 twitterauthorization.php:217
++#: twitter.php:324
++#, php-format
++msgid ""
++"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
++"disabled. We no longer seem to have permission to update your Twitter "
++"status. (Did you revoke %3$s's access?)\n"
++"\n"
++"You can re-enable your Twitter bridge by visiting your Twitter settings "
++"page:\n"
++"\n"
++"\t%2$s\n"
++"\n"
++"Regards,\n"
++"%3$s\n"
++msgstr ""
++
++#: twitterauthorization.php:181 twitterauthorization.php:229
msgid "Couldn't link your Twitter account."
msgstr ""
--#: TwitterBridgePlugin.php:89
++#: twitterauthorization.php:201
++msgid "Couldn't link your Twitter account: oauth_token mismatch."
++msgstr ""
++
++#: TwitterBridgePlugin.php:114
msgid "Twitter"
msgstr ""
--#: TwitterBridgePlugin.php:90
++#: TwitterBridgePlugin.php:115
msgid "Twitter integration options"
msgstr ""
++#: TwitterBridgePlugin.php:207
++msgid ""
++"The Twitter \"bridge\" plugin allows you to integrate your StatusNet "
++"instance with <a href=\"http://twitter.com/\">Twitter</a>."
++msgstr ""
++
#: twittersettings.php:59
msgid "Twitter settings"
msgstr ""
msgid "Connected Twitter account"
msgstr ""
--#: twittersettings.php:125
--msgid "Remove"
++#: twittersettings.php:128
++msgid "Disconnect my account from Twitter"
++msgstr ""
++
++#: twittersettings.php:133
++msgid "Disconnecting your Twitter could make it impossible to log in! Please "
++msgstr ""
++
++#: twittersettings.php:137
++msgid "set a password"
msgstr ""
--#: twittersettings.php:131
++#: twittersettings.php:139
++msgid " first."
++msgstr ""
++
++#: twittersettings.php:143
++#, php-format
++msgid ""
++"Keep your %1$s account but disconnect from Twitter. You can use your %1$s "
++"password to log in."
++msgstr ""
++
++#: twittersettings.php:151
++msgid "Disconnect"
++msgstr ""
++
++#: twittersettings.php:158
msgid "Preferences"
msgstr ""
--#: twittersettings.php:135
++#: twittersettings.php:162
msgid "Automatically send my notices to Twitter."
msgstr ""
--#: twittersettings.php:142
++#: twittersettings.php:169
msgid "Send local \"@\" replies to Twitter."
msgstr ""
--#: twittersettings.php:149
++#: twittersettings.php:176
msgid "Subscribe to my Twitter friends here."
msgstr ""
--#: twittersettings.php:158
++#: twittersettings.php:185
msgid "Import my Friends Timeline."
msgstr ""
--#: twittersettings.php:174
++#: twittersettings.php:201
msgid "Save"
msgstr ""
--#: twittersettings.php:176
++#: twittersettings.php:203
msgid "Add"
msgstr ""
--#: twittersettings.php:201
++#: twittersettings.php:228
msgid "There was a problem with your session token. Try again, please."
msgstr ""
--#: twittersettings.php:211
++#: twittersettings.php:238
msgid "Unexpected form submission."
msgstr ""
--#: twittersettings.php:230
++#: twittersettings.php:257
msgid "Couldn't remove Twitter user."
msgstr ""
--#: twittersettings.php:234
--msgid "Twitter account removed."
++#: twittersettings.php:261
++msgid "Twitter account disconnected."
msgstr ""
--#: twittersettings.php:255 twittersettings.php:265
++#: twittersettings.php:282 twittersettings.php:292
msgid "Couldn't save Twitter preferences."
msgstr ""
--#: twittersettings.php:269
++#: twittersettings.php:296
msgid "Twitter preferences saved."
msgstr ""
--
--#: twitter.php:333
--msgid "Your Twitter bridge has been disabled."
--msgstr ""
--
--#: twitter.php:337
--#, php-format
--msgid ""
--"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
--"disabled. We no longer seem to have permission to update your Twitter "
--"status. (Did you revoke %3$s's access?)\n"
--"\n"
--"You can re-enable your Twitter bridge by visiting your Twitter settings "
--"page:\n"
--"\n"
--"\t%2$s\n"
--"\n"
--"Regards,\n"
--"%3$s\n"
--msgstr ""