diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/hmessages.po | 91 | ||||
-rwxr-xr-x | util/update_autoloader | 3 | ||||
-rwxr-xr-x | util/update_theme_repo | 1 | ||||
-rwxr-xr-x | util/zotsh/zotsh.py | 4 |
4 files changed, 81 insertions, 18 deletions
diff --git a/util/hmessages.po b/util/hmessages.po index 98dbc59e6..f0ab348ef 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -10541,6 +10541,66 @@ msgstr "" msgid "Until modified date yyyy-mm-dd" msgstr "" +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "" + +#: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46 +#: ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "" + #: ../../addon/visage/visage.php:93 msgid "Recent Channel/Profile Viewers" msgstr "" @@ -11327,17 +11387,13 @@ msgstr "" #: ../../addon/twitter/twitter.php:184 msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." +"<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)" msgstr "" #: ../../addon/twitter/twitter.php:206 msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input " -"box below and submit the form. Only your <strong>public</strong> posts will " -"be posted to Twitter." +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" msgstr "" #: ../../addon/twitter/twitter.php:208 @@ -11350,10 +11406,11 @@ msgstr "" #: ../../addon/twitter/twitter.php:238 msgid "" -"<strong>Note:</strong> Due your privacy settings (<em>Hide your profile " -"details from unknown viewers?</em>) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." msgstr "" #: ../../addon/twitter/twitter.php:243 @@ -13644,11 +13701,11 @@ msgstr "" msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/channel.php:68 +#: ../../include/channel.php:69 msgid "Empty name" msgstr "" -#: ../../include/channel.php:71 +#: ../../include/channel.php:72 msgid "Name too long" msgstr "" @@ -13928,9 +13985,11 @@ msgstr "" #: ../../include/bbcode.php:259 #, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/bbcode.php:331 +msgid "card" msgstr "" #: ../../include/bbcode.php:350 diff --git a/util/update_autoloader b/util/update_autoloader new file mode 100755 index 000000000..1e65bed5c --- /dev/null +++ b/util/update_autoloader @@ -0,0 +1,3 @@ +#!/usr/bin/env bash -f + +composer install --optimize-autoloader --no-dev diff --git a/util/update_theme_repo b/util/update_theme_repo index b4de55568..3d3cafe84 100755 --- a/util/update_theme_repo +++ b/util/update_theme_repo @@ -2,6 +2,7 @@ set -f +set -f if [ $# -ne 1 ]; then echo usage: $0 repository diff --git a/util/zotsh/zotsh.py b/util/zotsh/zotsh.py index 36506b39d..d5e1aa527 100755 --- a/util/zotsh/zotsh.py +++ b/util/zotsh/zotsh.py @@ -55,7 +55,7 @@ class ZotSH(object): @session.setter
def session(self, session):
self._session = session
- self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="cloud", verify_ssl=VERIFY_SSL)
+ self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="dav", verify_ssl=VERIFY_SSL)
@property
def PS1(self):
@@ -205,7 +205,7 @@ class ZotSH(object): print _fmt('d', 0, "../")
for f in r:
- name = f.name.replace("/cloud"+self.davclient.cwd,"")
+ name = f.name.replace("/dav"+self.davclient.cwd,"")
type = "-"
if name.endswith("/"):
type = "d"
|