diff --git a/Vagrantfile b/Vagrantfile index 48af4ae518..4f1181b822 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,16 +1,19 @@ -server_ip = "192.168.22.10" -server_memory = "384" # MB -server_timezone = "UTC" +server_ip = "192.168.22.10" +server_memory = "384" # MB +server_timezone = "UTC" -public_folder = "/vagrant" +public_folder = "/vagrant" -Vagrant.configure("2") do |config| +Vagrant.configure(2) do |config| - # Set server to Ubuntu 12.04 - config.vm.box = "precise64" + # Set server to Ubuntu 14.04 + config.vm.box = "ubuntu/trusty64" - config.vm.box_url = "http://files.vagrantup.com/precise64.box" + # Disable automatic box update checking. If you disable this, then + # boxes will only be checked for updates when the user runs + # `vagrant box outdated`. This is not recommended. + # config.vm.box_check_update = false # Create a hostname, don't forget to put it to the `hosts` file # This will point to the server's default virtual host @@ -20,40 +23,21 @@ Vagrant.configure("2") do |config| # Create a static IP config.vm.network :private_network, ip: server_ip - # If using VirtualBox - config.vm.provider :virtualbox do |vb| - - # Set server memory - vb.customize ["modifyvm", :id, "--memory", server_memory] - - # Set the timesync threshold to 10 seconds, instead of the default 20 minutes. - # If the clock gets more than 15 minutes out of sync (due to your laptop going - # to sleep for instance, then some 3rd party services will reject requests. - vb.customize ["guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 10000] - - # Prevent VMs running on Ubuntu to lose internet connection - vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] - vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"] + # Share a folder between host and guest + config.vm.synced_folder "./", "/vagrant/", owner: "www-data", group: "vagrant" + # Provider-specific configuration so you can fine-tune various + # backing providers for Vagrant. These expose provider-specific options. + config.vm.provider "virtualbox" do |vb| + # # Display the VirtualBox GUI when booting the machine + # vb.gui = true + # + # # Customize the amount of memory on the VM: + vb.memory = server_memory end - # If using VMWare Fusion - config.vm.provider "vmware_fusion" do |vb, override| - override.vm.box_url = "http://files.vagrantup.com/precise64_vmware.box" - - # Set server memory - vb.vmx["memsize"] = server_memory - - end - - - #### - # Local Scripts - # Any local scripts you may want to run post-provisioning. - # Add these to the same directory as the Vagrantfile. - ########## - - config.vm.synced_folder "./", "/vagrant/", :owner=> 'www-data', :group=>'vagrant', :mount_options => ['dmode=775', 'fmode=775'] - config.vm.provision "shell", path: "./util/vagrant_provision.sh" - + # Enable provisioning with a shell script. + config.vm.provision "shell", path: "./util/vagrant_provision.sh" + # run: "always" + # run: "once" end diff --git a/boot.php b/boot.php index dcf6c65b1e..d4c5ec093a 100644 --- a/boot.php +++ b/boot.php @@ -17,9 +17,9 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); -define ( 'FRIENDICA_VERSION', '3.4.2' ); +define ( 'FRIENDICA_VERSION', '3.4.3-dev' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1188 ); +define ( 'DB_UPDATE_VERSION', 1191 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -163,7 +163,8 @@ define ( 'NETWORK_TWITTER', 'twit'); // Twitter define ( 'NETWORK_DIASPORA2', 'dspc'); // Diaspora connector define ( 'NETWORK_STATUSNET', 'stac'); // Statusnet connector define ( 'NETWORK_APPNET', 'apdn'); // app.net - +define ( 'NETWORK_NEWS', 'nntp'); // Network News Transfer Protocol +define ( 'NETWORK_ICALENDAR', 'ical'); // iCalendar define ( 'NETWORK_PHANTOM', 'unkn'); // Place holder /** @@ -189,7 +190,9 @@ $netgroup_ids = array( NETWORK_TWITTER => (-14), NETWORK_DIASPORA2 => (-15), NETWORK_STATUSNET => (-16), - NETWORK_APPNET => (-17), + NETWORK_APPNET => (-17), + NETWORK_NEWS => (-18), + NETWORK_ICALENDAR => (-19), NETWORK_PHANTOM => (-127), ); @@ -270,6 +273,10 @@ define ( 'NAMESPACE_ATOM1', 'http://www.w3.org/2005/Atom' ); define ( 'ACTIVITY_LIKE', NAMESPACE_ACTIVITY_SCHEMA . 'like' ); define ( 'ACTIVITY_DISLIKE', NAMESPACE_DFRN . '/dislike' ); +define ( 'ACTIVITY_ATTEND', NAMESPACE_ZOT . '/activity/attendyes' ); +define ( 'ACTIVITY_ATTENDNO', NAMESPACE_ZOT . '/activity/attendno' ); +define ( 'ACTIVITY_ATTENDMAYBE', NAMESPACE_ZOT . '/activity/attendmaybe' ); + define ( 'ACTIVITY_OBJ_HEART', NAMESPACE_DFRN . '/heart' ); define ( 'ACTIVITY_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' ); @@ -408,6 +415,7 @@ if(! class_exists('App')) { public $videoheight = 350; public $force_max_items = 0; public $theme_thread_allow = true; + public $theme_events_in_profile = true; // An array for all theme-controllable parameters // Mostly unimplemented yet. Only options 'stylesheet' and @@ -1432,8 +1440,46 @@ if(! function_exists('proc_run')) { if(! $arr['run_cmd']) return; - if(count($args) && $args[0] === 'php') + if(count($args) && $args[0] === 'php') { + + if (get_config("system", "worker")) { + $argv = $args; + array_shift($argv); + + $parameters = json_encode($argv); + $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'", + dbesc($parameters)); + + if (!$found) + q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) + VALUES ('%s', '%s', %d)", + dbesc($parameters), + dbesc(datetime_convert()), + intval(0)); + + // Should we quit and wait for the poller to be called as a cronjob? + if (get_config("system", "worker_dont_fork")) + return; + + // Checking number of workers + $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); + + // Get number of allowed number of worker threads + $queues = intval(get_config("system", "worker_queues")); + + if ($queues == 0) + $queues = 4; + + // If there are already enough workers running, don't fork another one + if ($workers[0]["workers"] >= $queues) + return; + + // Now call the poller to execute the jobs that we just added to the queue + $args = array("php", "include/poller.php", "no_cron"); + } + $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); + } // add baseurl to args. cli scripts can't construct it $args[] = $a->get_baseurl(); @@ -1441,9 +1487,8 @@ if(! function_exists('proc_run')) { for($x = 0; $x < count($args); $x ++) $args[$x] = escapeshellarg($args[$x]); - - $cmdline = implode($args," "); + if(get_config('system','proc_windows')) proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo,dirname(__FILE__))); else @@ -1620,7 +1665,7 @@ if(! function_exists('load_contact_links')) { if(! $uid || x($a->contacts,'empty')) return; - $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''", + $r = q("SELECT `id`,`network`,`url`,`thumb`, `rel` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''", intval($uid) ); if(count($r)) { @@ -1860,3 +1905,31 @@ if(!function_exists('exif_imagetype')) { return($size[2]); } } + +function validate_include(&$file) { + $orig_file = $file; + + $file = realpath($file); + + if (strpos($file, getcwd()) !== 0) + return false; + + $file = str_replace(getcwd()."/", "", $file, $count); + if ($count != 1) + return false; + + if ($orig_file !== $file) + return false; + + $valid = false; + if (strpos($file, "include/") === 0) + $valid = true; + + if (strpos($file, "addon/") === 0) + $valid = true; + + if (!$valid) + return false; + + return true; +} diff --git a/database.sql b/database.sql index 76df6aec19..e3768c1efb 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 3.4.1 (Lily of the valley) --- DB_UPDATE_VERSION 1188 +-- Friendica 3.4.2 (Lily of the valley) +-- DB_UPDATE_VERSION 1190 -- ------------------------------------------ @@ -317,6 +317,7 @@ CREATE TABLE IF NOT EXISTS `gcontact` ( `gender` varchar(32) NOT NULL DEFAULT '', `community` tinyint(1) NOT NULL DEFAULT 0, `network` varchar(255) NOT NULL DEFAULT '', + `addr` varchar(255) NOT NULL DEFAULT '', `generation` tinyint(3) NOT NULL DEFAULT 0, `server_url` varchar(255) NOT NULL DEFAULT '', INDEX `nurl` (`nurl`), @@ -1020,3 +1021,16 @@ CREATE TABLE IF NOT EXISTS `userd` ( INDEX `username` (`username`) ) DEFAULT CHARSET=utf8; +-- +-- TABLE workerqueue +-- +CREATE TABLE IF NOT EXISTS `workerqueue` ( + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `parameter` text NOT NULL, + `priority` tinyint(3) unsigned NOT NULL DEFAULT 0, + `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `pid` int(11) NOT NULL DEFAULT 0, + `executed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + INDEX `created` (`created`) +) DEFAULT CHARSET=utf8; + diff --git a/doc/Chats.md b/doc/Chats.md index 77b21833a5..3698ad15da 100644 --- a/doc/Chats.md +++ b/doc/Chats.md @@ -23,7 +23,7 @@ The following window shows some text while connecting. This text isn't importend for you, just wait for the next window. The first line shows your name and your current IP address. The right part of the window shows all users. -The lower part of the window contains an input field. +The lower part of the window contains an input field. Jappix Mini --- @@ -41,7 +41,7 @@ You can use several servers to create an account: At first you have to get the current version. You can either pull it from [Github](https://github.com) like so: - $> cd /var/www/virtual/YOURSPACE/html/addon; git pull + $> cd /var/www/virtual/YOURSPACE/html/addon; git pull Or you can download a tar archive here: [jappixmini.tgz](https://github.com/friendica/friendica-addons/blob/master/jappixmini.tgz) (click at „view raw“). @@ -63,9 +63,10 @@ At first you have to activate the addon. Now add your Jabber/XMPP name, the domain/server (without "http"; just "jappix.com"). For „Jabber BOSH Host“ you could use "https://bind.jappix.com/". +Note that you need another BOSH server if you do not use jappix.com for your XMPP account. You can find further information in the „Configuration Help“-section below this fields. At last you have enter your password (there are some more optional options, you can choose). -Finish these steps with "send" to save the entries. +Finish these steps with "send" to save the entries. Now, you should find the chatbox at the lower right corner of your browser window. -If you want to add contacts manually, you can click "add contact". +If you want to add contacts manually, you can click "add contact". diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md index ff8c3c54c2..7e5caae2b3 100644 --- a/doc/Developers-Intro.md +++ b/doc/Developers-Intro.md @@ -54,6 +54,8 @@ Have a look at our [issue tracker](https://github.com/friendica/friendica) on gi * Try to reproduce a bug that needs more inquries and write down what you find out. * If a bug looks fixed, ask the bug reporters for feedback to find out if the bug can be closed. * Fix a bug if you can. Please make the pull request against the *develop* branch of the repository. + * There is a *Junior Job* label for issues we think might be a good point to start with. + But you don't have to limit yourself to those issues. ###Web interface diff --git a/doc/FAQ.md b/doc/FAQ.md index 9197c068c5..0343833a25 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -87,8 +87,8 @@ However their conversations with your friends will still be visible in your stre If you remove a contact completely, they can send you another friend request. Blocked contacts cannot do this. They cannot communicate with you directly, only through friends. -**Ignored contacts** are included in delivery - they will receive your posts. -However we do not import their posts to you. +**Ignored contacts** are included in delivery - they will receive your posts and private messages. +However we do not import their posts or private messages to you. Like blocking, you will still see this person's comments to posts made by your friends. A plugin called "blockem" can be installed to collapse/hide all posts from a particular person in your stream if you desire complete blocking of an individual, including his/her conversations with your other friends. diff --git a/doc/Home.md b/doc/Home.md index ff991e3d2a..cd8752c1ef 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -10,7 +10,7 @@ Friendica Documentation and Resources * [BBCode tag reference](help/BBCode) * [Comment, sort and delete posts](help/Text_comment) * [Profiles](help/Profiles) - * [Accesskey reference](help/Accesskeys + * [Accesskey reference](help/Accesskeys) * [Events](help/events) * You and other users * [Connectors](help/Connectors) @@ -30,9 +30,11 @@ Friendica Documentation and Resources * [Install](help/Install) * [Settings](help/Settings) * [Installing Connectors (Twitter/GNU Social)](help/Installing-Connectors) +* [Install an ejabberd server (XMPP chat) with synchronized credentials](help/install-ejabberd) * [Message Flow](help/Message-Flow) * [Using SSL with Friendica](help/SSL) * [Twitter/GNU Social API Functions](help/api) +* [Config values that can only be set in .htconfig.php](help/htconfig) **Developer Manual** @@ -53,4 +55,5 @@ Friendica Documentation and Resources **About** * [Site/Version Info](friendica) +* [Friendica Credits](credits) diff --git a/doc/Install.md b/doc/Install.md index bd15f10b5a..5afd5a22c1 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -10,9 +10,11 @@ Not every PHP/MySQL hosting provider will be able to support Friendica. Many will. But **please** review the requirements and confirm these with your hosting provider prior to installation. -Also if you encounter installation issues, please let us know via the [helper]() or the [developer]() forum or [file an issue](https://github.com/friendica/friendica/issues). +Also if you encounter installation issues, please let us know via the [helper](http://helpers.pyxis.uberspace.de/profile/helpers) or the [developer](https://friendika.openmindspace.org/profile/friendicadevelopers) forum or [file an issue](https://github.com/friendica/friendica/issues). Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future. -Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues. +Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues. +If you do not have a Friendica account yet, you can register a temporary one at [tryfriendica.de](https://tryfriendica.de) and join the forums mentioned above from there. +The account will expire after 7 days, but you can ask the server admin to keep your account longer, should the problem not be resolved after that. Before you begin: Choose a domain name or subdomain name for your server. Put some thought into this. Changing it after installation is currently not supported. @@ -29,7 +31,7 @@ Requirements * curl, gd, mysql, hash and openssl extensions * some form of email server or email gateway such that PHP mail() works * mcrypt (optional; used for server-to-server message encryption) -* Mysql 5.x +* Mysql 5.x or an equivalant alternative for MySQL (MariaDB etc.) * the ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks (Windows) (Note: other options are presented in Section 7 of this document.) * Installation into a top-level domain or sub-domain (without a directory/path component in the URL) is preferred. Directory paths will not be as convenient to use and have not been thoroughly tested. * If your hosting provider doesn't allow Unix shell access, you might have trouble getting everything to work. @@ -42,23 +44,23 @@ Installation procedure Unpack the Friendica files into the root of your web server document area. If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. This makes the software much easier to update. -The Linux command to clone the repository into a directory "mywebsite" would be +The Linux command to clone the repository into a directory "mywebsite" would be + + git clone https://github.com/friendica/friendica.git mywebsite - git clone https://github.com/friendica/friendica.git mywebsite - Make sure the folder *view/smarty3* exists and is writable by the webserver user - - mkdir view/smarty3 - chmod 777 view/smarty3 - + + mkdir view/smarty3 + chmod 777 view/smarty3 + Get the addons by going into your website folder. - - cd mywebsite - + + cd mywebsite + Clone the addon repository (separately): - - git clone https://github.com/friendica/friendica-addons.git addon - + + git clone https://github.com/friendica/friendica-addons.git addon + If you copy the directory tree to your webserver, make sure that you also copy .htaccess - as "dot" files are often hidden and aren't normally copied. ###Create a database @@ -87,14 +89,14 @@ You might wish to move/rename .htconfig.php to another name and empty (called 'd Set up a cron job or scheduled task to run the poller once every 5-10 minutes in order to perform background processing. Example: - cd /base/directory; /path/to/php include/poller.php + cd /base/directory; /path/to/php include/poller.php Change "/base/directory", and "/path/to/php" as appropriate for your situation. If you are using a Linux server, run "crontab -e" and add a line like the one shown, substituting for your unique paths and settings: - */10 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php + */10 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php You can generally find the location of PHP by executing "which php". If you run into trouble with this section please contact your hosting provider for assistance. @@ -104,25 +106,31 @@ Alternative: You may be able to use the 'poormancron' plugin to perform this ste To do this, edit the file ".htconfig.php" and look for a line describing your plugins. On a fresh installation, it will look like this: - $a->config['system']['addon'] = 'js_upload'; + $a->config['system']['addon'] = 'js_upload'; It indicates the "js_upload" addon module is enabled. You may add additional addons/plugins using this same line in the configuration file. Change it to read - $a->config['system']['addon'] = 'js_upload,poormancron'; + $a->config['system']['addon'] = 'js_upload,poormancron'; -and save your changes. +and save your changes. + +Once you have installed Friendica and created an admin account as part of the process, you can access the admin panel of your installation and do most of the server wide configuration from there Updating your installation with git --- You can get the latest changes at any time with - cd mywebsite - git pull + cd mywebsite + git pull + +The default branch to use it the ``master`` branch, which is the stable version of Friendica. +If you want to use and test bleeding edge code please checkout the ``develop`` branch. +The new features and fixes will be merged from ``develop`` into ``master`` when they are stable approx four times a year. The addon tree has to be updated separately like so: - - cd mywebsite/addon - git pull + + cd mywebsite/addon + git pull diff --git a/doc/Plugins.md b/doc/Plugins.md index dcd6e3b052..24d403e1f6 100644 --- a/doc/Plugins.md +++ b/doc/Plugins.md @@ -3,7 +3,7 @@ Friendica Addon/Plugin development Please see the sample addon 'randplace' for a working example of using some of these features. Addons work by intercepting event hooks - which must be registered. -Modules work by intercepting specific page requests (by URL path). +Modules work by intercepting specific page requests (by URL path). Plugin names cannot contain spaces or other punctuation and are used as filenames and function names. You may supply a "friendly" name within the comment block. @@ -12,12 +12,12 @@ For instance "plugin1name_install()". These two functions take no arguments and are usually responsible for registering (and unregistering) event hooks that your plugin will require. The install and uninstall functions will also be called (i.e. re-installed) if the plugin changes after installation. Therefore your uninstall should not destroy data and install should consider that data may already exist. -Future extensions may provide for "setup" amd "remove". +Future extensions may provide for "setup" amd "remove". -Plugins should contain a comment block with the four following parameters: +Plugins should contain a comment block with the four following parameters: /* - * Name: My Great Plugin + * Name: My Great Plugin * Description: This is what my plugin does. It's really cool * Version: 1.0 * Author: John Q. Public @@ -52,7 +52,7 @@ It contains a wealth of information about the current state of Friendica: * which module has been called, * configuration information, * the page contents at the point the hook was invoked, -* profile and user information, etc. +* profile and user information, etc. It is recommeded you call this '$a' to match its usage elsewhere. @@ -77,7 +77,7 @@ This will include: Your module functions will often contain the function plugin_name_content(&$a), which defines and returns the page body content. They may also contain plugin_name_post(&$a) which is called before the _content function and typically handles the results of POST forms. -You may also have plugin_name_init(&$a) which is called very early on and often does module initialisation. +You may also have plugin_name_init(&$a) which is called very early on and often does module initialisation. Templates ---------- @@ -89,11 +89,11 @@ Put your tpl files in the *templates/* subfolder of your plugin. In your code, like in the function plugin_name_content(), load the template file and execute it passing needed values: - # load template file. first argument is the template name, + # load template file. first argument is the template name, # second is the plugin path relative to friendica top folder $tpl = get_markup_template('mytemplate.tpl', 'addon/plugin_name/'); - # apply template. first argument is the loaded template, + # apply template. first argument is the loaded template, # second an array of 'name'=>'values' to pass to template $output = replace_macros($tpl,array( 'title' => 'My beautiful plugin', @@ -271,6 +271,16 @@ $b is an array, params to mail() is called after the navigational menu is build in include/nav.php. $b is an array containing $nav from nav.php. +###'template_vars' +is called before vars are passed to the template engine to render the page. +The registered function can add,change or remove variables passed to template. +$b is an array with: + + 'template' => filename of template + 'vars' => array of vars passed to template + + + Complete list of hook callbacks --- @@ -298,7 +308,7 @@ include/text.php: call_hooks('contact_block_end', $arr); include/text.php: call_hooks('smilie', $s); -include/text.php: call_hooks('prepare_body_init', $item); +include/text.php: call_hooks('prepare_body_init', $item); include/text.php: call_hooks('prepare_body', $prep_arr); @@ -310,7 +320,7 @@ include/auth.php: call_hooks('authenticate', $addon_auth); include/bbcode.php: call_hooks('bbcode',$Text); -include/oauth.php: call_hooks('logged_in', $a->user); +include/oauth.php: call_hooks('logged_in', $a->user); include/acl_selectors.php: call_hooks($a->module . '_pre_' . $selname, $arr); @@ -396,7 +406,7 @@ mod/photos.php: call_hooks('photo_post_end',intval($item_id)); mod/photos.php: call_hooks('photo_upload_form',$ret); -mod/friendica.php: call_hooks('about_hook', $o); +mod/friendica.php: call_hooks('about_hook', $o); mod/editpost.php: call_hooks('jot_tool', $jotplugins); diff --git a/doc/SSL.md b/doc/SSL.md index 0067206e5f..a72eec2a16 100644 --- a/doc/SSL.md +++ b/doc/SSL.md @@ -3,166 +3,104 @@ Using SSL with Friendica * [Home](help) -If you are running your own Friendica site, you may want to use SSL (https) to encrypt communication between yourself and your server (communication between servers is encrypted anyway). +Disclaimer +--- +**This document has been updated in November 2015. +SSL encryption is relevant for security. +This means that recommended settings change fast. +Keep your setup up to date and do not rely on this document being updated as fast as technologies change!** -To do that on a domain of your own, you have to obtain a certificate from a trusted organization (so-called self-signed certificates that are popular among geeks don’t work very well with Friendica, because they can cause disturbances in other people's browsers). +Intro +--- +If you are running your own Friendica site, you may want to use SSL (https) to encrypt communication between servers and between yourself and your server. -If you are reading this document before actually installing Friendica, you might want to consider a very simple option: Go for a shared hosting account without your own domain name. That way, your address will be something like yourname.yourprovidersname.com, which isn't very fancy compared to yourname.com. But it will still be your very own site, and you will usually be able to hitch a lift on your provider's SSL certificate. That means that you won't need to configure SSL at all - it will simply work out of the box when people type https instead of http. +There are basically two sorts of SSL certificates: Self-signed certificates and certificates signed by a certificate authority (CA). +Technically, both provide the same valid encryption. +There is a problem with self-signed certificates though: +They are neither installed in browsers nor on other servers. +That is why they provoke warnings about "mistrusted certificates". +This is confusing and disturbing. -If that isn't your idea of doing things, read on... +For this reason, we recommend to get a certificate signed by a CA. +Normally, you have to pay for them - and they are valid for a limited period of time (e.g. a year or two). -**Shared hosts** +There are ways to get a trusted certificate for free. -If you are using a shared host on a domain of your own, your provider may well offer to obtain and install the certificate for you. You will then only need to apply and pay for it – and everything will be set up. If that is the case for you, the rest of this document need not concern you at all. Just make sure the certificate is for the address that Friendica uses: e.g. myownfriendica.com or friendica.myserver.com. +Chose your domain name +--- -The above ought to be the most common scenario for Friendica sites, making the rest of this article superfluous for most people. +Your SSL certificate will be valid for a domain or even only for a subdomain. +Make your final decision about your domain resp. subdomain *before* ordering the certificate. +Once you have it, changing the domain name means getting a new certificate. -**Obtaining a certificate yourself** +Shared hosts +--- -Alternatively, a few shared hosting providers may ask you to obtain and upload the certificate yourself. +If your Friendica instance is running on a shared hosting platform, you should first check with your hosting provider. +They have instructions for you on how to do it there. +You can always order a paid certificate with your provider. +They will either install it for you or provide an easy way to upload the certificate and the key via a web interface. -The next section describes the process of acquiring a certificate from StartSSL. The good thing about StartSSL is that you can get an entry-level, but perfectly sufficient certificate for free. That’s not the case with most other certificate issuers - so we will be concentrating on StartSSL in this document If you want to use a certificate from a different source, you will have to follow the instructions given by that organization. We can't cover every possibility here. -Installing your certificate - once you have obtained it - depends on your provider’s way of doing things. But for shared hosts, there will usually be an easy web tool for this. +It might be worth asking if your provider would install a certificate you provide yourself, to save money. +If so, read on. -Note: Your certificate is usually restricted to one subdomain. When you apply for the certificate, make sure it’s for the domain and subdomain Friendica uses: e.g. myownfriendica.com or friendica.myserver.com. +Getting a free StartSSL certificate +--- +StartSSL is a certificate authority that issues certificates for free. +They are valid for a year and are sufficient for our purposes. -**Getting a free StartSSL certificate** +### Step 1: Create a client certificate -StartSSL’s website attempts to guide you through the process of obtaining a free certificate, but some people end up frustrated. We really recommend working your way through the steps on the site very slowly and carefully. Don't take things for granted - read every word before proceeding and don't close the browser window until everything is working. That said, there are three main stumbling blocks that can confuse users: +When you initially sign up with StartSSL, you receive a certificate that is installed in your browser. +You need it for the login on startssl.com, also when coming back to the site later. +It has nothing to do with the SSL certificate for your server. -When you initially sign up with StartSSL, the first certificate you receive is simply installed in your browser (though you should also store it somewhere safe, so that you can reinstall it in any other browser at a later date, for instance when you need to renew something). This authentication certificate is only used for logging on to the StartSSL website – it has nothing to do with the certificate you will need for your server. As a first-timer with StartSSL, start here: https://www.startssl.com/?app=12 and choose the Express Lane option to get that browser authentication certificate. Then seamlessly continue to the process of acquiring the desired certificate for your server (the one you actually came for). You can change the website’s language if that makes things easier for you. +### Step 2: Validate your email address and your domain -When you are first prompted for a domain to certify, you need to enter your top-level domain – not the subdomain Friendica uses. In the next step, you will be able to specify that subdomain. So if you have friendica.yourname.com on your server, you first enter yourname.com – and specify the subdomain friendica later. +To continue you have to prove that you own the email address you specified and the domain that you want a certificate for. +Specify your email address, request a validation link via email from the "validations wizard". +Same procedure for the domain validation. -Don’t quit too fast when you have received your personal web server certificate at the end of the procedure. Depending on your server software, you will also require one or two generic files for use with this free StartSSL certificate. These are sub.class1.server.ca.pem and ca.pem. If you have already overlooked this step, you can download those files here: http://www.startssl.com/?app=21 But once again, the very best way of doing things is not to quit the StartSSL site until you are completely done and your https certificate is up and working. +### Step 3: Request the certificate -**Virtual private and dedicated servers (using StartSSL free)** +Go to the "certificates wizard". +Choose the target web server. +When you are first prompted for a domain to certify, you need to enter your main domain, e.g. example.com. +In the next step, you will be able to specify a subdomain for Friendica, if needed. +Example: If you have friendica.example.com, you first enter example.com, then specify the subdomain friendica later. -The rest of this document is slightly more complicated, but it’s only for people running Friendica on a virtual private or dedicated server. Everyone else can stop reading at this point. +If you know how to generate an openssl key and a certificate signing request (csr) yourself, do so. +Paste the csr into your browser to get it signed by StartSSL. -Follow the instructions here ( http://www.startssl.com/?app=20 ) to configure the web server you are using (e.g. Apache) for your certificate. +If you do not know how to generate a key and a csr, accept StartSSL's offer to generate it for you. +This means: StartSSL has the key to your encryption but it is better than no certificate at all. +Download your certificate from the website. +(Or in the second case: Download your certificate and your key.) -To illustrate the necessary changes, we will now assume you are running Apache. In essence, you can simply create a second httpd.conf entry for Friendica. +To install your certificate on a server, you need one or two extra files: sub.class1.server.ca.pem and ca.pem, delivered by startssl.com +Go to the "Tool box" section and download "Class 1 Intermediate Server CA" and "StartCom Root CA (PEM encoded)". -To do this, you copy the existing one and change the end of the first line to read :443> instead of :80>, then add the following lines to that entry, as also shown in StartSSL’s instructions: +If you want to send your certificate to your hosting provider, they need the certificate, the key and probably at least the intermediate server CA. +To be sure, send those three and the ca.pem file. +**You should send them to your provider via an encrypted channel!** - SSLEngine on - SSLProtocol all -SSLv2 - SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM +If you run your own server, upload the files and check out the Mozilla wiki link below. - SSLCertificateFile /usr/local/apache/conf/ssl.crt - SSLCertificateKeyFile /usr/local/apache/conf/ssl.key - SSLCertificateChainFile /usr/local/apache/conf/sub.class1.server.ca.pem - SSLCACertificateFile /usr/local/apache/conf/ca.pem - SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown - CustomLog /usr/local/apache/logs/ssl_request_log \ - "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" +Let's encrypt +--- -(Note that the directory /usr/local/apache/conf/ may not exist on your machine. For Debian, for instance, the directory might be /etc/apache2/ - in which you can create an ssl subdirectory if it doesn’t already exist. Then you have /etc/apache2/ssl/… instead of /usr/local/apache/conf/…) +If you run your own server and you control your name server, the "Let's encrypt" initiative might become an interesting alternative. +Their offer is not ready, yet. +Check out [their website](https://letsencrypt.org/) for status updates. -You thus end up with two entries for your Friendica site - one for simple http and one for https. +Web server settings +--- -Note to those who want to force SSL: Don't redirect to SSL in your Apache settings. Friendica's own admin panel has a special setting for SSL policy. Please use this facility instead. +Visit the [Mozilla's wiki](https://wiki.mozilla.org/Security/Server_Side_TLS) for instructions on how to configure a secure webserver. +They provide recommendations for [different web servers](https://wiki.mozilla.org/Security/Server_Side_TLS#Recommended_Server_Configurations). -**Mixing certificates on Apache – StartSSL and others (self-signed)** +Test your SSL settings +--- -Many people using a virtual private or dedicated server will be running more than Friendica on it. They will probably want to use SSL for other sites they run on the server, too. To achieve this, they may wish to employ more than one certificate with a single IP – for instance, a trusted one for Friendica and a self-signed certificate for personal stuff (possibly a wildcard certificate covering arbitrary subdomains). - -For this to work, Apache offers a NameVirtualHost directive. You can see how to use it in httpd.conf in the following pattern. Note that wildcards (*) in httpd.conf break the NameVirtualHost method – you can’t use them in this new configuration. In other words, no more *80> or *443>. And you really must specify the IP, too, even if you only have one. Also note that you will soon be needing two additional NameVirtualHost lines at the top of the file to cater for IPv6. - - NameVirtualHost 12.123.456.1:443 - NameVirtualHost 12.123.456.1:80 - - - DocumentRoot /var/www/anywhere - Servername www.anywhere.net - - - - DocumentRoot /var/www/anywhere - Servername www.anywhere.net - SSLEngine On - - - - - - - DocumentRoot /var/www/somewhere-else - Servername www.somewhere-else.net - - - - DocumentRoot /var/www/somewhere-else - Servername www.somewhere-else.net - SSLEngine On - - - - - -Of course, you may optionally be using other places like the sites-available directory to configure Apache, in which case only some of this information need be in httpd.conf or ports.conf - specifically, the NameVirtualHost lines must be there. But if you're savvy about alternatives like that, you will probably be able to figure out the details yourself. - -Just restart Apache when you're done, whichever way you decide to do it. - -**StartSSL on Nginx** - -First, update to the latest Friendica code. Then follow the above instructions to get your free certificate. But instead of following the Apache installation instructions, do this: - -Upload your certificate. It doesn't matter where to, as long as Nginx can find it. Some people use /home/randomlettersandnumbers to keep it in out of paranoia, but you can put it anywhere, so we'll call it /foo/bar. - -You can remove the password if you like. This is probably bad practice, but if you don't, you'll have to enter the password every time you restart nginx. To remove it: - - openssl rsa -in ssl.key-pass -out ssl.key - -Now, grab the helper certificate: - - wget http://www.startssl.com/certs/sub.class1.server.ca.pem - -Now you need to merge the files: - - cat ssl.crt sub.class1.server.ca.pem > ssl.crt - -In some configurations there is a bug, and this doesn't quite work properly. You may now need to edit ssl.crt, so: - - nano /foo/bar/ssl.crt - -You'll see two certificates in the same file. Halfway down, you may see: - - -----END CERTIFICATE----------BEGIN CERTIFICATE----- - -This is bad. You need to see: - - -----END CERTIFICATE----- - -----BEGIN CERTIFICATE----- - -You can enter the carriage return manually if the bug is present on your system. Note there is a single carriage return for -----BEGIN CERTIFICATE----- to start on a new line. There is no empty line. - -Now you need to tell Nginx about the certs. - -In /etc/nginx/sites-available/foo.com.conf you need something like: - - server { - - listen 80; - - listen 443 ssl; - - listen [::]:80; - - listen [::]:443 ipv6only=on ssl; - - ssl_certificate /foo/bar/ssl.crt; - - ssl_certificate_key /foo/bar/ssl.key; - - ... - -Now, restart nginx: - - /etc/init.d/nginx restart - -And that's it. - -For multiple domains, we have it easier than Apache users: Just repeat the above for each certificate, and keep it in it's own {server...} section. \ No newline at end of file +When you are done, visit the test site [SSL Labs](https://www.ssllabs.com/ssltest/) to have them check if you succeeded. diff --git a/doc/Settings.md b/doc/Settings.md index 60fff847a0..ae7d916078 100644 --- a/doc/Settings.md +++ b/doc/Settings.md @@ -198,7 +198,7 @@ Config: This configures the URL to update the global directory, and is supplied in the default configuration. The undocumented part is that if this is not set, the global directory is completely unavailable to the application. -This allows a private community to be completely isolated from the global mistpark network. +This allows a private community to be completely isolated from the global network. $a->config['system']['directory'] = 'http://dir.friendi.ca'; diff --git a/doc/Vagrant.md b/doc/Vagrant.md index 1d23ace134..4bc9e6c54d 100644 --- a/doc/Vagrant.md +++ b/doc/Vagrant.md @@ -8,10 +8,12 @@ Getting started [Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers. No need to setup up a webserver, database etc. before actually starting. -Vagrant creates a virtual machine (an Ubuntu 12.04) for you that you can just run inside VirtualBox and start to work directly on Friendica. +Vagrant creates a virtual machine (an Ubuntu 14.04) for you that you can just run inside VirtualBox and start to work directly on Friendica. + What you need to do: 1. Install VirtualBox and vagrant. +Please use an up-to-date vagrant version from https://www.vagrantup.com/downloads.html. 2. Git clone your Friendica repository. Inside, you'll find a "Vagrantfile" and some scripts in the utils folder. 3. Run "vagrant up" from inside the friendica clone. @@ -20,8 +22,10 @@ Be patient: When it runs for the first time, it downloads an Ubuntu Server image 5. Open 192.168.22.10 in a browser. The mysql database is called "friendica", the mysql user and password both are "root". 6. Work on Friendica's code in your git clone on your machine (not in the VM). +Your local working directory is set up as a shared directory with the VM (/vagrant). 7. Check the changes in your browser in the VM. Debug via the "vagrant ssh" login. +Find the Friendica log file /vagrant/logfile.out. 8. Commit and push your changes directly back to Github. If you want to stop vagrant after finishing your work, run the following command @@ -40,3 +44,10 @@ You will then have the following accounts to login: * friendica2 and friendica3 are conntected. friendica4 and friendica5 are connected. For further documentation of vagrant, please see [the vagrant*docs*](https://docs.vagrantup.com/v2/). + +**Important notice:** +If you already had an Ubuntu 12.04 Vagrant VM, please run + + $> vagrant destroy + +before starting the new 14.04 machine. diff --git a/doc/de/Chats.md b/doc/de/Chats.md index a2d06f3c4e..ae239a675b 100644 --- a/doc/de/Chats.md +++ b/doc/de/Chats.md @@ -3,33 +3,33 @@ Chats * [Zur Startseite der Hilfe](help) -Du hast derzeit zwei Möglichkeiten, einen Chat auf Deiner Friendica-Seite zu betreiben +Du hast derzeit zwei Möglichkeiten, einen Chat auf Deiner Friendica-Seite zu betreiben * IRC - Internet Relay Chat * Jappix ##IRC Plugin -Sobald das Plugin aktiviert ist, kannst Du den Chat unter [deineSeite.de/irc](../irc) finden. -Beachte aber, dass dieser Chat auch ohne Anmeldung auf Deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können. +Sobald das Plugin aktiviert ist, kannst Du den Chat unter [deineSeite.de/irc](../irc) finden. +Beachte aber, dass dieser Chat auch ohne Anmeldung auf Deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können. -Wenn Du dem Link folgst, dann kommst Du zum Anmeldefenster des IR-Chats. -Wähle nun einen Spitznamen (Nickname) und wähle einen Raum aus, in dem Du chatten willst. -Hier kannst Du jeden Namen eingeben. -Es kann also auch #tollerChatdessenNamenurichkenne sein. +Wenn Du dem Link folgst, dann kommst Du zum Anmeldefenster des IR-Chats. +Wähle nun einen Spitznamen (Nickname) und wähle einen Raum aus, in dem Du chatten willst. +Hier kannst Du jeden Namen eingeben. +Es kann also auch #tollerChatdessenNamenurichkenne sein. Gib als nächstes noch die Captchas ein, um zu zeigen, dass es sich bei Dir um einen Menschen handelt und klicke auf "Connect". -Im nächsten Fenster siehst Du zunächst viel Text beim Verbindungsaufbau, der allerdings für Dich nicht weiter von Bedeutung ist. -Anschließend öffnet sich das Chat-Fenster. -In den ersten Zeilen wird Dir Dein Name und Deine aktuelle IP-Adresse angezeigt. -Rechts im Fenster siehst Du alle Teilnehmer des Chats. +Im nächsten Fenster siehst Du zunächst viel Text beim Verbindungsaufbau, der allerdings für Dich nicht weiter von Bedeutung ist. +Anschließend öffnet sich das Chat-Fenster. +In den ersten Zeilen wird Dir Dein Name und Deine aktuelle IP-Adresse angezeigt. +Rechts im Fenster siehst Du alle Teilnehmer des Chats. Unten hast Du ein Eingabefeld, um Beiträge zu schreiben. Weiter Informationen zu IRC findest Du zum Beispiel auf ubuntuusers.de, in Wikipedia oder bei icrhelp.org (in Englisch). ##Jappix Mini -Das Jappix Mini Plugin erlaubt das Erstellen einer Chatbox für Jabber/XMPP-Kontakte. +Das Jappix Mini Plugin erlaubt das Erstellen einer Chatbox für Jabber/XMPP-Kontakte. Ein Jabber/XMPP Account sollte vor der Installation bereits vorhanden sein. Die ausführliche Anleitung dazu und eine Kontrolle, ob Du nicht sogar schon über Deinen E-Mail Anbieter einen Jabber-Account hast, findest Du unter einfachjabber.de. @@ -53,29 +53,29 @@ oder als normaler Download von hier: https://github.com/friendica/friendica-addo Entpacke diese Datei (ggf. den entpackten Ordner in „jappixmini“ umbenennen) und lade sowohl den entpackten Ordner komplett als auch die .tgz Datei in den Addon Ordner Deiner Friendica Installation hoch. -Nach dem Upload gehts in den Friendica Adminbereich und dort zu den Plugins. +Nach dem Upload gehts in den Friendica Adminbereich und dort zu den Plugins. Aktiviere das Jappixmini Addon und gehe anschließend über die Plugins Seitenleiste (dort wo auch die Twitter-, Impressums-, GNU Social-, usw. Einstellungen gemacht werden) zu den Jappix Grundeinstellungen. -Setze hier den Haken zur Aktivierung des BOSH Proxys. +Setze hier den Haken zur Aktivierung des BOSH Proxys. Weiter gehts in den Einstellungen Deines Friendica Accounts. 2. Einstellungen -Gehe bitte zu den Plugin-Einstellungen in Deinen Konto-Einstellungen (Account Settings). +Gehe bitte zu den Plugin-Einstellungen in Deinen Konto-Einstellungen (Account Settings). Scrolle ein Stück hinunter bis zu den Jappix Mini Addon settings. Aktiviere hier zuerst das Addon. -Trage nun Deinen Jabber/XMPP Namen ein, ebenfalls die entsprechende Domain bzw. den Server (ohne http, also zb einfach so: jappix.com). +Trage nun Deinen Jabber/XMPP Namen ein, ebenfalls die entsprechende Domain bzw. den Server (ohne http, also zb einfach so: jappix.com). Um das JavaScript Applet zum Chatten im Browser verwenden zu können, benötigst du einen BOSH Proxy. Entweder betreibst du deinen eigenen (s. Dokumentation deines XMPP Servers) oder du verwendest einen öffentlichen BOSH Proxy. Beachte aber, dass der Betreiber dieses Proxies den kompletten Datenverkehr über den Proxy mitlesen kann. -Siehe dazu auch die „Configuration Help“ weiter unten. -Gebe danach noch Dein Passwort an, und damit ist eigentlich schon fast alles geschafft. -Die weiteren Einstellmöglichkeiten bleiben Dir überlassen, sind also optional. +Siehe dazu auch die „Configuration Help“ unter den Eingabefeldern. +Gebe danach noch Dein Passwort an, und damit ist eigentlich schon fast alles geschafft. +Die weiteren Einstellmöglichkeiten bleiben Dir überlassen, sind also optional. Jetzt noch auf „senden“ klicken und fertig. -Deine Chatbox sollte jetzt irgendwo unten rechts im Browserfenster „kleben“. -Falls Du manuell Kontakte hinzufügen möchtest, einfach den „Add Contact“-Knopf nutzen. +Deine Chatbox sollte jetzt irgendwo unten rechts im Browserfenster „kleben“. +Falls Du manuell Kontakte hinzufügen möchtest, einfach den „Add Contact“-Knopf nutzen. -Viel Spass beim Chatten! +Viel Spass beim Chatten! diff --git a/doc/de/Developers.md b/doc/de/Developers.md index b1d118fd59..2b44e405ff 100644 --- a/doc/de/Developers.md +++ b/doc/de/Developers.md @@ -7,18 +7,23 @@ Hier erfährst Du, wie Du bei uns mitmachen kannst: Zunächst erstelle Dir per 'git clone https://github.com/friendica/friendica.git' ein funktionierendes Git-Paket auf Deinem System, auf dem Du die Entwicklung durchführst, und einen eigenen Github-Account. -Erstelle Deine eigene Kopie (fork) der Ursprungsdaten auf Github, an der Du dann entspannt arbeiten kannst. +Erstelle Deine eigene Kopie (fork) der Ursprungsdaten auf Github, an der Du dann entspannt arbeiten kannst. Deine Arbeiten sollten mit einem neuen Arbeitszweig (branch) beginnen, den du vom develop Zweig des Repositories beginnst. Die Anleitung unter [http://help.github.com/fork-a-repo/](http://help.github.com/fork-a-repo/) erklärt Dir genau, wie Du das tun musst. Gehe dann nach getaner Arbeit zu Deiner Github-Seite und erstelle eine "Pull request", um Deine Änderungen in das Hauptprojekt einzugliedern (merge). +Solltest du keine Idee haben, an welcher Stelle du einsteigen könntest. +Wir haben einige Aufgaben auf github mit dem Schlagwort *Junior Job* versehen. +Bei diesen Aufgaben gehen wir davon aus, dass sie geeignete Einstiegsstellen sind. +Du musst dich aber natürlich nicht mit diesen Aufgaben beschäftigen um den Friendica Code zu verbeesern. + **Wichtig** -Bitte hole Dir alle Änderungen aus dem Projektverzeichnis und führe sie mit Deiner Arbeit zusammen, **bevor** Du Deine "pull request" erstellst. Wir behalten es uns vor, Patches abzulehnen, die eine große Anzahl an Fehlern hervorrufen. +Bitte hole Dir alle Änderungen aus dem Projektverzeichnis und führe sie mit Deiner Arbeit zusammen, **bevor** Du Deine "pull request" erstellst. Wir behalten es uns vor, Patches abzulehnen, die eine große Anzahl an Fehlern hervorrufen. Dies gilt vor allem für Übersetzungen, da wir hier möglicherweise nicht alle feinen Unterschiede in konfliktären Versionen erkennen können. -Außerdem: **teste Deine Änderungen!** Vergiss nicht, dass eine simple Fehlerlösung einen anderen Fehler auslösen kann. +Außerdem: **teste Deine Änderungen!** Vergiss nicht, dass eine simple Fehlerlösung einen anderen Fehler auslösen kann. Lass Deine Änderungen von einem erfahrenen Friendica-Entwickler gegenprüfen. Eine ausführliche Anleitung zu Git findest Du unter https://git-scm.com/book/de/v1. diff --git a/doc/de/FAQ.md b/doc/de/FAQ.md index d5aa19e6c7..52d56dce8a 100644 --- a/doc/de/FAQ.md +++ b/doc/de/FAQ.md @@ -100,9 +100,9 @@ Wenn Du einen Kontakt komplett löschst, können sie Dir eine neue Freundschafts Blockierte Kontakte können das nicht machen. Sie können nicht mit Dir direkt kommunizieren, nur über Freunde. -Ignorierte Kontakte können weiterhin Beiträge von Dir erhalten. -Deren Beiträge werden allerdings nicht importiert. W -ie bei blockierten Beiträgen siehst Du auch hier weiterhin die Kommentare dieser Person zu anderen Beiträgen Deiner Freunde. +Ignorierte Kontakte können weiterhin Beiträge und private Nachrichten von Dir erhalten. +Deren Beiträge und private Nachrichten werden allerdings nicht importiert. +Wie bei blockierten Beiträgen siehst Du auch hier weiterhin die Kommentare dieser Person zu anderen Beiträgen Deiner Freunde. [Ein Plugin namens "blockem" kann installiert werden, um alle Beiträge einer bestimmten Person in Deinem Stream zu verstecken bzw. zu verkürzen. Dabei werden auch Kommentare dieser Person in Beiträgen Deiner Freunde blockiert.] diff --git a/doc/de/Home.md b/doc/de/Home.md index 561809d6ce..2a9ea091ed 100644 --- a/doc/de/Home.md +++ b/doc/de/Home.md @@ -32,11 +32,13 @@ Friendica - Dokumentation und Ressourcen * [Konfigurationen](help/Settings) * [Plugins](help/Plugins) * [Konnektoren (Connectors) installieren (Twitter/GNU Social)](help/Installing-Connectors) +* [Installation eines ejabberd Servers (XMPP-Chat) mit synchronisierten Anmeldedaten](help/install-ejabberd) (EN) * [Nachrichtenfluss](help/Message-Flow) * [Betreibe deine Seite mit einem SSL-Zertifikat](help/SSL) * [Entwickler](help/Developers) * [Twitter/GNU Social API Functions](help/api) (EN) * [Translation of Friendica](help/translations) (EN) +* [Konfigurationswerte, die nur in der .htconfig.php gesetzt werden können](help/htconfig) (EN) **Entwickler Dokumentation** @@ -58,4 +60,5 @@ Friendica - Dokumentation und Ressourcen **Über diese Seite** * [Seite/Friendica-Version](friendica) +* [Mitwirkenden bei Friendica](credits) diff --git a/doc/de/SSL.md b/doc/de/SSL.md index dd9b42676e..e9deb21b7b 100644 --- a/doc/de/SSL.md +++ b/doc/de/SSL.md @@ -3,216 +3,124 @@ Friendica mit SSL nutzen * [Zur Startseite der Hilfe](help) -Wenn du deine eigene Friendica-Seite betreibst, willst du vielleicht SSL (https) nutzen, um die Kommunikation zwischen dir und deinem Server zu verschlüsseln (die Kommunikation zwischen den Servern ist bereits verschlüsselt). +Disclaimer +--- +**Dieses Dokument wurde im November 2015 aktualisiert. +SSL-Verschlüsselung ist sicherheitskritisch. +Das bedeutet, dass sich die empfohlenen Einstellungen schnell verändern. +Halte deine Installation auf dem aktuellen Stand und verlasse dich nicht darauf, dass dieses Dokument genau so schnell aktualisiert wird, wie sich Technologien verändern!** -Wenn du das auf deiner eigenen Domain machen willst, musst du ein Zertifikat von einer anerkannten Organisation beschaffen (sogenannte selbst-signierte Zertifikate, die unter Computerfreaks beliebt sind, arbeiten nicht sehr gut mit Friendica, weil sie Warnungen im Browser hervorrufen können). +Einleitung +--- -Wenn du dieses Dokument liest, bevor du Friendica installierst, kannst du eine sehr einfache Option in Betracht ziehen: suche dir ein geteiltes Hosting-Angebot (shared hosting) ohne eigene Domain. -Dadurch wirst du eine Adresse in der Form deinName.deinAnbietername.de erhalten, was nicht so schön wie deinName.de ist. -Aber es wird trotzdem deine ganz persönliche Seite sein und du wirst unter Umständen die Möglichkeit haben, das SSL-Zertifikat deines Anbieters mitzubenutzen. -Das bedeutet, dass du SSL überhaupt nicht konfigurieren musst - es wird einfach sofort funktionieren, wenn die Besucher deiner Seite https statt http eingeben. +Wenn du deine eigene Friendica-Seite betreibst, willst du vielleicht SSL (https) nutzen, um die Kommunikation zwischen den Servern und zwischen dir und deinem Server zu verschlüsseln. -Wenn dir diese Lösung nicht gefällt, lies weiter... +Dafür gibt es grundsätzlich zwei Arten von SSL-Zertifikaten: Selbst-signierte Zertifikate und Zertifikate, die von einer Zertifizierungsstelle (CA) unterschrieben sind. +Technisch gesehen sorgen beide für valide Verschlüsselung. +Mit selbst-signierten Zertifikaten gibt es jedoch ein Problem: +Sie sind weder in Browsern noch auf anderen Servern installiert. +Deshalb führen sie zu Warnungen über "nicht vertrauenswürdige Zertifikate". +Das ist verwirrend und stört sehr. -**Geteilte Hosting-Angebote/Shared hosts** +Aus diesem Grund empfehlen wir, dass du dir ein von einer CA unterschriebenes Zertifikat besorgst. +Normalerweise kosten sie Geld - und sind nur für eine begrenzte Zeit gültig (z.B. ein Jahr oder zwei). -Wenn du ein geteiltes Hosting-Angebot mit einer eigenen Domain nutzt, dann wird dir dein Anbieter ggf. anbieten, dir das Zertifikat zu besorgen und zu installieren. -Du musst es nur beantragen und bezahlen und alles wird eingerichtet. -Wenn das die Lösung für dich ist, musst du das weitere Dokument nicht lesen. -Gehe nur sicher, dass das Zertifikat auch für die Domain gilt, die du für Friendica nutzt: z.B. meinfriendica.de oder friendica.meinserver.de. +Es gibt aber Möglichkeiten, ein vertrauenswürdiges Zertifikat umsonst zu bekommen. -Das Vorangehende wird die häufigste Art sein, eine Friendica-Seite zu betreiben, so dass der Rest des Artikels für die meisten Leute nicht von Bedeutung ist. +Wähle deinen Domainnamen +--- -**Beschaffe dir das Zertifikat selbst** +Dein SSL-Zertifikat wird für eine bestimmte Domain gültig sein oder sogar nur für eine Subdomain. +Entscheide dich endgültig für einen Domainnamen, *bevor* du ein Zertifikat bestellst. +Wenn du das Zertifikat hast, brauchst du ein neues, wenn du den Domainnamen ändern möchtest. -Alternativ kannst du dir auch selbst ein Zertifikat besorgen und hochladen, falls dein Anbieter das unterstützt. +Gehosteter Webspace +--- -Der nächste Abschnitt beschreibt den Ablauf, um ein Zertifikat von StartSSL zu erhalten. -Das Gute an StartSSL ist, dass du kostenlos ein einfaches, aber perfekt ausreichendes Zertifikat erhältst. -Das ist bei vielen anderen Anbietern nicht so, weshalb wir uns in diesem Dokument auf StartSSL konzentrieren werden. -Wenn du ein Zertifikat eines anderen Anbieters nutzen willst, musst du die Vorgaben dieser Organisation befolgen. -Wir können hier nicht jede Möglichkeit abdecken. +Wenn deine Friendica-Instanz auf einem gehosteten Webspace läuft, solltest du dich bei deinem Hosting-Provider informieren. +Dort bekommst du Instruktionen, wie es dort läuft. +Du kannst bei deinem Provider immer ein kostenpflichtiges Zertifikat bestellen. +Sie installieren es für dich oder haben in der Weboberfläche eine einfache Upload-Möglichkeit für Zertifikat und Schlüssel. -Die Installation deines erhaltenen Zertifikats hängt von den Vorgaben deines Anbieters ab. -Aber generell nutzen solche Anbieter ein einfaches Web-Tool, um die Einrichtung zu unterstützen. +Um Geld zu sparen, kann es sich lohnen, dort auch nachzufragen, ob sie ein anderes Zertifikat, das du selbst beschaffst, für dich installieren würden. +Wenn ja, dann lies weiter. -Beachte: dein Zertifikat gilt gewöhnlich nur für eine Subdomain. -Wenn du dein Zertifikat beantragst, sorge dafür, dass es für die Domain und die Subdomain gilt, die du für Friendica nutzt: z.B. meinfriendica.de oder friendica.meinserver.de. +Ein kostenloses StartSSL-Zertifikat besorgen +--- -**Erhalte ein kostenloses StartSSL-Zertifikat** +StartSSL ist eine Zertifizierungsstelle, die kostenlose Zertifikate ausstellt. +Sie sind für ein Jahr gültig und genügen für unsere Zwecke. -Die Webseite von StartSSL führt dich durch den Erstellungsprozess, aber manche Leute haben hier trotzdem Probleme. -Wir empfehlen dir ausdrücklich, die Installationsanleitung Schritt für Schritt langsam und sorgfältig zu befolgen. -Lese dir jedes Wort durch und schließe deinen Browser erst, wenn alles läuft. -Es heißt, dass es drei Schritte gibt, die den Nutzer verwirren können: +### Schritt 1: Client-Zertifikat erstellen -Wenn du dich erstmals bei StartSSL anmeldest, erhältst du ein erstes Zertifikat, dass sich einfach in deinem Browser installiert. -Dieses Zertifikat solltest du zur Sicherheit irgendwo speichern, so dass du es für einen neuen Browser neu installieren kannst, wenn du z.B. etwas erneuern musst. -Dieses Authentifizierungszertifikat wird nur für das Login benötigt und hat nichts mit dem Zertifikat zu tun, dass du später für deinen Server benötigst. -Als Anfänger mit StartSSL kannst du [hier starten](https://www.startssl.com/?lang=de) und die "Express Lane" nutzen, um dein Browser-Zertifikiat zu erhalten. -Im nächsten Schritt kannst du die Einrichtung deines Zertifikats fortsetzen. +Wenn du dich erstmalig bei StartSSL anmeldest, erhältst du ein Zertifikat, das in deinem Browser installiert wird. +Du brauchst es, um dich bei StartSSL einzuloggen, auch wenn du später wiederkommst. +Dieses Client-Zertifikat hat nichts mit dem SSL-Zertifikat für deinen Server zu tun. -Wenn du zuerst nach einer Domain für dein Zertifikat gefragt wirst, musst du die Top-Level-Domain angeben, nicht die Subdomain, die Friendica nutzt. -Im nächsten Schritt kannst du dann die Subdomain spezifizieren. -Wenn du also friendica.deinName.de auf deinem Server hast, musst du zuerst deinName.de angeben. +### Schritt 2: Email-Adresse und Domain validieren -Höre nicht zu früh auf, wenn du am Ende der Einrichtung dein persönliches Server-Zertifikat erhalten hast. -Abhängig von deiner Server-Software benötigst du ein oder zwei generische Dateien, die du mit deinem kostenlosen StartSSL-Zertifikat nutzen musst. -Diese Dateien sind sub.class1.server.ca.pem und ca.pem. -Wenn du diesen Schritt bereits übersprungen hast, kannst du die Dateien hier finden: [http://www.startssl.com/?app=21](http://www.startssl.com/?app=21). -Aber am besten funktioniert es, wenn du StartSSL nicht beendest, bevor du den Vorgang komplett abgeschlossen hast und dein https-Zertifikat hochgeladen ist und funktioniert. +Um fortzufahren musst du beweisen, dass du die Email-Adresse, die du angegeben hast, und die Domain, für die du das Zertifikat möchtest, besitzt. +Gehe in den "Validation wizard" und fordere einen Bestätigungslink per Mail an. +Dasselbe machst du auch für die Validierung der Domain. -**Virtuelle private und dedizierte Server (mit StartSSL free)** +### Schritt 3: Das Zertifikat bestellen -Der Rest dieses Dokuments ist etwas komplizierter, aber es ist auch nur für Personen, die Friendica auf einem virtuellen oder dedizierten Server nutzen. -Jeder andere kann an dieser Stelle mit dem Lesen aufhören. +Gehe in den "Certificate wizard". +Wähle das Target Webserver. +Bei der ersten Abfrage der Domain gibst du deine Hauptdomain an. +Im nächsten Schritt kannst du eine Subdomain hinzufügen. +Ein Beispiel: Wenn die Adresse der Friendica-Instanz friendica.beispiel.net lautet, gibst du zuerst beispiel.net an und danach friendica. -Folge den weiteren Anleitungen [hier](http://www.startssl.com/?app=20), um den Webserver, den du benutzt (z.B. Apache), für dein Zertifikat einzurichten. +Wenn du weißt, wie man einen openssl-Schlüssel und einen Certificate Signing Request (CSR) erstellt, tu das. +Kopiere den CSR in den Browser, um ihn von StartSSL signiert zu bekommen. -Um die nötigen Schritte zu verdeutlichen, setzen wir nun voraus, dass Apache aktiv ist. -Im Wesentlichen kannst du einfach einen zweiten httpd.conf-Eintrag für Friendica erstellen. +Wenn du nicht weißt, wie man Schlüssel und CSR erzeugt, nimm das Angebot von StartSSL an, beides für dich zu generieren. +Das bedeutet: StartSSL hat den Schlüssel zu deiner SSL-Verschlüsselung, aber das ist immer noch besser als gar kein Zertifikat. +Lade dein Zertifikat von der Website herunter. +(Oder im zweiten Fall: Lade Zertifikat und Schlüssel herunter.) -Um das zu machen, kopiere den existierenden Eintrag und ändere das Ende der ersten Zeile auf "lesen" :443> anstelle von :80> und trage dann die folgenden Zeilen ein, wie du es auch in der Anleitung von StartSSL finden kannst: +Um dein Zertifikat auf einem Webserver zu installieren, brauchst du noch ein oder zwei andere Dateien: sub.class1.server.ca.pem und ca.pem, auch von StartSSL. +Gehe in die Rubrik "Tool box" und lade "Class 1 Intermediate Server CA" und "StartCom Root CA (PEM encoded)" herunter. - SSLEngine on - SSLProtocol all -SSLv2 - SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM +Wenn du dein Zertifikat zu deinem Hosting-Provider schicken möchtest, brauchen Sie mindestens Zertifikat und Schlüssel. +Schick zur Sicherheit alle vier Dateien hin. +**Du solltest sie auf einem verschlüsselten Weg hinschicken!** - SSLCertificateFile /usr/local/apache/conf/ssl.crt - SSLCertificateKeyFile /usr/local/apache/conf/ssl.key - SSLCertificateChainFile /usr/local/apache/conf/sub.class1.server.ca.pem - SSLCACertificateFile /usr/local/apache/conf/ca.pem - SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown - CustomLog /usr/local/apache/logs/ssl_request_log \ - "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" +Wenn du deinen eigenen Server betreibst, lade die Dateien hoch und besuche das Mozilla-Wiki (Link unten). -(Beachte, dass das Verzeichnis /usr/local/apache/conf/ möglicherweise nicht in deinem System existiert. -In Debian ist der Pfad bspw. /etc/apache2/, in dem du ein SSL-Unterverzeichnis erstellen kannst, wenn dieses noch nicht vorhanden ist. -Dann hast du /etc/apache2/ssl/… statt /usr/local/apache/conf/…) +Let's encrypt +--- -Du solltest nun zwei Einträgen für deine Friendica-Seite haben - einen für einfaches http und eines für https. +Wenn du einen eigenen Server betreibst und den Nameserver kontrollierst, könnte auch die Initiative "Let's encrypt" interessant für dich werden. +Momentan ist deren Angebot noch nicht fertig. +Auf der [Website](https://letsencrypt.org/) kannst du dich über den Stand informieren. -Ein Hinweis für diejenigen, die SSL steuern wollen: setze keine Weiterleitung deines SSL in deine Apache-Einstellung. Friendicas Admin-Panel hat eine spezielle Einstellung für die SSL-Methode. -Bitte nutze diese Einstellungen. +Webserver-Einstellungen +--- -**Vermische Zertifikate in Apache – StartSSL und andere (selbst-signierte)** +Im [Wiki von Mozilla](https://wiki.mozilla.org/Security/Server_Side_TLS) gibt es Anleitungen für die Konfiguration sicherer Webserver. +Dort findest du Empfehlungen, die auf [verschiedene Webserver](https://wiki.mozilla.org/Security/Server_Side_TLS#Recommended_Server_Configurations) zugeschnitten sind. -Viele Leute nutzen einen virtuellen privaten oder einen dedizierten Server, um mehr als Friendica darauf laufen zu lassen. -Sie wollen möglicherweise SSL auch für andere Seiten nutzen, die auf dem Server liegen. -Um das zu erreichen, wollen sie mehrere Zertifikate für eine IP nutzen, z.B. ein Zertifikat eines anerkannten Anbieters für Friendica und ein selbst-signiertes für eine persönliche Inhalte (möglw. ein Wildcard-Zertifikat für mehrere Subdomains). +Teste deine SSL-Einstellungen +--- -Um das zum Laufen zu bringen, bietet Apache eine NameVirtualHost-Direktive. -Du findest Informationen zur Nutzung in httpd.conf in den folgenden Ausschnitten. -Beachte, dass Wildcards (*) in httpd.conf dazu führen, dass die NameVirtualHost-Methode nicht funktioniert; du kannst diese in dieser neuen Konfiguration nicht nutzen. -Das bedeutet, dass *80> oder *443> nicht funktionieren. -Und du musst unbedingt die IP definieren, selbst wenn du nur eine hast. -Beachte außerdem, dass du bald zwei Zeilen zu Beginn der Datei hinzufügen musst, um NameVirtualHost für IPv6 vorzubereiten. +Wenn du fertig bist, kannst du auf der Testseite [SSL-Labs](https://www.ssllabs.com/ssltest/) prüfen lassen, ob Du alles richtig gemacht hast. - NameVirtualHost 12.123.456.1:443 - NameVirtualHost 12.123.456.1:80 - - DocumentRoot /var/www/anywhere - Servername www.anywhere.net - - - DocumentRoot /var/www/anywhere - Servername www.anywhere.net - SSLEngine On - - - - - - DocumentRoot /var/www/somewhere-else - Servername www.somewhere-else.net - - - DocumentRoot /var/www/somewhere-else - Servername www.somewhere-else.net - SSLEngine On - - - - -Natürlich kannst du auch andere Verzeichnisse auf deinem Server nutzen, um Apache zu konfigurieren. -In diesem Fall müssen nur einige Zeilen in httpd.conf oder ports.conf angepasst werden - vor allem die NameVirtualHost-Zeilen. -Aber wenn du sicher im Umgang mit solchen Alternativen bist, wirst du sicherlich die nötigen Anpassungen herausfinden. -Starte dein Apache abschließend neu. -**StartSSL auf Nginx** -Führe zunächst ein Update auf den neuesten Friendica-Code durch. -Folge dann der Anleitung oben, um dein kostenloses Zertifikat zu erhalten. -Aber statt der Apache-Installationsanleitung zu folgen, mache das Folgende: -Lade dein Zertifikat hoch. -Es ist nicht wichtig, wohin du es lädst, solange Nginx es finden kann. -Einige Leute nutzen /home/verschiedeneNummernundBuchstaben, du kannst aber auch z.B. etwas wie /foo/bar nutzen. -Du kannst das Passwort entfernen, wenn du willst. -Es ist zwar möglicherweise nicht die beste Wahl, aber wenn du es nicht machst, wirst du das Passwort immer wieder eingeben müssen, wenn du Ngingx neustartest. -Um es zu entfernen, gebe Folgendes ein: - openssl rsa -in ssl.key-pass -out ssl.key -Nun hole dir das Hifs-Zertifikat: - wget http://www.startssl.com/certs/sub.class1.server.ca.pem -Nun vereinige die Dateien: - cat ssl.crt sub.class1.server.ca.pem > ssl.crt -In manchen Konfigurationen ist ein Bug enthalten, weshalb diese Schritte nicht ordentlich arbeiten. -Du musst daher ggf. ssl.crt bearbeiten: - nano /foo/bar/ssl.crt -Du wirst zwei Zertifikate in der gleichen Date sehen. In der Mitte findest du: - - -----END CERTIFICATE----------BEGIN CERTIFICATE----- - -Das ist schlecht. Du brauchst die folgenden Einträge: - - -----END CERTIFICATE----- - -----BEGIN CERTIFICATE----- - - -Du kannst den Zeilenumbruch manuell eingeben, falls dein System vom Bug betroffen ist. -Beachte, dass nach -----BEGIN CERTIFICATE----- nur ein Zeilenumbruch ist. -Es gibt keine leere Zeile zwischen beiden Einträgen. - -Nun musst du Nginx über die Zertifikate informieren. - -In /etc/nginx/sites-available/foo.com.conf benötigst du etwas wie: - - server { - - listen 80; - - listen 443 ssl; - - listen [::]:80; - - listen [::]:443 ipv6only=on ssl; - - ssl_certificate /foo/bar/ssl.crt; - - ssl_certificate_key /foo/bar/ssl.key; - - ... - -Nun starte Nginx neu: - - /etc/init.d/nginx restart - -Und das war es schon. - -Für multiple Domains ist es mit Nginx einfacher als mit Apache. -Du musst du oben genannten Schritte nur für jedes Zertifikat wiederholen und die spezifischen Informationen im eigenen {server...}-Bereich spezifizieren. diff --git a/doc/events.md b/doc/events.md index abb4576871..0aca7a902b 100644 --- a/doc/events.md +++ b/doc/events.md @@ -53,9 +53,21 @@ In the descirption and location field you can use BBCode to format the text. When you *Share* the event it will be posted to your wall with the access permissions you've selected. But before you do, you can also *preview* the event in a pop-up box. +### Interaction with Events + +When you publish an event, you can choose who shall receive it, as with a regular new posting. +The recipients will see the posting about the event in their network-stream. +Additionally it will be added to their calendar and thus be shown in their events overview page. + +Recipients of the event-posting can comment or dis-/like the event, as with a regular posting, but also announce that they will attend, not attend or may-be attend the event with a single click. + ### Addons #### OpenStreetMap If this addon is activated on you friendica node, the content of the location field will be mathced with the identification service of OSM when you submit the event. Should OSM find anything matching, a map for the location will be embedded automatically at the end of the events view. + +#### Calendar Export + +If this addon is activated the public events you have created will be published in ical or csv file. The URL of the published file is ``example.com/cal/nickname/export/format`` (where format is either ical of csv). \ No newline at end of file diff --git a/doc/htconfig.md b/doc/htconfig.md new file mode 100644 index 0000000000..d46abb3a0b --- /dev/null +++ b/doc/htconfig.md @@ -0,0 +1,98 @@ +Config values that can only be set in .htconfig.php +=================================================== + +There are some config values that haven't found their way into the administration page. This has several reasons. Maybe they are part of a +current development that isn't considered stable and will be added later in the administration page when it is considered safe. Or it triggers +something that isn't expected to be of public interest. Or it is for testing purposes only. + +**Attention:** Please be warned that you shouldn't use one of these values without the knowledge what it could trigger. Especially don't do that with +undocumented values. + +The header of the section describes the category, the value is the parameter. Example: To set the directory value please add this +line to your .htconfig.php: + + $a->config['system']['directory'] = 'http://dir.friendi.ca'; + + + +## Jabber ## +* debug (Boolean) - Enable debug level for the jabber account synchronisation. +* logfile - Logfile for the jabber account synchronisation. + +## System ## + +* birthday_input_format - Default value is "ymd". +* block_local_dir (Boolean) - Blocks the access to the directory of the local users. +* default_service_class - +* delivery_batch_count - Number of deliveries per process. Default value is 1. (Disabled when using the worker) +* diaspora_test (Boolean) - For development only. Disables the message transfer. +* directory - The path to global directory. If not set then "http://dir.friendi.ca" is used. +* disable_email_validation (Boolean) - Disables the check if a mail address is in a valid format and can be resolved via DNS. +* disable_url_validation (Boolean) - Disables the DNS lookup of an URL. +* event_input_format - Default value is "ymd". +* ignore_cache (Boolean) - For development only. Disables the item cache. +* like_no_comment (Boolean) - Don't update the "commented" value of an item when it is liked. +* local_block (Boolean) - Used in conjunction with "block_public". +* local_search (Boolean) - Blocks the search for not logged in users to prevent crawlers from blocking your system. +* max_contact_queue - Default value is 500. +* max_batch_queue - Default value is 1000. +* no_oembed (Boolean) - Don't use OEmbed to fetch more information about a link. +* no_oembed_rich_content (Boolean) - Don't show the rich content (e.g. embedded PDF). +* no_smilies (Boolean) - Don't show smilies. +* no_view_full_size (Boolean) - Don't add the link "View full size" under a resized image. +* optimize_items (Boolean) - Triggers an SQL command to optimize the item table before expiring items. +* ostatus_poll_timeframe - Defines how old an item can be to try to complete the conversation with it. +* paranoia (Boolean) - Log out users if their IP address changed. +* permit_crawling (Boolean) - Restricts the search for not logged in users to one search per minute. +* png_quality - Default value is 8. +* proc_windows (Boolean) - Should be enabled if Friendica is running under Windows. +* proxy_cache_time - Time after which the cache is cleared. Default value is one day. +* pushpoll_frequency - +* qsearch_limit - Default value is 100. +* relay_server - Experimental Diaspora feature. Address of the relay server where public posts should be send to. For example https://podrelay.net +* relay_subscribe (Boolean) - Enables the receiving of public posts from the relay. They will be included in the search and on the community page when it is set up to show all public items. +* relay_scope - Can be "all" or "tags". "all" means that every public post should be received. "tags" means that only posts witt selected tags should be received. +* relay_server_tags - Comma separated list of tags for the "tags" subscription (see "relay_scrope") +* relay_user_tags (Boolean) - If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags". +* remove_multiplicated_lines (Boolean) - If enabled, multiple linefeeds in items are stripped to a single one. +* show_unsupported_addons (Boolean) - Show all addons including the unsupported ones. +* show_unsupported_themes (Boolean) - Show all themes including the unsupported ones. +* throttle_limit_day - Maximum number of posts that a user can send per day with the API. +* throttle_limit_week - Maximum number of posts that a user can send per week with the API. +* throttle_limit_month - Maximum number of posts that a user can send per month with the API. +* wall-to-wall_share (Boolean) - Displays forwarded posts like "wall-to-wall" posts. +* worker (Boolean) - (Experimental) Use the worker system instead of calling several background processes. Reduces the overall load and speeds up item delivery. +* worker_dont_fork (Boolean) - if enabled, the workers are only called from the poller process. Useful on systems that permit the use of "proc_open". +* worker_queues - Number of parallel workers. Default value is 10 queues. +* xrd_timeout - Timeout for fetching the XRD links. Default value is 20 seconds. + +## service_class ## + +* upgrade_link - + +## experimentals ## + +* exp_themes (Boolean) - Show experimental themes as well. + +## theme ## + +* hide_eventlist (Boolean) - Don't show the birthdays and events on the profile and network page + +# Administrator Options # + +Enabling the admin panel for an account, and thus making the account holder +admin of the node, is done by setting the variable + + $a->config['admin_email'] = "someone@example.com"; + +where you have to match the email address used for the account with the one you +enter to the .htconfig file. If more then one account should be able to access +the admin panel, seperate the email addresses with a comma. + + $a->config['admin_email'] = "someone@example.com,someonelese@example.com"; + +If you want to have a more personalized closing line for the notification +emails you can set a variable for the admin_name. + + $a->config['admin_name'] = "Marvin"; + diff --git a/doc/install-ejabberd.md b/doc/install-ejabberd.md new file mode 100644 index 0000000000..c99a845500 --- /dev/null +++ b/doc/install-ejabberd.md @@ -0,0 +1,45 @@ +Install an ejabberd with synchronized credentials +================================================= + +* [Home](help) + +[Ejabberd](https://www.ejabberd.im/) is a chat server that uses XMPP as messaging protocol that you can use with a large amount of clients. In conjunction +with the "xmpp" addon it can be used for a web based chat solution for your users. + +Installation +------------ + +- Change it's owner to whichever user is running the server, ie. ejabberd + + $ chown ejabberd:ejabberd /path/to/friendica/include/auth_ejabberd.php + +- Change the access mode so it is readable only to the user ejabberd and has exec + + $ chmod 700 /path/to/friendica/include/auth_ejabberd.php + +- Edit your ejabberd.cfg file, comment out your auth_method and add: + + {auth_method, external}. + {extauth_program, "/path/to/friendica/include/auth_ejabberd.php"}. + +- Disable the module "mod_register" and disable the registration: + + {access, register, [{deny, all}]}. + +- Enable BOSH: + - Enable the module "mod_http_bind" + - Edit this line: + + {5280, ejabberd_http, [captcha, http_poll, http_bind]} + + - In your apache configuration for your site add this line: + + ProxyPass /http-bind http://127.0.0.1:5280/http-bind retry=0 + +- Restart your ejabberd service, you should be able to login with your friendica credentials + +Other hints +----------- +- if a user has a space or a @ in the nickname, the user has to replace these characters: + - " " (space) is replaced with "%20" + - "@" is replaced with "(a)" diff --git a/doc/readme.md b/doc/readme.md index a5eeb54511..068d0c9c5c 100644 --- a/doc/readme.md +++ b/doc/readme.md @@ -30,6 +30,7 @@ Friendica Documentation and Resources * [Settings](help/Settings) * [Plugins](help/Plugins) * [Installing Connectors (Twitter/GNU Social)](help/Installing-Connectors) +* [Install an ejabberd server (XMPP chat) with synchronized credentials](help/install-ejabberd) * [Message Flow](help/Message-Flow) * [Using SSL with Friendica](help/SSL) * [Developers](help/Developers) diff --git a/images/icons.png b/images/icons.png index 0ff5c430c5..e255316e6d 100644 Binary files a/images/icons.png and b/images/icons.png differ diff --git a/include/Contact.php b/include/Contact.php index 920ec3c2b4..b98c9f7056 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -144,7 +144,7 @@ function terminate_friendship($user,$self,$contact) { // and we won't waste any more time trying to communicate with them. // This provides for the possibility that their database is temporarily messed // up or some other transient event and that there's a possibility we could recover from it. - + if(! function_exists('mark_for_death')) { function mark_for_death($contact) { @@ -166,7 +166,7 @@ function mark_for_death($contact) { $expiry = $contact['term-date'] . ' + 32 days '; if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) { - // relationship is really truly dead. + // relationship is really truly dead. // archive them rather than delete // though if the owner tries to unarchive them we'll start the whole process over again @@ -191,6 +191,100 @@ function unmark_for_death($contact) { ); }} +function get_contact_details_by_url($url, $uid = -1) { + require_once("mod/proxy.php"); + require_once("include/bbcode.php"); + + if ($uid == -1) + $uid = local_user(); + + $r = q("SELECT `id` AS `gid`, `url`, `name`, `nick`, `addr`, `photo`, `location`, `about`, `keywords`, `gender`, `community`, `network` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1", + dbesc(normalise_link($url))); + + if ($r) { + $profile = $r[0]; + + if ((($profile["addr"] == "") OR ($profile["name"] == "")) AND + in_array($profile["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) + proc_run('php',"include/update_gcontact.php", $profile["gid"]); + + } else { + $r = q("SELECT `url`, `name`, `nick`, `avatar` AS `photo`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", + dbesc(normalise_link($url))); + + if (count($r)) { + $profile = $r[0]; + $profile["keywords"] = ""; + $profile["gender"] = ""; + $profile["community"] = false; + $profile["network"] = ""; + $profile["addr"] = ""; + } + } + + // Fetching further contact data from the contact table + $r = q("SELECT `id`, `uid`, `url`, `network`, `name`, `nick`, `addr`, `location`, `about`, `keywords`, `gender`, `photo`, `addr`, `forum`, `prv`, `bd` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `network` = '%s'", + dbesc(normalise_link($url)), intval($uid), dbesc($profile["network"])); + + if (!count($r)) + $r = q("SELECT `id`, `uid`, `url`, `network`, `name`, `nick`, `addr`, `location`, `about`, `keywords`, `gender`, `photo`, `addr`, `forum`, `prv`, `bd` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", + dbesc(normalise_link($url)), intval($uid)); + + if (!count($r)) + $r = q("SELECT `id`, `uid`, `url`, `network`, `name`, `nick`, `addr`, `location`, `about`, `keywords`, `gender`, `photo`, `addr`, `forum`, `prv`, `bd` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0", + dbesc(normalise_link($url))); + + if ($r) { + if (isset($r[0]["url"]) AND $r[0]["url"]) + $profile["url"] = $r[0]["url"]; + if (isset($r[0]["name"]) AND $r[0]["name"]) + $profile["name"] = $r[0]["name"]; + if (isset($r[0]["nick"]) AND $r[0]["nick"] AND ($profile["nick"] == "")) + $profile["nick"] = $r[0]["nick"]; + if (isset($r[0]["addr"]) AND $r[0]["addr"] AND ($profile["addr"] == "")) + $profile["addr"] = $r[0]["addr"]; + if (isset($r[0]["photo"]) AND $r[0]["photo"]) + $profile["photo"] = $r[0]["photo"]; + if (isset($r[0]["location"]) AND $r[0]["location"]) + $profile["location"] = $r[0]["location"]; + if (isset($r[0]["about"]) AND $r[0]["about"]) + $profile["about"] = $r[0]["about"]; + if (isset($r[0]["keywords"]) AND $r[0]["keywords"]) + $profile["keywords"] = $r[0]["keywords"]; + if (isset($r[0]["gender"]) AND $r[0]["gender"]) + $profile["gender"] = $r[0]["gender"]; + if (isset($r[0]["forum"]) OR isset($r[0]["prv"])) + $profile["community"] = ($r[0]["forum"] OR $r[0]["prv"]); + if (isset($r[0]["network"]) AND $r[0]["network"]) + $profile["network"] = $r[0]["network"]; + if (isset($r[0]["addr"]) AND $r[0]["addr"]) + $profile["addr"] = $r[0]["addr"]; + if (isset($r[0]["bd"]) AND $r[0]["bd"]) + $profile["bd"] = $r[0]["bd"]; + if ($r[0]["uid"] == 0) + $profile["cid"] = 0; + else + $profile["cid"] = $r[0]["id"]; + } else + $profile["cid"] = 0; + + if (isset($profile["photo"])) + $profile["photo"] = proxy_url($profile["photo"], false, PROXY_SIZE_SMALL); + + if (isset($profile["location"])) + $profile["location"] = bbcode($profile["location"]); + + if (isset($profile["about"])) + $profile["about"] = bbcode($profile["about"]); + + if (($profile["cid"] == 0) AND ($profile["network"] == NETWORK_DIASPORA)) { + $profile["location"] = ""; + $profile["about"] = ""; + } + + return($profile); +} + if(! function_exists('contact_photo_menu')){ function contact_photo_menu($contact) { @@ -219,24 +313,32 @@ function contact_photo_menu($contact) { $status_link = $profile_link . "?url=status"; $photos_link = $profile_link . "?url=photos"; $profile_link = $profile_link . "?url=profile"; - $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id']; } - $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; + if (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA))) + $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id']; + + if ($contact["network"] == NETWORK_DFRN) + $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; + $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id']; $posts_link = $a->get_baseurl() . '/network/0?nets=all&cid=' . $contact['id']; $contact_drop_link = $a->get_baseurl() . "/contacts/" . $contact['id'] . '/drop?confirm=1'; + /** + * menu array: + * "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ] + */ $menu = Array( - 'poke' => array(t("Poke"), $poke_link), - 'status' => array(t("View Status"), $status_link), - 'profile' => array(t("View Profile"), $profile_link), - 'photos' => array(t("View Photos"), $photos_link), - 'network' => array(t("Network Posts"), $posts_link), - 'edit' => array(t("Edit Contact"), $contact_url), - 'drop' => array(t("Drop Contact"), $contact_drop_link), - 'pm' => array(t("Send PM"), $pm_url), + 'status' => array(t("View Status"), $status_link, true), + 'profile' => array(t("View Profile"), $profile_link, true), + 'photos' => array(t("View Photos"), $photos_link,true), + 'network' => array(t("Network Posts"), $posts_link,false), + 'edit' => array(t("Edit Contact"), $contact_url, false), + 'drop' => array(t("Drop Contact"), $contact_drop_link, false), + 'pm' => array(t("Send PM"), $pm_url, false), + 'poke' => array(t("Poke"), $poke_link, false), ); @@ -244,25 +346,13 @@ function contact_photo_menu($contact) { call_hooks('contact_photo_menu', $args); -/* $o = ""; - foreach($menu as $k=>$v){ - if ($v!="") { - if(($k !== t("Network Posts")) && ($k !== t("Send PM")) && ($k !== t('Edit Contact'))) - $o .= "
  • $k
  • \n"; - else - $o .= "
  • $k
  • \n"; - } - } - return $o;*/ - foreach($menu as $k=>$v){ - if ($v[1]!="") { - if(($v[0] !== t("Network Posts")) && ($v[0] !== t("Send PM")) && ($v[0] !== t('Edit Contact'))) - $menu[$k][2] = 1; - else - $menu[$k][2] = 0; - } - } - return $menu; + $menucondensed = array(); + + foreach ($menu AS $menuname=>$menuitem) + if ($menuitem[1] != "") + $menucondensed[$menuname] = $menuitem; + + return $menucondensed; }} diff --git a/include/Photo.php b/include/Photo.php index 785601c7e4..9732801c9a 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -345,38 +345,37 @@ class Photo { } public function orient($filename) { - if ($this->is_imagick()) { - // based off comment on http://php.net/manual/en/imagick.getimageorientation.php - $orientation = $this->image->getImageOrientation(); - switch ($orientation) { - case imagick::ORIENTATION_BOTTOMRIGHT: - $this->image->rotateimage("#000", 180); - break; - case imagick::ORIENTATION_RIGHTTOP: - $this->image->rotateimage("#000", 90); - break; - case imagick::ORIENTATION_LEFTBOTTOM: - $this->image->rotateimage("#000", -90); - break; - } + if ($this->is_imagick()) { + // based off comment on http://php.net/manual/en/imagick.getimageorientation.php + $orientation = $this->image->getImageOrientation(); + switch ($orientation) { + case imagick::ORIENTATION_BOTTOMRIGHT: + $this->image->rotateimage("#000", 180); + break; + case imagick::ORIENTATION_RIGHTTOP: + $this->image->rotateimage("#000", 90); + break; + case imagick::ORIENTATION_LEFTBOTTOM: + $this->image->rotateimage("#000", -90); + break; + } - $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); - return TRUE; - } + $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); + return TRUE; + } // based off comment on http://php.net/manual/en/function.imagerotate.php if(!$this->is_valid()) - return FALSE; + return FALSE; if( (! function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg') ) - return; + return; - $exif = @exif_read_data($filename); + $exif = @exif_read_data($filename,null,true); + if(! $exif) + return; - if(! $exif) - return; - - $ort = $exif['Orientation']; + $ort = $exif['IFD0']['Orientation']; switch($ort) { @@ -413,6 +412,10 @@ class Photo { $this->rotate(90); break; } + + // logger('exif: ' . print_r($exif,true)); + return $exif; + } diff --git a/include/Scrape.php b/include/Scrape.php index 93d68be22b..ae9331ff7a 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -320,7 +320,7 @@ function scrape_feed($url) { * PROBE_DIASPORA has a bias towards returning Diaspora information * while PROBE_NORMAL has a bias towards dfrn/zot - in the case where * an address (such as a Friendica address) supports more than one type - * of network. + * of network. * */ @@ -407,7 +407,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { $pubkey = $diaspora_key; $diaspora = true; } - if($link['@attributes']['rel'] === 'http://ostatus.org/schema/1.0/subscribe') { + if(($link['@attributes']['rel'] === 'http://ostatus.org/schema/1.0/subscribe') AND ($mode == PROBE_NORMAL)) { $diaspora = false; } } @@ -552,7 +552,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if($network !== NETWORK_ZOT && $network !== NETWORK_DFRN && $network !== NETWORK_MAIL) { if($diaspora) $network = NETWORK_DIASPORA; - elseif($has_lrdd) + elseif($has_lrdd AND ($notify)) $network = NETWORK_OSTATUS; if(strpos($url,'@')) @@ -652,9 +652,10 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { $feed->set_raw_data(($xml) ? $xml : ''); $feed->init(); - if($feed->error()) + if($feed->error()) { logger('probe_url: scrape_feed: Error parsing XML: ' . $feed->error()); - + $network = NETWORK_PHANTOM; + } if(! x($vcard,'photo')) $vcard['photo'] = $feed->get_image_url(); @@ -778,6 +779,9 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { $baseurl = rtrim($baseurl, "/"); + if(strpos($url,'@') AND ($addr == "") AND ($network == NETWORK_DFRN)) + $addr = str_replace('acct:', '', $url); + $vcard['fn'] = notags($vcard['fn']); $vcard['nick'] = str_replace(' ','',notags($vcard['nick'])); diff --git a/include/acl_selectors.php b/include/acl_selectors.php index f628b97309..a1154399a7 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -392,7 +392,6 @@ function acl_lookup(&$a, $out_type = 'json') { if(!local_user()) return ""; - $start = (x($_REQUEST,'start')?$_REQUEST['start']:0); $count = (x($_REQUEST,'count')?$_REQUEST['count']:100); $search = (x($_REQUEST,'search')?$_REQUEST['search']:""); @@ -492,7 +491,7 @@ function acl_lookup(&$a, $out_type = 'json') { $groups[] = array( "type" => "g", "photo" => "images/twopeople.png", - "name" => $g['name'], + "name" => htmlentities($g['name']), "id" => intval($g['id']), "uids" => array_map("intval", explode(",",$g['uids'])), "link" => '', @@ -545,9 +544,9 @@ function acl_lookup(&$a, $out_type = 'json') { $x['data'] = array(); if(count($r)) { foreach($r as $g) { - $x['photos'][] = proxy_url($g['micro']); + $x['photos'][] = proxy_url($g['micro'], false, PROXY_SIZE_MICRO); $x['links'][] = $g['url']; - $x['suggestions'][] = $g['name']; + $x['suggestions'][] = htmlentities($g['name']); $x['data'][] = intval($g['id']); } } @@ -559,12 +558,12 @@ function acl_lookup(&$a, $out_type = 'json') { foreach($r as $g){ $contacts[] = array( "type" => "c", - "photo" => proxy_url($g['micro']), - "name" => $g['name'], + "photo" => proxy_url($g['micro'], false, PROXY_SIZE_MICRO), + "name" => htmlentities($g['name']), "id" => intval($g['id']), "network" => $g['network'], "link" => $g['url'], - "nick" => ($g['attag']) ? $g['attag'] : $g['nick'], + "nick" => htmlentities(($g['attag']) ? $g['attag'] : $g['nick']), "forum" => $g['forum'] ); } @@ -604,12 +603,12 @@ function acl_lookup(&$a, $out_type = 'json') { // /nickname $unknow_contacts[] = array( "type" => "c", - "photo" => proxy_url($row['author-avatar']), - "name" => $row['author-name'], + "photo" => proxy_url($row['author-avatar'], false, PROXY_SIZE_MICRO), + "name" => htmlentities($row['author-name']), "id" => '', "network" => "unknown", "link" => $row['author-link'], - "nick" => $nick, + "nick" => htmlentities($nick), "forum" => false ); } diff --git a/include/api.php b/include/api.php index 63d6a17464..2d680dc678 100644 --- a/include/api.php +++ b/include/api.php @@ -285,7 +285,7 @@ * Unique contact to contact url. */ function api_unique_id_to_url($id){ - $r = q("SELECT url FROM unique_contacts WHERE id=%d LIMIT 1", + $r = q("SELECT `url` FROM `unique_contacts` WHERE `id`=%d LIMIT 1", intval($id)); if ($r) return ($r[0]["url"]); @@ -390,9 +390,9 @@ $r = array(); if ($url != "") - $r = q("SELECT * FROM unique_contacts WHERE url='%s' LIMIT 1", $url); + $r = q("SELECT * FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", $url); elseif ($nick != "") - $r = q("SELECT * FROM unique_contacts WHERE nick='%s' LIMIT 1", $nick); + $r = q("SELECT * FROM `unique_contacts` WHERE `nick`='%s' LIMIT 1", $nick); if ($r) { // If no nick where given, extract it from the address @@ -505,14 +505,14 @@ } // Fetching unique id - $r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url']))); + $r = q("SELECT id FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url']))); // If not there, then add it if (count($r) == 0) { - q("INSERT INTO unique_contacts (url, name, nick, avatar) VALUES ('%s', '%s', '%s', '%s')", + q("INSERT INTO `unique_contacts` (`url`, `name`, `nick`, `avatar`) VALUES ('%s', '%s', '%s', '%s')", dbesc(normalise_link($uinfo[0]['url'])), dbesc($uinfo[0]['name']),dbesc($uinfo[0]['nick']), dbesc($uinfo[0]['micro'])); - $r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url']))); + $r = q("SELECT `id` FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", dbesc(normalise_link($uinfo[0]['url']))); } $network_name = network_to_name($uinfo[0]['network'], $uinfo[0]['url']); @@ -539,7 +539,8 @@ 'verified' => true, 'statusnet_blocking' => false, 'notifications' => false, - 'statusnet_profile_url' => $a->get_baseurl()."/contacts/".$uinfo[0]['cid'], + //'statusnet_profile_url' => $a->get_baseurl()."/contacts/".$uinfo[0]['cid'], + 'statusnet_profile_url' => $uinfo[0]['url'], 'uid' => intval($uinfo[0]['uid']), 'cid' => intval($uinfo[0]['cid']), 'self' => $uinfo[0]['self'], @@ -552,32 +553,44 @@ function api_item_get_user(&$a, $item) { - $author = q("SELECT * FROM unique_contacts WHERE url='%s' LIMIT 1", + $author = q("SELECT * FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", dbesc(normalise_link($item['author-link']))); if (count($author) == 0) { - q("INSERT INTO unique_contacts (url, name, avatar) VALUES ('%s', '%s', '%s')", - dbesc(normalise_link($item["author-link"])), dbesc($item["author-name"]), dbesc($item["author-avatar"])); + q("INSERT INTO `unique_contacts` (`url`, `name`, `avatar`) VALUES ('%s', '%s', '%s')", + dbesc(normalise_link($item["author-link"])), dbesc($item["author-name"]), dbesc($item["author-avatar"])); - $author = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", + $author = q("SELECT `id` FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", dbesc(normalise_link($item['author-link']))); } else if ($item["author-link"].$item["author-name"] != $author[0]["url"].$author[0]["name"]) { - q("UPDATE unique_contacts SET name = '%s', avatar = '%s' WHERE url = '%s'", - dbesc($item["author-name"]), dbesc($item["author-avatar"]), dbesc(normalise_link($item["author-link"]))); + $r = q("SELECT `id` FROM `unique_contacts` WHERE `name` = '%s' AND `avatar` = '%s' AND url = '%s'", + dbesc($item["author-name"]), dbesc($item["author-avatar"]), + dbesc(normalise_link($item["author-link"]))); + + if (!$r) + q("UPDATE `unique_contacts` SET `name` = '%s', `avatar` = '%s' WHERE `url` = '%s'", + dbesc($item["author-name"]), dbesc($item["author-avatar"]), + dbesc(normalise_link($item["author-link"]))); } - $owner = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", + $owner = q("SELECT `id` FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", dbesc(normalise_link($item['owner-link']))); if (count($owner) == 0) { - q("INSERT INTO unique_contacts (url, name, avatar) VALUES ('%s', '%s', '%s')", - dbesc(normalise_link($item["owner-link"])), dbesc($item["owner-name"]), dbesc($item["owner-avatar"])); + q("INSERT INTO `unique_contacts` (`url`, `name`, `avatar`) VALUES ('%s', '%s', '%s')", + dbesc(normalise_link($item["owner-link"])), dbesc($item["owner-name"]), dbesc($item["owner-avatar"])); - $owner = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", + $owner = q("SELECT `id` FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", dbesc(normalise_link($item['owner-link']))); } else if ($item["owner-link"].$item["owner-name"] != $owner[0]["url"].$owner[0]["name"]) { - q("UPDATE unique_contacts SET name = '%s', avatar = '%s' WHERE url = '%s'", - dbesc($item["owner-name"]), dbesc($item["owner-avatar"]), dbesc(normalise_link($item["owner-link"]))); + $r = q("SELECT `id` FROM `unique_contacts` WHERE `name` = '%s' AND `avatar` = '%s' AND url = '%s'", + dbesc($item["owner-name"]), dbesc($item["owner-avatar"]), + dbesc(normalise_link($item["owner-link"]))); + + if (!$r) + q("UPDATE `unique_contacts` SET `name` = '%s', `avatar` = '%s' WHERE `url` = '%s'", + dbesc($item["owner-name"]), dbesc($item["owner-avatar"]), + dbesc(normalise_link($item["owner-link"]))); } // Comments in threads may appear as wall-to-wall postings. @@ -914,14 +927,18 @@ logger('api_status_show: user_info: '.print_r($user_info, true), LOGGER_DEBUG); + if ($type == "raw") + $privacy_sql = "AND `item`.`allow_cid`='' AND `item`.`allow_gid`='' AND `item`.`deny_cid`='' AND `item`.`deny_gid`=''"; + else + $privacy_sql = ""; + // get last public wall message $lastwall = q("SELECT `item`.*, `i`.`contact-id` as `reply_uid`, `i`.`author-link` AS `item-author` FROM `item`, `item` as `i` WHERE `item`.`contact-id` = %d AND `item`.`uid` = %d AND ((`item`.`author-link` IN ('%s', '%s')) OR (`item`.`owner-link` IN ('%s', '%s'))) AND `i`.`id` = `item`.`parent` - AND `item`.`type`!='activity' - AND `item`.`allow_cid`='' AND `item`.`allow_gid`='' AND `item`.`deny_cid`='' AND `item`.`deny_gid`='' + AND `item`.`type`!='activity' $privacy_sql ORDER BY `item`.`created` DESC LIMIT 1", intval($user_info['cid']), @@ -944,7 +961,7 @@ $in_reply_to_status_id= intval($lastwall['parent']); $in_reply_to_status_id_str = (string) intval($lastwall['parent']); - $r = q("SELECT * FROM unique_contacts WHERE `url` = '%s'", dbesc(normalise_link($lastwall['item-author']))); + $r = q("SELECT * FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($lastwall['item-author']))); if ($r) { if ($r[0]['nick'] == "") $r[0]['nick'] = api_get_nick($r[0]["url"]); @@ -967,7 +984,7 @@ $in_reply_to_screen_name = NULL; } - $converted = api_convert_item($item); + $converted = api_convert_item($lastwall); $status_info = array( 'created_at' => api_date($lastwall['created']), @@ -1013,6 +1030,8 @@ unset($status_info["user"]["self"]); } + logger('status_info: '.print_r($status_info, true), LOGGER_DEBUG); + if ($type == "raw") return($status_info); @@ -1064,7 +1083,7 @@ $in_reply_to_status_id = intval($lastwall['parent']); $in_reply_to_status_id_str = (string) intval($lastwall['parent']); - $r = q("SELECT * FROM unique_contacts WHERE `url` = '%s'", dbesc(normalise_link($reply[0]['item-author']))); + $r = q("SELECT * FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($reply[0]['item-author']))); if ($r) { if ($r[0]['nick'] == "") $r[0]['nick'] = api_get_nick($r[0]["url"]); @@ -1076,7 +1095,7 @@ } } - $converted = api_convert_item($item); + $converted = api_convert_item($lastwall); $user_info['status'] = array( 'text' => $converted["text"], @@ -1125,9 +1144,9 @@ $userlist = array(); if (isset($_GET["q"])) { - $r = q("SELECT id FROM unique_contacts WHERE name='%s'", dbesc($_GET["q"])); + $r = q("SELECT id FROM `unique_contacts` WHERE `name`='%s'", dbesc($_GET["q"])); if (!count($r)) - $r = q("SELECT id FROM unique_contacts WHERE nick='%s'", dbesc($_GET["q"])); + $r = q("SELECT `id` FROM `unique_contacts` WHERE `nick`='%s'", dbesc($_GET["q"])); if (count($r)) { foreach ($r AS $user) { @@ -2170,7 +2189,7 @@ intval(api_user()), intval($in_reply_to_status_id)); if ($r) { - $r = q("SELECT * FROM unique_contacts WHERE `url` = '%s'", dbesc(normalise_link($r[0]['author-link']))); + $r = q("SELECT * FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($r[0]['author-link']))); if ($r) { if ($r[0]['nick'] == "") @@ -2429,7 +2448,7 @@ $stringify_ids = (x($_REQUEST,'stringify_ids')?$_REQUEST['stringify_ids']:false); - $r = q("SELECT unique_contacts.id FROM contact, unique_contacts WHERE contact.nurl = unique_contacts.url AND `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra", + $r = q("SELECT `unique_contact`.`id` FROM contact, `unique_contacts` WHERE contact.nurl = unique_contacts.url AND `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra", intval(api_user()) ); @@ -2831,15 +2850,29 @@ function api_share_as_retweet(&$item) { function api_get_nick($profile) { /* To-Do: - - remove trailing jung from profile url + - remove trailing junk from profile url - pump.io check has to check the website */ $nick = ""; - $friendica = preg_replace("=https?://(.*)/profile/(.*)=ism", "$2", $profile); - if ($friendica != $profile) - $nick = $friendica; + $r = q("SELECT `nick` FROM `gcontact` WHERE `nurl` = '%s'", + dbesc(normalise_link($profile))); + if ($r) + $nick = $r[0]["nick"]; + + if (!$nick == "") { + $r = q("SELECT `nick` FROM `contact` WHERE `uid` = 0 AND `nurl` = '%s'", + dbesc(normalise_link($profile))); + if ($r) + $nick = $r[0]["nick"]; + } + + if (!$nick == "") { + $friendica = preg_replace("=https?://(.*)/profile/(.*)=ism", "$2", $profile); + if ($friendica != $profile) + $nick = $friendica; + } if (!$nick == "") { $diaspora = preg_replace("=https?://(.*)/u/(.*)=ism", "$2", $profile); @@ -2877,8 +2910,8 @@ function api_get_nick($profile) { //} if ($nick != "") { - q("UPDATE unique_contacts SET nick = '%s' WHERE url = '%s'", - dbesc($nick), dbesc(normalise_link($profile))); + q("UPDATE `unique_contacts` SET `nick` = '%s' WHERE `nick` != '%s' AND url = '%s'", + dbesc($nick), dbesc($nick), dbesc(normalise_link($profile))); return($nick); } diff --git a/include/auth_ejabberd.php b/include/auth_ejabberd.php index 8b18a02c58..9a9d9accad 100755 --- a/include/auth_ejabberd.php +++ b/include/auth_ejabberd.php @@ -108,7 +108,7 @@ class exAuth // ovdje provjeri je li korisnik OK $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]); $this->writeDebugLog("[debug] checking isuser for ". $sUser); - $sQuery = "select * from user where nickname='". $db->escape($sUser) ."'"; + $sQuery = "SELECT `uid` FROM `user` WHERE `nickname`='". $db->escape($sUser) ."'"; $this->writeDebugLog("[debug] using query ". $sQuery); if ($oResult = q($sQuery)){ if ($oResult) { @@ -120,7 +120,7 @@ class exAuth $this->writeLog("[exAuth] invalid user: ". $sUser); fwrite(STDOUT, pack("nn", 2, 0)); } - $oResult->close(); + //$oResult->close(); } else { $this->writeLog("[MySQL] invalid query: ". $sQuery); fwrite(STDOUT, pack("nn", 2, 0)); @@ -136,10 +136,14 @@ class exAuth // ovdje provjeri prijavu $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]); $this->writeDebugLog("[debug] doing auth for ". $sUser); - $sQuery = "select * from user where password='".hash('whirlpool',$aCommand[3])."' and nickname='". $db->escape($sUser) ."'"; + //$sQuery = "SELECT `uid`, `password` FROM `user` WHERE `password`='".hash('whirlpool',$aCommand[3])."' AND `nickname`='". $db->escape($sUser) ."'"; + $sQuery = "SELECT `uid`, `password` FROM `user` WHERE `nickname`='". $db->escape($sUser) ."'"; $this->writeDebugLog("[debug] using query ". $sQuery); if ($oResult = q($sQuery)){ - if ($oResult) { + $uid = $oResult[0]["uid"]; + $Error = ($oResult[0]["password"] != hash('whirlpool',$aCommand[3])); +/* + if ($oResult[0]["password"] == hash('whirlpool',$aCommand[3])) { // korisnik OK $this->writeLog("[exAuth] authentificated user ". $sUser ."@". $aCommand[2]); fwrite(STDOUT, pack("nn", 2, 1)); @@ -149,9 +153,24 @@ class exAuth fwrite(STDOUT, pack("nn", 2, 0)); } $oResult->close(); +*/ } else { $this->writeLog("[MySQL] invalid query: ". $sQuery); + $Error = true; + $uid = -1; + } + if ($Error) { + $oConfig = q("SELECT `v` FROM `pconfig` WHERE `uid`=%d AND `cat` = 'xmpp' AND `k`='password' LIMIT 1;", intval($uid)); + $this->writeLog("[exAuth] got password ".$oConfig[0]["v"]); + $Error = ($aCommand[3] != $oConfig[0]["v"]); + } + + if ($Error) { + $this->writeLog("[exAuth] authentification failed for user ". $sUser ."@". $aCommand[2]); fwrite(STDOUT, pack("nn", 2, 0)); + } else { + $this->writeLog("[exAuth] authentificated user ". $sUser ."@". $aCommand[2]); + fwrite(STDOUT, pack("nn", 2, 1)); } } break; diff --git a/include/bbcode.php b/include/bbcode.php index 13061958c5..81536d3720 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -2,7 +2,23 @@ require_once("include/oembed.php"); require_once('include/event.php'); require_once('include/map.php'); +require_once('mod/proxy.php'); +function bb_PictureCacheExt($matches) { + if (strpos($matches[3], "data:image/") === 0) + return ($matches[0]); + + $matches[3] = proxy_url($matches[3]); + return "[img=".$matches[1]."x".$matches[2]."]".$matches[3]."[/img]"; +} + +function bb_PictureCache($matches) { + if (strpos($matches[1], "data:image/") === 0) + return ($matches[0]); + + $matches[1] = proxy_url($matches[1]); + return "[img]".$matches[1]."[/img]"; +} function bb_map_coords($match) { // the extra space in the following line is intentional @@ -101,9 +117,9 @@ function bb_attachment($Text, $simplehtml = false, $tryoembed = true) { $text = $oembed; else { if (($image != "") AND !strstr(strtolower($oembed), "
    ', $url, $image, $title); + $text .= sprintf('
    ', $url, proxy_url($image), $title); elseif (($preview != "") AND !strstr(strtolower($oembed), "
    ', $url, $preview, $title); + $text .= sprintf('
    ', $url, proxy_url($preview), $title); $text .= $oembed; @@ -455,7 +471,7 @@ function bb_replace_images($body, $images) { // We're depending on the property of 'foreach' (specified on the PHP website) that // it loops over the array starting from the first element and going sequentially // to the last element - $newbody = str_replace('[$#saved_image' . $cnt . '#$]', '' . t('Image/photo') . '', $newbody); + $newbody = str_replace('[$#saved_image' . $cnt . '#$]', '' . t('Image/photo') . '', $newbody); $cnt++; } @@ -585,7 +601,7 @@ function bb_ShareAttributes($share, $simplehtml) { default: $headline = trim($share[1]).'
    '; if ($avatar != "") - $headline .= ''; + $headline .= ''; $headline .= sprintf(t('%s wrote the following post'.$reldate.':'), $profile, $author, $link); $headline .= "
    "; @@ -1102,13 +1118,17 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal "
    " . $t_wrote . "
    $2
    ", $Text); + // [img=widthxheight]image source[/img] - //$Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $Text); + $Text = preg_replace_callback("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", 'bb_PictureCacheExt', $Text); + $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $Text); $Text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '', $Text); // Images // [img]pathtoimage[/img] + $Text = preg_replace_callback("/\[img\](.*?)\[\/img\]/ism", 'bb_PictureCache', $Text); + $Text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); $Text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); @@ -1190,7 +1210,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal // start which is always required). Allow desc with a missing summary for compatibility. if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) { - $sub = format_event_html($ev); + $sub = format_event_html($ev, $simplehtml); $Text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism",'',$Text); $Text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism",'',$Text); diff --git a/include/contact_selectors.php b/include/contact_selectors.php index f0ac87a09f..f104866232 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -88,7 +88,7 @@ function network_to_name($s, $profile = "") { NETWORK_PUMPIO => t('pump.io'), NETWORK_TWITTER => t('Twitter'), NETWORK_DIASPORA2 => t('Diaspora Connector'), - NETWORK_STATUSNET => t('Statusnet'), + NETWORK_STATUSNET => t('GNU Social'), NETWORK_APPNET => t('App.net') ); diff --git a/include/conversation.php b/include/conversation.php index 5a84ca42a6..3b2eb54bde 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -100,7 +100,11 @@ function localize_item(&$item){ $item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']); $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; - if (activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)){ + if (activity_match($item['verb'],ACTIVITY_LIKE) + || activity_match($item['verb'],ACTIVITY_DISLIKE) + || activity_match($item['verb'],ACTIVITY_ATTEND) + || activity_match($item['verb'],ACTIVITY_ATTENDNO) + || activity_match($item['verb'],ACTIVITY_ATTENDMAYBE)){ $r = q("SELECT * from `item`,`contact` WHERE `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';", @@ -139,6 +143,15 @@ function localize_item(&$item){ elseif(activity_match($item['verb'],ACTIVITY_DISLIKE)) { $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s'); } + elseif(activity_match($item['verb'],ACTIVITY_ATTEND)) { + $bodyverb = t('%1$s attends %2$s\'s %3$s'); + } + elseif(activity_match($item['verb'],ACTIVITY_ATTENDNO)) { + $bodyverb = t('%1$s doesn\'t attend %2$s\'s %3$s'); + } + elseif(activity_match($item['verb'],ACTIVITY_ATTENDMAYBE)) { + $bodyverb = t('%1$s attends maybe %2$s\'s %3$s'); + } $item['body'] = sprintf($bodyverb, $author, $objauthor, $plink); } @@ -204,7 +217,7 @@ function localize_item(&$item){ // we can't have a translation string with three positions but no distinguishable text // So here is the translate string. $txt = t('%1$s poked %2$s'); - + // now translate the verb $poked_t = trim(sprintf($txt, "","")); $txt = str_replace( $poked_t, t($verb), $txt); @@ -341,8 +354,15 @@ function count_descendants($item) { function visible_activity($item) { - if(activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)) - return false; + // likes (etc.) can apply to other things besides posts. Check if they are post children, + // in which case we handle them specially + + $hidden_activities = array(ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); + foreach($hidden_activities as $act) { + if(activity_match($item['verb'],$act)) { + return false; + } + } if(activity_match($item['verb'],ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE) { if(! (($item['self']) && ($item['uid'] == local_user()))) { @@ -396,25 +416,25 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $page_writeable = true; if(!$update) { // The special div is needed for liveUpdate to kick in for this page. - // We only launch liveUpdate if you aren't filtering in some incompatible + // We only launch liveUpdate if you aren't filtering in some incompatible // way and also you aren't writing a comment (discovered in javascript). $live_update_div = '
    ' . "\r\n" - . "\r\n"; } @@ -431,7 +451,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { // because browser prefetching might change it on us. We have to deliver it with the page. $live_update_div = '
    ' . "\r\n" - . "\r\n"; } } @@ -441,7 +461,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $page_writeable = true; if(!$update) { $live_update_div = '
    ' . "\r\n" - . "\r\n"; } } @@ -484,8 +504,10 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $cmnt_tpl = get_markup_template('comment_item.tpl'); $hide_comments_tpl = get_markup_template('hide_comments.tpl'); - $alike = array(); - $dlike = array(); + $conv_responses = array( + 'like' => array('title' => t('Likes','title')), 'dislike' => array('title' => t('Dislikes','title')), + 'attendyes' => array('title' => t('Attending','title')), 'attendno' => array('title' => t('Not attending','title')), 'attendmaybe' => array('title' => t('Might attend','title')) + ); // array with html for each thread (parent+comments) $threads = array(); @@ -656,7 +678,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'name' => $profile_name_e, 'sparkle' => $sparkle, 'lock' => $lock, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'title' => $item['title_e'], 'body' => $body_e, 'tags' => $tags_e, @@ -675,7 +697,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'indent' => '', 'owner_name' => $owner_name_e, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'plink' => get_plink($item), 'edpost' => false, 'isstarred' => $isstarred, @@ -734,8 +756,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { // Can we put this after the visibility check? - like_puller($a,$item,$alike,'like'); - like_puller($a,$item,$dlike,'dislike'); + builtin_activity_puller($item, $conv_responses); // Only add what is visible if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) { @@ -755,7 +776,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { } } - $threads = $conv->get_template_data($alike, $dlike); + $threads = $conv->get_template_data($conv_responses); if(!$threads) { logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG); @@ -792,10 +813,16 @@ function best_link_url($item,&$sparkle,$ssl_state = false) { if($a->contacts[$clean_url]['network'] === NETWORK_DFRN) { $best_url = $a->get_baseurl($ssl_state) . '/redir/' . $a->contacts[$clean_url]['id']; $sparkle = true; - } - else + } else $best_url = $a->contacts[$clean_url]['url']; } + } elseif (local_user()) { + $r = q("SELECT `id`, `network` FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` = '%s'", + dbesc(NETWORK_DFRN), intval(local_user()), dbesc(normalise_link($clean_url))); + if ($r) { + $best_url = $a->get_baseurl($ssl_state).'/redir/'.$r[0]['id']; + $sparkle = true; + } } if(! $best_url) { if(strlen($item['author-link'])) @@ -848,9 +875,17 @@ function item_photo_menu($item){ $profile_link = zrl($profile_link); if(local_user() && local_user() == $item['uid'] && link_compare($item['url'],$item['author-link'])) { $cid = $item['contact-id']; - } - else { - $cid = 0; + } else { + $r = q("SELECT `id`, `network` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' ORDER BY `uid` DESC LIMIT 1", + intval(local_user()), dbesc(normalise_link($item['author-link']))); + if ($r) { + $cid = $r[0]["id"]; + + if ($r[0]["network"] == NETWORK_DIASPORA) + $pm_url = $a->get_baseurl($ssl_state) . '/message/new/' . $cid; + + } else + $cid = 0; } } if(($cid) && (! $item['self'])) { @@ -870,17 +905,25 @@ function item_photo_menu($item){ } - $menu = Array( - t("Follow Thread") => $sub_link, - t("View Status") => $status_link, - t("View Profile") => $profile_link, - t("View Photos") => $photos_link, - t("Network Posts") => $posts_link, - t("Edit Contact") => $contact_url, - t("Send PM") => $pm_url, - t("Poke") => $poke_link - ); + if (local_user()) { + $menu = Array( + t("Follow Thread") => $sub_link, + t("View Status") => $status_link, + t("View Profile") => $profile_link, + t("View Photos") => $photos_link, + t("Network Posts") => $posts_link, + t("Edit Contact") => $contact_url, + t("Send PM") => $pm_url + ); + if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) + $menu[t("Poke")] = $poke_link; + + if ((($cid == 0) OR ($a->contacts[$clean_url]['rel'] == CONTACT_IS_FOLLOWER)) AND + in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) + $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); + } else + $menu = array(t("View Profile") => $item['author-link']); $args = array('item' => $item, 'menu' => $menu); @@ -899,65 +942,114 @@ function item_photo_menu($item){ return $o; }} -if(! function_exists('like_puller')) { -function like_puller($a,$item,&$arr,$mode) { +/** + * @brief Checks item to see if it is one of the builtin activities (like/dislike, event attendance, consensus items, etc.) + * Increments the count of each matching activity and adds a link to the author as needed. + * + * @param array $a (not used) + * @param array $item + * @param array &$conv_responses (already created with builtin activity structure) + * @return void + */ +if(! function_exists(builtin_activity_puller)) { +function builtin_activity_puller($item, &$conv_responses) { + foreach($conv_responses as $mode => $v) { + $url = ''; + $sparkle = ''; - $url = ''; - $sparkle = ''; - $verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE); - - if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) { - $url = $item['author-link']; - if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === NETWORK_DFRN) && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) { - $url = $a->get_baseurl(true) . '/redir/' . $item['contact-id']; - $sparkle = ' class="sparkle" '; + switch($mode) { + case 'like': + $verb = ACTIVITY_LIKE; + break; + case 'dislike': + $verb = ACTIVITY_DISLIKE; + break; + case 'attendyes': + $verb = ACTIVITY_ATTEND; + break; + case 'attendno': + $verb = ACTIVITY_ATTENDNO; + break; + case 'attendmaybe': + $verb = ACTIVITY_ATTENDMAYBE; + break; + default: + return; + break; } - else - $url = zrl($url); - if(! $item['thr-parent']) - $item['thr-parent'] = $item['parent-uri']; + if((activity_match($item['verb'], $verb)) && ($item['id'] != $item['parent'])) { + $url = $item['author-link']; + if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === NETWORK_DFRN) && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) { + $url = z_root(true) . '/redir/' . $item['contact-id']; + $sparkle = ' class="sparkle" '; + } + else + $url = zrl($url); - if(! ((isset($arr[$item['thr-parent'] . '-l'])) && (is_array($arr[$item['thr-parent'] . '-l'])))) - $arr[$item['thr-parent'] . '-l'] = array(); - if(! isset($arr[$item['thr-parent']])) - $arr[$item['thr-parent']] = 1; - else - $arr[$item['thr-parent']] ++; - $arr[$item['thr-parent'] . '-l'][] = '' . $item['author-name'] . ''; + $url = '' . htmlentities($item['author-name']) . ''; + + if(! $item['thr-parent']) + $item['thr-parent'] = $item['parent-uri']; + + if(! ((isset($conv_responses[$mode][$item['thr-parent'] . '-l'])) + && (is_array($conv_responses[$mode][$item['thr-parent'] . '-l'])))) + $conv_responses[$mode][$item['thr-parent'] . '-l'] = array(); + + // only list each unique author once + if(in_array($url,$conv_responses[$mode][$item['thr-parent'] . '-l'])) + continue; + + if(! isset($conv_responses[$mode][$item['thr-parent']])) + $conv_responses[$mode][$item['thr-parent']] = 1; + else + $conv_responses[$mode][$item['thr-parent']] ++; + + $conv_responses[$mode][$item['thr-parent'] . '-l'][] = $url; + + // there can only be one activity verb per item so if we found anything, we can stop looking + return; + } } - return; }} -// Format the like/dislike text for a profile item -// $cnt = number of people who like/dislike the item +// Format the vote text for a profile item +// $cnt = number of people who vote the item // $arr = array of pre-linked names of likers/dislikers -// $type = one of 'like, 'dislike' +// $type = one of 'like, 'dislike', 'attendyes', 'attendno', 'attendmaybe' // $id = item id // returns formatted text if(! function_exists('format_like')) { function format_like($cnt,$arr,$type,$id) { $o = ''; - if($cnt == 1) - $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ; - else { - $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\""; + $expanded = ''; + + if($cnt == 1) { + $likers = $arr[0]; + + // Phrase if there is only one liker. In other cases it will be uses for the expanded + // list which show all likers switch($type) { - case 'like': - $phrase = sprintf( t('%2$d people like this'), $spanatts, $cnt); + case 'like' : + $phrase = sprintf( t('%s likes this.'), $likers); break; - case 'dislike': - $phrase = sprintf( t('%2$d people don\'t like this'), $spanatts, $cnt); + case 'dislike' : + $phrase = sprintf( t('%s doesn\'t like this.'), $likers); + break; + case 'attendyes' : + $phrase = sprintf( t('%s attends.'), $likers); + break; + case 'attendno' : + $phrase = sprintf( t('%s doesn\'t attend.'), $likers); + break; + case 'attendmaybe' : + $phrase = sprintf( t('%s attends maybe.'), $likers); break; } - $phrase .= EOL ; - $o .= replace_macros(get_markup_template('voting_fakelink.tpl'), array( - '$phrase' => $phrase, - '$type' => $type, - '$id' => $id - )); + } + if($cnt > 1) { $total = count($arr); if($total >= MAX_LIKERS) $arr = array_slice($arr, 0, MAX_LIKERS - 1); @@ -970,9 +1062,45 @@ function format_like($cnt,$arr,$type,$id) { $str = implode(', ', $arr); $str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS ); } - $str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str)); - $o .= "\t" . ''; + + $likers = $str; + + $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\""; + + switch($type) { + case 'like': + $phrase = sprintf( t('%2$d people like this'), $spanatts, $cnt); + $explikers = sprintf( t('%s like this.'), $likers); + break; + case 'dislike': + $phrase = sprintf( t('%2$d people don\'t like this'), $spanatts, $cnt); + $explikers = sprintf( t('%s don\'t like this.'), $likers); + break; + case 'attendyes': + $phrase = sprintf( t('%2$d people attend'), $spanatts, $cnt); + $explikers = sprintf( t('%s attend.'), $likers); + break; + case 'attendno': + $phrase = sprintf( t('%2$d people don\'t attend'), $spanatts, $cnt); + $explikers = sprintf( t('%s don\'t attend.'), $likers); + break; + case 'attendmaybe': + $phrase = sprintf( t('%2$d people anttend maybe'), $spanatts, $cnt); + $explikers = sprintf( t('%s anttend maybe.'), $likers); + break; + } + + $expanded .= "\t" . ''; } + + $phrase .= EOL ; + $o .= replace_macros(get_markup_template('voting_fakelink.tpl'), array( + '$phrase' => $phrase, + '$type' => $type, + '$id' => $id + )); + $o .= $expanded; + return $o; }} @@ -1163,6 +1291,15 @@ function conv_sort($arr,$order) { $parents = array(); $children = array(); + $newarr = array(); + + // This is a preparation for having two different items with the same uri in one thread + // This will otherwise lead to an endless loop. + foreach($arr as $x) + if (!isset($newarr[$x['uri']])) + $newarr[$x['uri']] = $x; + + $arr = $newarr; foreach($arr as $x) if($x['id'] == $x['parent']) @@ -1236,3 +1373,51 @@ function render_location_dummy($item) { if ($item['coord'] != "") return $item['coord']; } + +function get_responses($conv_responses,$response_verbs,$ob,$item) { + $ret = array(); + foreach($response_verbs as $v) { + $ret[$v] = array(); + $ret[$v]['count'] = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri']] : ''); + $ret[$v]['list'] = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri'] . '-l'] : ''); + if(count($ret[$v]['list']) > MAX_LIKERS) { + $ret[$v]['list_part'] = array_slice($ret[$v]['list'], 0, MAX_LIKERS); + array_push($ret[$v]['list_part'], '' . t('View all') . ''); + } + else { + $ret[$v]['list_part'] = ''; + } + $ret[$v]['button'] = get_response_button_text($v,$ret[$v]['count']); + $ret[$v]['title'] = $conv_responses[$v]['title']; + } + + $count = 0; + foreach($ret as $key) { + if ($key['count'] == true) + $count++; + } + $ret['count'] = $count; + + return $ret; +} + +function get_response_button_text($v,$count) { + switch($v) { + case 'like': + return tt('Like','Likes',$count,'noun'); + break; + case 'dislike': + return tt('Dislike','Dislikes',$count,'noun'); + break; + case 'attendyes': + return tt('Attending','Attending',$count,'noun'); + break; + case 'attendno': + return tt('Not Attending','Not Attending',$count,'noun'); + break; + case 'attendmaybe': + return tt('Undecided','Undecided',$count,'noun'); + break; + } +} diff --git a/include/cron.php b/include/cron.php new file mode 100644 index 0000000000..7b2244b55e --- /dev/null +++ b/include/cron.php @@ -0,0 +1,342 @@ + $maxsysload) { + logger('system: load ' . $load[0] . ' too high. cron deferred to next scheduled run.'); + return; + } + } + + $last = get_config('system','last_cron'); + + $poll_interval = intval(get_config('system','cron_interval')); + if(! $poll_interval) + $poll_interval = 10; + + if($last) { + $next = $last + ($poll_interval * 60); + if($next > time()) { + logger('cron intervall not reached'); + return; + } + } + + $lockpath = get_lockpath(); + if ($lockpath != '') { + $pidfile = new pidfile($lockpath, 'cron'); + if($pidfile->is_already_running()) { + logger("cron: Already running"); + if ($pidfile->running_time() > 9*60) { + $pidfile->kill(); + logger("cron: killed stale process"); + // Calling a new instance + proc_run('php','include/cron.php'); + } + exit; + } + } + + + + $a->set_baseurl(get_config('system','url')); + + load_hooks(); + + logger('cron: start'); + + // run queue delivery process in the background + + proc_run('php',"include/queue.php"); + + // run diaspora photo queue process in the background + + proc_run('php',"include/dsprphotoq.php"); + + // run the process to discover global contacts in the background + + proc_run('php',"include/discover_poco.php"); + + // run the process to update locally stored global contacts in the background + + proc_run('php',"include/discover_poco.php", "checkcontact"); + + // expire any expired accounts + + q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 + AND `account_expires_on` != '0000-00-00 00:00:00' + AND `account_expires_on` < UTC_TIMESTAMP() "); + + // delete user and contact records for recently removed accounts + + $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY"); + if ($r) { + foreach($r as $user) { + q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid'])); + q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid'])); + } + } + + $abandon_days = intval(get_config('system','account_abandon_days')); + if($abandon_days < 1) + $abandon_days = 0; + + // Check OStatus conversations + // Check only conversations with mentions (for a longer time) + check_conversations(true); + + // Check every conversation + check_conversations(false); + + // Follow your friends from your legacy OStatus account + // Doesn't work + // ostatus_check_follow_friends(); + + // update nodeinfo data + nodeinfo_cron(); + + // To-Do: Regenerate usage statistics + // q("ANALYZE TABLE `item`"); + + // once daily run birthday_updates and then expire in background + + $d1 = get_config('system','last_expire_day'); + $d2 = intval(datetime_convert('UTC','UTC','now','d')); + + if($d2 != intval($d1)) { + + update_contact_birthdays(); + + proc_run('php',"include/discover_poco.php", "suggestions"); + + set_config('system','last_expire_day',$d2); + + proc_run('php','include/expire.php'); + } + + $last = get_config('system','cache_last_cleared'); + + if($last) { + $next = $last + (3600); // Once per hour + $clear_cache = ($next <= time()); + } else + $clear_cache = true; + + if ($clear_cache) { + // clear old cache + Cache::clear(); + + // clear old item cache files + clear_cache(); + + // clear cache for photos + clear_cache($a->get_basepath(), $a->get_basepath()."/photo"); + + // clear smarty cache + clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled"); + + // clear cache for image proxy + if (!get_config("system", "proxy_disabled")) { + clear_cache($a->get_basepath(), $a->get_basepath()."/proxy"); + + $cachetime = get_config('system','proxy_cache_time'); + if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME; + + q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime); + } + + set_config('system','cache_last_cleared', time()); + } + + $manual_id = 0; + $generation = 0; + $force = false; + $restart = false; + + if(($argc > 1) && ($argv[1] == 'force')) + $force = true; + + if(($argc > 1) && ($argv[1] == 'restart')) { + $restart = true; + $generation = intval($argv[2]); + if(! $generation) + killme(); + } + + if(($argc > 1) && intval($argv[1])) { + $manual_id = intval($argv[1]); + $force = true; + } + + $interval = intval(get_config('system','poll_interval')); + if(! $interval) + $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); + + // If we are using the worker we don't need a delivery interval + if (get_config("system", "worker")) + $interval = false; + + $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : ""); + + reload_plugins(); + + $d = datetime_convert(); + + // Only poll from those with suitable relationships, + // and which have a polling address and ignore Diaspora since + // we are unable to match those posts with a Diaspora GUID and prevent duplicates. + + $abandon_sql = (($abandon_days) + ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days)) + : '' + ); + + $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid` + WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s') + $sql_extra + AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive` + AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()", + intval(CONTACT_IS_SHARING), + intval(CONTACT_IS_FRIEND), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_ZOT), + dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_FEED), + dbesc(NETWORK_MAIL), + dbesc(NETWORK_MAIL2) + ); + + if(! count($contacts)) { + return; + } + + foreach($contacts as $c) { + + $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1", + intval($c['id']) + ); + + if((! $res) || (! count($res))) + continue; + + foreach($res as $contact) { + + $xml = false; + + if($manual_id) + $contact['last-update'] = '0000-00-00 00:00:00'; + + if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) + $contact['priority'] = 2; + + if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) { + // We should be getting everything via a hub. But just to be sure, let's check once a day. + // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately) + // This also lets us update our subscription to the hub, and add or replace hubs in case it + // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'. + + $poll_interval = get_config('system','pushpoll_frequency'); + $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3); + } + + if($contact['priority'] AND !$force) { + + $update = false; + + $t = $contact['last-update']; + + /** + * Based on $contact['priority'], should we poll this site now? Or later? + */ + + switch ($contact['priority']) { + case 5: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month")) + $update = true; + break; + case 4: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week")) + $update = true; + break; + case 3: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) + $update = true; + break; + case 2: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour")) + $update = true; + break; + case 1: + default: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour")) + $update = true; + break; + } + if(!$update) + continue; + } + + logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]); + + proc_run('php','include/onepoll.php',$contact['id']); + + if($interval) + @time_sleep_until(microtime(true) + (float) $interval); + } + } + + logger('cron: end'); + + set_config('system','last_cron', time()); + + return; +} + +if (array_search(__file__,get_included_files())===0){ + cron_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); +} diff --git a/include/cronhooks.php b/include/cronhooks.php index 26cab3cf92..d5b4f3bf6f 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -11,11 +11,11 @@ function cronhooks_run(&$argv, &$argc){ } if(is_null($db)) { - @include(".htconfig.php"); - require_once("include/dba.php"); - $db = new dba($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); - }; + @include(".htconfig.php"); + require_once("include/dba.php"); + $db = new dba($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); + }; require_once('include/session.php'); require_once('include/datetime.php'); @@ -35,17 +35,31 @@ function cronhooks_run(&$argv, &$argc){ } } + $last = get_config('system','last_cronhook'); + + $poll_interval = intval(get_config('system','cronhook_interval')); + if(! $poll_interval) + $poll_interval = 9; + + if($last) { + $next = $last + ($poll_interval * 60); + if($next > time()) { + logger('cronhook intervall not reached'); + return; + } + } + $lockpath = get_lockpath(); if ($lockpath != '') { $pidfile = new pidfile($lockpath, 'cronhooks'); if($pidfile->is_already_running()) { logger("cronhooks: Already running"); if ($pidfile->running_time() > 19*60) { - $pidfile->kill(); - logger("cronhooks: killed stale process"); + $pidfile->kill(); + logger("cronhooks: killed stale process"); // Calling a new instance proc_run('php','include/cronhooks.php'); - } + } exit; } } @@ -62,10 +76,12 @@ function cronhooks_run(&$argv, &$argc){ logger('cronhooks: end'); + set_config('system','last_cronhook', time()); + return; } if (array_search(__file__,get_included_files())===0){ - cronhooks_run($_SERVER["argv"],$_SERVER["argc"]); - killme(); + cronhooks_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); } diff --git a/include/datetime.php b/include/datetime.php index 6461298ba2..79964ef404 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -43,18 +43,18 @@ function select_timezone($current = 'America/Los_Angeles') { if($continent != t('Miscellaneous')) { $o .= ''; $continent = t('Miscellaneous'); - $o .= ''; + $o .= ''; } } $city = str_replace('_', ' ', t($city)); $selected = (($value == $current) ? " selected=\"selected\" " : ""); $o .= ""; - } + } $o .= ''; return $o; }} -// return a select using 'field_select_raw' template, with timezones +// return a select using 'field_select_raw' template, with timezones // groupped (primarily) by continent // arguments follow convetion as other field_* template array: // 'name', 'label', $value, 'help' @@ -63,12 +63,12 @@ function field_timezone($name='timezone', $label='', $current = 'America/Los_Ang $options = select_timezone($current); $options = str_replace('','', $options); - + $tpl = get_markup_template('field_select_raw.tpl'); return replace_macros($tpl, array( '$field' => array($name, $label, $current, $help, $options), )); - + }} // General purpose date parse/convert function. @@ -92,8 +92,8 @@ function datetime_convert($from = 'UTC', $to = 'UTC', $s = 'now', $fmt = "Y-m-d // Slight hackish adjustment so that 'zero' datetime actually returns what is intended // otherwise we end up with -0001-11-30 ... - // add 32 days so that we at least get year 00, and then hack around the fact that - // months and days always start with 1. + // add 32 days so that we at least get year 00, and then hack around the fact that + // months and days always start with 1. if(substr($s,0,10) == '0000-00-00') { $d = new DateTime($s . ' + 32 days', new DateTimeZone('UTC')); @@ -203,13 +203,25 @@ function timesel($format, $h, $m, $id='timepicker') { * set maximum date from picker with id $maxfrom (none by default) * @param boolean $required default false * @return string Parsed HTML output. - * + * * @todo Once browser support is better this could probably be replaced with * native HTML5 date picker. */ if(! function_exists('datetimesel')) { function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pickdate = true, $picktime = true, $minfrom = '', $maxfrom = '', $required = false) { + $a = get_app(); + + // First day of the week (0 = Sunday) + $firstDay = get_pconfig(local_user(),'system','first_day_of_week'); + if ($firstDay === false) $firstDay=0; + + $lang = substr(get_browser_language(), 0, 2); + + // Check if the detected language is supported by the picker + if (!in_array($lang, array("ar", "ro", "id", "bg", "fa", "ru", "uk", "en", "el", "de", "nl", "tr", "fr", "es", "th", "pl", "pt", "ch", "se", "kr", "it", "da", "no", "ja", "vi", "sl", "cs", "hu"))) + $lang = ((isset($a->config['system']['language'])) ? $a->config['system']['language'] : 'en'); + $o = ''; $dateformat = ''; if($pickdate) $dateformat .= 'Y-m-d'; @@ -217,16 +229,17 @@ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pic if($picktime) $dateformat .= 'H:i'; $minjs = $min ? ",minDate: new Date({$min->getTimestamp()}*1000), yearStart: " . $min->format('Y') : ''; $maxjs = $max ? ",maxDate: new Date({$max->getTimestamp()}*1000), yearEnd: " . $max->format('Y') : ''; - + $input_text = $default ? 'value="' . date($dateformat, $default->getTimestamp()) . '"' : ''; $defaultdatejs = $default ? ",defaultDate: new Date({$default->getTimestamp()}*1000)" : ''; $pickers = ''; if(!$pickdate) $pickers .= ',datepicker: false'; if(!$picktime) $pickers .= ',timepicker: false'; $extra_js = ''; - if($minfrom != '') + $pickers .= ",dayOfWeekStart: ".$firstDay.",lang:'".$lang."'"; + if($minfrom != '') $extra_js .= "\$('#$minfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({minDate: currentDateTime})}})"; - if($maxfrom != '') + if($maxfrom != '') $extra_js .= "\$('#$maxfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({maxDate: currentDateTime})}})"; $readable_format = $dateformat; $readable_format = str_replace('Y','yyyy',$readable_format); @@ -236,7 +249,9 @@ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pic $readable_format = str_replace('i','MM',$readable_format); $o .= "
    "; $o .= '
    '; - $o .= ""; + $o .= ""; return $o; }} @@ -248,27 +263,27 @@ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pic if(! function_exists('relative_date')) { function relative_date($posted_date,$format = null) { - $localtime = datetime_convert('UTC',date_default_timezone_get(),$posted_date); + $localtime = datetime_convert('UTC',date_default_timezone_get(),$posted_date); $abs = strtotime($localtime); - - if (is_null($posted_date) || $posted_date === '0000-00-00 00:00:00' || $abs === False) { + + if (is_null($posted_date) || $posted_date === '0000-00-00 00:00:00' || $abs === False) { return t('never'); } $etime = time() - $abs; - + if ($etime < 1) { return t('less than a second ago'); } - + /* $time_append = ''; if ($etime >= 86400) { $time_append = ' ('.$localtime.')'; } */ - + $a = array( 12 * 30 * 24 * 60 * 60 => array( t('year'), t('years')), 30 * 24 * 60 * 60 => array( t('month'), t('months')), 7 * 24 * 60 * 60 => array( t('week'), t('weeks')), @@ -277,7 +292,7 @@ function relative_date($posted_date,$format = null) { 60 => array( t('minute'), t('minutes')), 1 => array( t('second'), t('seconds')) ); - + foreach ($a as $secs => $str) { $d = $etime / $secs; if ($d >= 1) { @@ -295,13 +310,13 @@ function relative_date($posted_date,$format = null) { // Returns age in years, given a date of birth, // the timezone of the person whose date of birth is provided, // and the timezone of the person viewing the result. -// Why? Bear with me. Let's say I live in Mittagong, Australia, and my +// Why? Bear with me. Let's say I live in Mittagong, Australia, and my // birthday is on New Year's. You live in San Bruno, California. // When exactly are you going to see my age increase? -// A: 5:00 AM Dec 31 San Bruno time. That's precisely when I start -// celebrating and become a year older. If you wish me happy birthday -// on January 1 (San Bruno time), you'll be a day late. - +// A: 5:00 AM Dec 31 San Bruno time. That's precisely when I start +// celebrating and become a year older. If you wish me happy birthday +// on January 1 (San Bruno time), you'll be a day late. + function age($dob,$owner_tz = '',$viewer_tz = '') { if(! intval($dob)) return 0; @@ -357,7 +372,7 @@ function get_first_dim($y,$m) { // output a calendar for the given month, year. // if $links are provided (array), e.g. $links[12] => 'http://mylink' , -// date 12 will be linked appropriately. Today's date is also noted by +// date 12 will be linked appropriately. Today's date is also noted by // altering td class. // Months count from 1. @@ -376,7 +391,7 @@ function cal($y = 0,$m = 0, $links = false, $class='') { 'April','May','June', 'July','August','September', 'October','November','December' - ); + ); $thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y'); $thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m'); @@ -427,8 +442,8 @@ function cal($y = 0,$m = 0, $links = false, $class='') { if($dow) for($a = $dow; $a < 7; $a ++) $o .= ' '; - $o .= ''."\r\n"; - + $o .= ''."\r\n"; + return $o; }} @@ -452,10 +467,10 @@ function update_contact_birthdays() { * * $bdtext is just a readable placeholder in case the event is shared * with others. We will replace it during presentation to our $importer - * to contain a sparkle link and perhaps a photo. + * to contain a sparkle link and perhaps a photo. * */ - + $bdtext = sprintf( t('%s\'s birthday'), $rr['name']); $bdtext2 = sprintf( t('Happy Birthday %s'), ' [url=' . $rr['url'] . ']' . $rr['name'] . '[/url]') ; diff --git a/include/dbstructure.php b/include/dbstructure.php index 2b1ee84fda..0dd74ab15f 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -642,6 +642,7 @@ function db_definition() { "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), "community" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "addr" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "generation" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"), "server_url" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), ), @@ -1382,6 +1383,20 @@ function db_definition() { "username" => array("username"), ) ); + $database["workerqueue"] = array( + "fields" => array( + "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), + "parameter" => array("type" => "text", "not null" => "1"), + "priority" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"), + "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + "pid" => array("type" => "int(11)", "not null" => "1", "default" => "0"), + "executed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + ), + "indexes" => array( + "PRIMARY" => array("id"), + "created" => array("created"), + ) + ); return($database); } diff --git a/include/delivery.php b/include/delivery.php index a913e13170..cdd59451f0 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -340,9 +340,9 @@ function delivery_run(&$argv, &$argc){ $ssl_policy = get_config('system','ssl_policy'); fix_contact_ssl_policy($x[0],$ssl_policy); - // If we are setup as a soapbox we aren't accepting input from this person + // If we are setup as a soapbox we aren't accepting top level posts from this person - if($x[0]['page-flags'] == PAGE_SOAPBOX) + if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level) break; require_once('library/simplepie/simplepie.inc'); @@ -520,11 +520,16 @@ function delivery_run(&$argv, &$argc){ if((! $contact['pubkey']) && (! $public_message)) break; - if($target_item['verb'] === ACTIVITY_DISLIKE) { - // unsupported - break; + $unsupported_activities = array(ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); + + //don't transmit activities which are not supported by diaspora + foreach($unsupported_activities as $act) { + if(activity_match($target_item['verb'],$act)) { + break 2; + } } - elseif(($target_item['deleted']) && ($target_item['uri'] === $target_item['parent-uri'])) { + + if(($target_item['deleted']) && ($target_item['uri'] === $target_item['parent-uri'])) { // top-level retraction logger('delivery: diaspora retract: ' . $loc); diff --git a/include/diaspora.php b/include/diaspora.php index 3145c52ea3..c97abc28cd 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -110,6 +110,9 @@ function diaspora_dispatch($importer,$msg,$attempt=1) { elseif($xmlbase->message) { $ret = diaspora_message($importer,$xmlbase->message,$msg); } + elseif($xmlbase->participation) { + $ret = diaspora_participation($importer,$xmlbase->participation); + } else { logger('diaspora_dispatch: unknown message type: ' . print_r($xmlbase,true)); } @@ -589,7 +592,7 @@ function diaspora_request($importer,$xml) { // perhaps we were already sharing with this person. Now they're sharing with us. // That makes us friends. - if($contact['rel'] == CONTACT_IS_FOLLOWER && !in_array($importer['page-flags'], array(PAGE_COMMUNITY, PAGE_SOAPBOX))) { + if($contact['rel'] == CONTACT_IS_FOLLOWER && in_array($importer['page-flags'], array(PAGE_FREELOVE))) { q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d", intval(CONTACT_IS_FRIEND), intval($contact['id']), @@ -771,7 +774,7 @@ function diaspora_post_allow($importer,$contact, $is_comment = false) { // perhaps we were already sharing with this person. Now they're sharing with us. // That makes us friends. // Normally this should have handled by getting a request - but this could get lost - if($contact['rel'] == CONTACT_IS_FOLLOWER && !in_array($importer['page-flags'], array(PAGE_COMMUNITY, PAGE_SOAPBOX))) { + if($contact['rel'] == CONTACT_IS_FOLLOWER && in_array($importer['page-flags'], array(PAGE_FREELOVE))) { q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d", intval(CONTACT_IS_FRIEND), intval($contact['id']), @@ -1834,7 +1837,7 @@ function diaspora_message($importer,$xml,$msg) { $author_signature = base64_decode($msg_author_signature); - $person = find_diaspora_person_by_handle($msg_diaspora_handle); + $person = find_diaspora_person_by_handle($msg_diaspora_handle); if(is_array($person) && x($person,'pubkey')) $key = $person['pubkey']; else { @@ -1881,6 +1884,9 @@ function diaspora_message($importer,$xml,$msg) { return; } +function diaspora_participation($importer,$xml) { + logger("Unsupported message type 'participation' ".print_r($xml, true)); +} function diaspora_photo($importer,$xml,$msg,$attempt=1) { @@ -2415,7 +2421,8 @@ function diaspora_profile($importer,$xml,$msg) { $birthday = str_replace('1000','1901',$birthday); - $birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d'); + if ($birthday != "") + $birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d'); // this is to prevent multiple birthday notifications in a single year // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year diff --git a/include/discover_poco.php b/include/discover_poco.php index 79958a8849..a8e7ec64d0 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -41,6 +41,8 @@ function discover_poco_run(&$argv, &$argc){ $mode = 1; } elseif(($argc == 2) && ($argv[1] == "checkcontact")) { $mode = 2; + } elseif(($argc == 2) && ($argv[1] == "suggestions")) { + $mode = 3; } elseif ($argc == 1) { $search = ""; $mode = 0; @@ -69,7 +71,9 @@ function discover_poco_run(&$argv, &$argc){ logger('start '.$search); - if (($mode == 2) AND get_config('system','poco_completion')) + if ($mode==3) + update_suggestions(); + elseif (($mode == 2) AND get_config('system','poco_completion')) discover_users(); elseif (($mode == 1) AND ($search != "") and get_config('system','poco_local_search')) discover_directory($search); diff --git a/include/enotify.php b/include/enotify.php index 0ac9f48ffa..e02c613831 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -20,7 +20,11 @@ function notification($params) { $siteurl = $a->get_baseurl(true); $thanks = t('Thank You,'); $sitename = $a->config['sitename']; - $site_admin = sprintf( t('%s Administrator'), $sitename); + if (!x($a->config['admin_name'])) { + $site_admin = sprintf( t('%s Administrator'), $sitename); + } else { + $site_admin = sprintf( t('%1$s, %2$s Administrator'), $a->config['admin_name'], $sitename); + } $nickname = ""; $sender_name = $sitename; diff --git a/include/event.php b/include/event.php index fedbe24468..c4111dc0b1 100644 --- a/include/event.php +++ b/include/event.php @@ -3,7 +3,7 @@ require_once('include/bbcode.php'); require_once('include/map.php'); -function format_event_html($ev) { +function format_event_html($ev, $simple = false) { @@ -12,6 +12,32 @@ function format_event_html($ev) { $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM + $event_start = (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), + $ev['start'] , $bd_format )) + : day_translate(datetime_convert('UTC', 'UTC', + $ev['start'] , $bd_format))); + + $event_end = (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), + $ev['finish'] , $bd_format )) + : day_translate(datetime_convert('UTC', 'UTC', + $ev['finish'] , $bd_format ))); + + if ($simple) { + $o = "

    ".bbcode($ev['summary'])."

    "; + + $o .= "

    ".bbcode($ev['desc'])."

    "; + + $o .= "

    ".t('Starts:')."

    ".$event_start."

    "; + + if(! $ev['nofinish']) + $o .= "

    ".t('Finishes:')."

    ".$event_end."

    "; + + if(strlen($ev['location'])) + $o .= "

    ".t('Location:')."

    ".$ev['location']."

    "; + + return $o; + } + $o = '
    ' . "\r\n"; @@ -21,33 +47,25 @@ function format_event_html($ev) { $o .= '

    ' . t('Starts:') . ' ' - . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), - $ev['start'] , $bd_format )) - : day_translate(datetime_convert('UTC', 'UTC', - $ev['start'] , $bd_format))) + . '" >'.$event_start . '

    ' . "\r\n"; if(! $ev['nofinish']) $o .= '

    ' . t('Finishes:') . ' ' - . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), - $ev['finish'] , $bd_format )) - : day_translate(datetime_convert('UTC', 'UTC', - $ev['finish'] , $bd_format ))) + . '" >'.$event_end . '

    ' . "\r\n"; if(strlen($ev['location'])){ - $o .= '

    ' . t('Location:') . ' ' - . bbcode($ev['location']) + $o .= '

    ' . t('Location:') . ' ' + . bbcode($ev['location']) . '

    ' . "\r\n"; - + if (strpos($ev['location'], "[map")===False) { $map = generate_named_map($ev['location']); if ($map!==$ev['location']) $o.=$map; } - + } $o .= '
    ' . "\r\n"; @@ -137,7 +155,7 @@ function format_event_bbcode($ev) { if(($ev['finish']) && (! $ev['nofinish'])) $o .= '[event-finish]' . $ev['finish'] . '[/event-finish]'; - + if($ev['location']) $o .= '[event-location]' . $ev['location'] . '[/event-location]'; @@ -200,11 +218,17 @@ function ev_compare($a,$b) { if($date_a === $date_b) return strcasecmp($a['desc'],$b['desc']); - + return strcmp($date_a,$date_b); } +function event_delete($event_id) { + if ($event_id == 0) + return; + q("DELETE FROM `event` WHERE `id` = %d", intval($event_id)); + logger("Deleted event ".$event_id, LOGGER_DEBUG); +} function event_store($arr) { @@ -324,7 +348,7 @@ function event_store($arr) { } else { - // New event. Store it. + // New event. Store it. $r = q("INSERT INTO `event` ( `uid`,`cid`,`uri`,`created`,`edited`,`start`,`finish`,`summary`, `desc`,`location`,`type`, `adjust`,`nofinish`,`allow_cid`,`allow_gid`,`deny_cid`,`deny_gid`) @@ -362,6 +386,7 @@ function event_store($arr) { $item_arr['contact-id'] = $arr['cid']; $item_arr['uri'] = $arr['uri']; $item_arr['parent-uri'] = $arr['uri']; + $item_arr['guid'] = $arr['guid']; $item_arr['type'] = 'activity'; $item_arr['wall'] = (($arr['cid']) ? 0 : 1); $item_arr['contact-id'] = $contact['id']; diff --git a/include/features.php b/include/features.php index 091dfc6e9d..2639604576 100644 --- a/include/features.php +++ b/include/features.php @@ -1,19 +1,54 @@ $uid, 'feature' => $feature, 'enabled' => $x); call_hooks('feature_enabled',$arr); return($arr['enabled']); } +/** + * @brief check if feature is enabled or disabled by default + * + * @param string $feature + * @return boolean + */ +function get_feature_default($feature) { + $f = get_features(); + foreach($f as $cat) { + foreach($cat as $feat) { + if(is_array($feat) && $feat[0] === $feature) + return $feat[3]; + } + } + return false; +} + +/** + * @ brief get a list of all available features + * The array includes the setting group, the setting name, + * explainations for the setting and if it's enabled or disabled + * by default + * + * @return array + */ function get_features() { $arr = array( @@ -22,45 +57,53 @@ function get_features() { 'general' => array( t('General Features'), //array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')), - array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')), + array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles'),false), + array('photo_location', t('Photo Location'), t('Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'),false), ), // Post composition 'composition' => array( t('Post Composition Features'), - array('richtext', t('Richtext Editor'), t('Enable richtext editor')), - array('preview', t('Post Preview'), t('Allow previewing posts and comments before publishing them')), - array('aclautomention', t('Auto-mention Forums'), t('Add/remove mention when a fourm page is selected/deselected in ACL window.')), + array('richtext', t('Richtext Editor'), t('Enable richtext editor'),false), + array('preview', t('Post Preview'), t('Allow previewing posts and comments before publishing them'),false), + array('aclautomention', t('Auto-mention Forums'), t('Add/remove mention when a fourm page is selected/deselected in ACL window.'),false), ), // Network sidebar widgets 'widgets' => array( t('Network Sidebar Widgets'), - array('archives', t('Search by Date'), t('Ability to select posts by date ranges')), - array('groups', t('Group Filter'), t('Enable widget to display Network posts only from selected group')), - array('networks', t('Network Filter'), t('Enable widget to display Network posts only from selected network')), - array('savedsearch', t('Saved Searches'), t('Save search terms for re-use')), + array('archives', t('Search by Date'), t('Ability to select posts by date ranges'),false), + array('forumlist_widget', t('List Forums'), t('Enable widget to display the forums your are connected with'),true), + array('groups', t('Group Filter'), t('Enable widget to display Network posts only from selected group'),false), + array('networks', t('Network Filter'), t('Enable widget to display Network posts only from selected network'),false), + array('savedsearch', t('Saved Searches'), t('Save search terms for re-use'),false), ), // Network tabs 'net_tabs' => array( t('Network Tabs'), - array('personal_tab', t('Network Personal Tab'), t('Enable tab to display only Network posts that you\'ve interacted on')), - array('new_tab', t('Network New Tab'), t('Enable tab to display only new Network posts (from the last 12 hours)')), - array('link_tab', t('Network Shared Links Tab'), t('Enable tab to display only Network posts with links in them')), + array('personal_tab', t('Network Personal Tab'), t('Enable tab to display only Network posts that you\'ve interacted on'),false), + array('new_tab', t('Network New Tab'), t('Enable tab to display only new Network posts (from the last 12 hours)'),false), + array('link_tab', t('Network Shared Links Tab'), t('Enable tab to display only Network posts with links in them'),false), ), // Item tools 'tools' => array( t('Post/Comment Tools'), - array('multi_delete', t('Multiple Deletion'), t('Select and delete multiple posts/comments at once')), - array('edit_posts', t('Edit Sent Posts'), t('Edit and correct posts and comments after sending')), - array('commtag', t('Tagging'), t('Ability to tag existing posts')), - array('categories', t('Post Categories'), t('Add categories to your posts')), - array('filing', t('Saved Folders'), t('Ability to file posts under folders')), - array('dislike', t('Dislike Posts'), t('Ability to dislike posts/comments')), - array('star_posts', t('Star Posts'), t('Ability to mark special posts with a star indicator')), - array('ignore_posts', t('Mute Post Notifications'), t('Ability to mute notifications for a thread')), + array('multi_delete', t('Multiple Deletion'), t('Select and delete multiple posts/comments at once'),false), + array('edit_posts', t('Edit Sent Posts'), t('Edit and correct posts and comments after sending'),false), + array('commtag', t('Tagging'), t('Ability to tag existing posts'),false), + array('categories', t('Post Categories'), t('Add categories to your posts'),false), + array('filing', t('Saved Folders'), t('Ability to file posts under folders'),false), + array('dislike', t('Dislike Posts'), t('Ability to dislike posts/comments')), + array('star_posts', t('Star Posts'), t('Ability to mark special posts with a star indicator'),false), + array('ignore_posts', t('Mute Post Notifications'), t('Ability to mute notifications for a thread'),false), + ), + + // Advanced Profile Settings + 'advanced_profile' => array( + t('Advanced Profile Settings'), + array('forumlist_profile', t('List Forums'), t('Show visitors public community forums at the Advanced Profile Page'),false), ), ); diff --git a/include/feed.php b/include/feed.php new file mode 100644 index 0000000000..e66f279a9b --- /dev/null +++ b/include/feed.php @@ -0,0 +1,285 @@ +loadXML($xml); + $xpath = new DomXPath($doc); + $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom"); + $xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/"); + $xpath->registerNamespace('content', "http://purl.org/rss/1.0/modules/content/"); + $xpath->registerNamespace('rdf', "http://www.w3.org/1999/02/22-rdf-syntax-ns#"); + $xpath->registerNamespace('rss', "http://purl.org/rss/1.0/"); + $xpath->registerNamespace('media', "http://search.yahoo.com/mrss/"); + + $author = array(); + + // Is it RDF? + if ($xpath->query('/rdf:RDF/rss:channel')->length > 0) { + //$author["author-link"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:link/text()')->item(0)->nodeValue; + $author["author-name"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:title/text()')->item(0)->nodeValue; + + if ($author["author-name"] == "") + $author["author-name"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:description/text()')->item(0)->nodeValue; + + $entries = $xpath->query('/rdf:RDF/rss:item'); + } + + // Is it Atom? + if ($xpath->query('/atom:feed/atom:entry')->length > 0) { + //$self = $xpath->query("/atom:feed/atom:link[@rel='self']")->item(0)->attributes; + //if (is_object($self)) + // foreach($self AS $attributes) + // if ($attributes->name == "href") + // $author["author-link"] = $attributes->textContent; + + //if ($author["author-link"] == "") { + // $alternate = $xpath->query("/atom:feed/atom:link[@rel='alternate']")->item(0)->attributes; + // if (is_object($alternate)) + // foreach($alternate AS $attributes) + // if ($attributes->name == "href") + // $author["author-link"] = $attributes->textContent; + //} + + $author["author-name"] = $xpath->evaluate('/atom:feed/atom:title/text()')->item(0)->nodeValue; + + if ($author["author-name"] == "") + $author["author-name"] = $xpath->evaluate('/atom:feed/atom:subtitle/text()')->item(0)->nodeValue; + + if ($author["author-name"] == "") + $author["author-name"] = $xpath->evaluate('/atom:feed/atom:author/atom:name/text()')->item(0)->nodeValue; + + //$author["author-avatar"] = $xpath->evaluate('/atom:feed/atom:logo/text()')->item(0)->nodeValue; + + $author["edited"] = $author["created"] = $xpath->query('/atom:feed/atom:updated/text()')->item(0)->nodeValue; + + $author["app"] = $xpath->evaluate('/atom:feed/atom:generator/text()')->item(0)->nodeValue; + + $entries = $xpath->query('/atom:feed/atom:entry'); + } + + // Is it RSS? + if ($xpath->query('/rss/channel')->length > 0) { + //$author["author-link"] = $xpath->evaluate('/rss/channel/link/text()')->item(0)->nodeValue; + $author["author-name"] = $xpath->evaluate('/rss/channel/title/text()')->item(0)->nodeValue; + //$author["author-avatar"] = $xpath->evaluate('/rss/channel/image/url/text()')->item(0)->nodeValue; + + if ($author["author-name"] == "") + $author["author-name"] = $xpath->evaluate('/rss/channel/copyright/text()')->item(0)->nodeValue; + + if ($author["author-name"] == "") + $author["author-name"] = $xpath->evaluate('/rss/channel/description/text()')->item(0)->nodeValue; + + $author["edited"] = $author["created"] = $xpath->query('/rss/channel/pubDate/text()')->item(0)->nodeValue; + + $author["app"] = $xpath->evaluate('/rss/channel/generator/text()')->item(0)->nodeValue; + + $entries = $xpath->query('/rss/channel/item'); + } + + //if ($author["author-link"] == "") + $author["author-link"] = $contact["url"]; + + if ($author["author-name"] == "") + $author["author-name"] = $contact["name"]; + + //if ($author["author-avatar"] == "") + $author["author-avatar"] = $contact["thumb"]; + + $author["owner-link"] = $contact["url"]; + $author["owner-name"] = $contact["name"]; + $author["owner-avatar"] = $contact["thumb"]; + + $header = array(); + $header["uid"] = $importer["uid"]; + $header["network"] = NETWORK_FEED; + $header["type"] = "remote"; + $header["wall"] = 0; + $header["origin"] = 0; + $header["gravity"] = GRAVITY_PARENT; + $header["private"] = 2; + $header["verb"] = ACTIVITY_POST; + $header["object-type"] = ACTIVITY_OBJ_NOTE; + + $header["contact-id"] = $contact["id"]; + + if(!strlen($contact["notify"])) { + // one way feed - no remote comment ability + $header["last-child"] = 0; + } + + if (!is_object($entries)) + return; + + $entrylist = array(); + + foreach ($entries AS $entry) + $entrylist[] = $entry; + + foreach (array_reverse($entrylist) AS $entry) { + $item = array_merge($header, $author); + + $item["title"] = $xpath->evaluate('atom:title/text()', $entry)->item(0)->nodeValue; + + if ($item["title"] == "") + $item["title"] = $xpath->evaluate('title/text()', $entry)->item(0)->nodeValue; + + if ($item["title"] == "") + $item["title"] = $xpath->evaluate('rss:title/text()', $entry)->item(0)->nodeValue; + + $alternate = $xpath->query("atom:link[@rel='alternate']", $entry)->item(0)->attributes; + if (!is_object($alternate)) + $alternate = $xpath->query("atom:link", $entry)->item(0)->attributes; + + if (is_object($alternate)) + foreach($alternate AS $attributes) + if ($attributes->name == "href") + $item["plink"] = $attributes->textContent; + + if ($item["plink"] == "") + $item["plink"] = $xpath->evaluate('link/text()', $entry)->item(0)->nodeValue; + + if ($item["plink"] == "") + $item["plink"] = $xpath->evaluate('rss:link/text()', $entry)->item(0)->nodeValue; + + $item["plink"] = original_url($item["plink"]); + + $item["uri"] = $xpath->evaluate('atom:id/text()', $entry)->item(0)->nodeValue; + + if ($item["uri"] == "") + $item["uri"] = $xpath->evaluate('guid/text()', $entry)->item(0)->nodeValue; + + if ($item["uri"] == "") + $item["uri"] = $item["plink"]; + + $item["parent-uri"] = $item["uri"]; + + $published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue; + + if ($published == "") + $published = $xpath->query('pubDate/text()', $entry)->item(0)->nodeValue; + + if ($published == "") + $published = $xpath->query('dc:date/text()', $entry)->item(0)->nodeValue; + + $updated = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue; + + if ($updated == "") + $updated = $published; + + if ($published != "") + $item["created"] = $published; + + if ($updated != "") + $item["edited"] = $updated; + + $creator = $xpath->query('author/text()', $entry)->item(0)->nodeValue; + + if ($creator == "") + $creator = $xpath->query('atom:author/atom:name/text()', $entry)->item(0)->nodeValue; + + if ($creator == "") + $creator = $xpath->query('dc:creator/text()', $entry)->item(0)->nodeValue; + + if ($creator != "") + $item["author-name"] = $creator; + + if ($pubDate != "") + $item["edited"] = $item["created"] = $pubDate; + + $creator = $xpath->query('dc:creator/text()', $entry)->item(0)->nodeValue; + + if ($creator != "") + $item["author-name"] = $creator; + + //$item["object"] = $xml; + + $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` = '%s'", + intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED)); + if ($r) { + logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG); + continue; + } + + // To-Do? + // Ausland + // + + $attachments = array(); + + $enclosures = $xpath->query("enclosure", $entry); + foreach ($enclosures AS $enclosure) { + $href = ""; + $length = ""; + $type = ""; + $title = ""; + + foreach($enclosure->attributes AS $attributes) { + if ($attributes->name == "url") + $href = $attributes->textContent; + elseif ($attributes->name == "length") + $length = $attributes->textContent; + elseif ($attributes->name == "type") + $type = $attributes->textContent; + } + if(strlen($item["attach"])) + $item["attach"] .= ','; + + $attachments[] = array("link" => $href, "type" => $type, "length" => $length); + + $item["attach"] .= '[attach]href="'.$href.'" length="'.$length.'" type="'.$type.'"[/attach]'; + } + + if ($contact["fetch_further_information"]) { + $preview = ""; + + // Handle enclosures and treat them as preview picture + foreach ($attachments AS $attachment) + if ($attachment["type"] == "image/jpeg") + $preview = $attachment["link"]; + + $item["body"] = $item["title"].add_page_info($item["plink"], false, $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_blacklist"]); + $item["tag"] = add_page_keywords($item["plink"], false, $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_blacklist"]); + $item["title"] = ""; + $item["object-type"] = ACTIVITY_OBJ_BOOKMARK; + unset($item["attach"]); + } else { + $body = trim($xpath->evaluate('atom:content/text()', $entry)->item(0)->nodeValue); + + if ($body == "") + $body = trim($xpath->evaluate('content:encoded/text()', $entry)->item(0)->nodeValue); + + if ($body == "") + $body = trim($xpath->evaluate('description/text()', $entry)->item(0)->nodeValue); + + if ($body == "") + $body = trim($xpath->evaluate('atom:summary/text()', $entry)->item(0)->nodeValue); + + // remove the content of the title if it is identically to the body + // This helps with auto generated titles e.g. from tumblr + if (title_is_body($item["title"], $body)) + $item["title"] = ""; + + $item["body"] = html2bbcode($body); + } + + logger("Stored feed: ".print_r($item, true), LOGGER_DEBUG); + + $notify = item_is_remote_self($contact, $item); + $id = item_store($item, false, $notify); + + //print_r($item); + + logger("Feed for contact ".$contact["url"]." stored under id ".$id); + } +} +?> diff --git a/include/follow.php b/include/follow.php index 217b9d07b7..21c05c8f3e 100644 --- a/include/follow.php +++ b/include/follow.php @@ -9,13 +9,13 @@ function update_contact($id) { $r = q("SELECT `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `network` FROM `contact` WHERE `id` = %d", intval($id)); if (!$r) - return; + return false; $ret = probe_url($r[0]["url"]); // If probe_url fails the network code will be different if ($ret["network"] != $r[0]["network"]) - return; + return false; $update = false; @@ -29,7 +29,7 @@ function update_contact($id) { } if (!$update) - return; + return true; q("UPDATE `contact` SET `url` = '%s', `nurl` = '%s', `addr` = '%s', `alias` = '%s', `batch` = '%s', `notify` = '%s', `poll` = '%s', `poco` = '%s' WHERE `id` = %d", dbesc($ret['url']), @@ -42,6 +42,8 @@ function update_contact($id) { dbesc($ret['poco']), intval($id) ); + + return true; } // @@ -152,11 +154,7 @@ function new_contact($uid,$url,$interactive = false) { $hidden = (($ret['network'] === NETWORK_MAIL) ? 1 : 0); - if($ret['network'] === NETWORK_MAIL) { - $writeable = 1; - - } - if($ret['network'] === NETWORK_DIASPORA) + if(in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) $writeable = 1; // check if we already have a contact @@ -213,9 +211,7 @@ function new_contact($uid,$url,$interactive = false) { return $result; } - $new_relation = (($ret['network'] === NETWORK_MAIL) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING); - if($ret['network'] === NETWORK_DIASPORA) - $new_relation = CONTACT_IS_FOLLOWER; + $new_relation = ((in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING); // create contact record $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `network`, `pubkey`, `rel`, `priority`, diff --git a/include/forums.php b/include/forums.php new file mode 100644 index 0000000000..d8da36cc5c --- /dev/null +++ b/include/forums.php @@ -0,0 +1,149 @@ + forum url + * 'name' => forum name + * 'id' => number of the key from the array + * 'micro' => contact photo in format micro + */ +function get_forumlist($uid, $showhidden = true, $lastitem, $showprivate = false) { + + $forumlist = array(); + + $order = (($showhidden) ? '' : ' AND NOT `hidden` '); + $order .= (($lastitem) ? ' ORDER BY `last-item` DESC ' : ' ORDER BY `name` ASC '); + $select = '`forum` '; + if ($showprivate) { + $select = '(`forum` OR `prv`)'; + } + + $contacts = q("SELECT `contact`.`id`, `contact`.`url`, `contact`.`name`, `contact`.`micro` FROM `contact` + WHERE `network`= 'dfrn' AND $select AND `uid` = %d + AND NOT `blocked` AND NOT `hidden` AND NOT `pending` AND NOT `archive` + AND `success_update` > `failure_update` + $order ", + intval($uid) + ); + + foreach($contacts as $contact) { + $forumlist[] = array( + 'url' => $contact['url'], + 'name' => $contact['name'], + 'id' => $contact['id'], + 'micro' => $contact['micro'], + ); + } + return($forumlist); +} + + +/** + * @brief Forumlist widget + * + * Sidebar widget to show subcribed friendica forums. If activated + * in the settings, it appears at the notwork page sidebar + * + * @param App $a + * @return string + */ +function widget_forumlist($a) { + + if(! intval(feature_enabled(local_user(),'forumlist_widget'))) + return; + + $o = ''; + + //sort by last updated item + $lastitem = true; + + $contacts = get_forumlist($a->user['uid'],true,$lastitem, true); + $total = count($contacts); + $visible_forums = 10; + + if(count($contacts)) { + + $id = 0; + + foreach($contacts as $contact) { + + $entry = array( + 'url' => $a->get_baseurl() . '/network?f=&cid=' . $contact['id'], + 'external_url' => $a->get_baseurl() . '/redir/' . $contact['id'], + 'name' => $contact['name'], + 'micro' => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO), + 'id' => ++$id, + ); + $entries[] = $entry; + } + + $tpl = get_markup_template('widget_forumlist.tpl'); + + $o .= replace_macros($tpl,array( + '$title' => t('Forums'), + '$forums' => $entries, + '$link_desc' => t('External link to forum'), + '$total' => $total, + '$visible_forums' => $visible_forums, + '$showmore' => t('show more'), + )); + } + + return $o; +} + +/** + * @brief Format forumlist as contact block + * + * This function is used to show the forumlist in + * the advanced profile. + * + * @param int $uid + * @return string + * + */ +function forumlist_profile_advanced($uid) { + + $profile = intval(feature_enabled($uid,'forumlist_profile')); + if(! $profile) + return; + + $o = ''; + + // place holder in case somebody wants configurability + $show_total = 9999; + + //don't sort by last updated item + $lastitem = false; + + $contacts = get_forumlist($uid,false,$lastitem,false); + + $total_shown = 0; + + foreach($contacts as $contact) { + $forumlist .= micropro($contact,false,'forumlist-profile-advanced'); + $total_shown ++; + if($total_shown == $show_total) + break; + } + + if(count($contacts) > 0) + $o .= $forumlist; + return $o; +} diff --git a/include/friendica_smarty.php b/include/friendica_smarty.php index b516926754..99dc12bf8d 100644 --- a/include/friendica_smarty.php +++ b/include/friendica_smarty.php @@ -2,6 +2,7 @@ require_once "object/TemplateEngine.php"; require_once("library/Smarty/libs/Smarty.class.php"); +require_once "include/plugin.php"; define('SMARTY3_TEMPLATE_FOLDER','templates'); @@ -39,19 +40,19 @@ class FriendicaSmarty extends Smarty { } return $this->fetch('file:' . $this->filename); } - + } class FriendicaSmartyEngine implements ITemplateEngine { static $name ="smarty3"; - + public function __construct(){ if(!is_writable('view/smarty3/')){ echo "ERROR: folder view/smarty3/ must be writable by webserver."; killme(); } - } - + } + // ITemplateEngine interface public function replace_macros($s, $r) { $template = ''; @@ -59,15 +60,24 @@ class FriendicaSmartyEngine implements ITemplateEngine { $template = $s; $s = new FriendicaSmarty(); } + + // "middleware": inject variables into templates + $arr = array( + "template"=> basename($s->filename), + "vars" => $r + ); + call_hooks("template_vars", $arr); + $r = $arr['vars']; + foreach($r as $key=>$value) { if($key[0] === '$') { $key = substr($key, 1); } $s->assign($key, $value); } - return $s->parsed($template); + return $s->parsed($template); } - + public function get_template_file($file, $root=''){ $a = get_app(); $template_file = get_template_file($a, SMARTY3_TEMPLATE_FOLDER.'/'.$file, $root); diff --git a/include/gprobe.php b/include/gprobe.php index 03cdbd072b..84292f263a 100644 --- a/include/gprobe.php +++ b/include/gprobe.php @@ -47,7 +47,7 @@ function gprobe_run(&$argv, &$argc){ $result = Cache::get("gprobe:".$urlparts["host"]); if (!is_null($result)) { $result = unserialize($result); - if ($result["network"] == NETWORK_FEED) { + if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) { logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG); return; } diff --git a/include/group.php b/include/group.php index b7e1963bf3..fe29d39f1a 100644 --- a/include/group.php +++ b/include/group.php @@ -156,9 +156,11 @@ function group_add_member($uid,$name,$member,$gid = 0) { function group_get_members($gid) { $ret = array(); if(intval($gid)) { - $r = q("SELECT `group_member`.`contact-id`, `contact`.* FROM `group_member` - INNER JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id` - WHERE `gid` = %d AND `group_member`.`uid` = %d ORDER BY `contact`.`name` ASC ", + $r = q("SELECT `group_member`.`contact-id`, `contact`.* FROM `group_member` + INNER JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id` + WHERE `gid` = %d AND `group_member`.`uid` = %d AND + NOT `contact`.`self` AND NOT `contact`.`blocked` AND NOT `contact`.`pending` + ORDER BY `contact`.`name` ASC ", intval($gid), intval(local_user()) ); @@ -171,14 +173,14 @@ function group_get_members($gid) { function group_public_members($gid) { $ret = 0; if(intval($gid)) { - $r = q("SELECT `contact`.`id` AS `contact-id` FROM `group_member` - INNER JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id` - WHERE `gid` = %d AND `group_member`.`uid` = %d + $r = q("SELECT `contact`.`id` AS `contact-id` FROM `group_member` + INNER JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id` + WHERE `gid` = %d AND `group_member`.`uid` = %d AND `contact`.`network` = '%s' AND `contact`.`notify` != '' ", intval($gid), intval(local_user()), dbesc(NETWORK_OSTATUS) - ); + ); if(count($r)) $ret = count($r); } @@ -187,7 +189,7 @@ function group_public_members($gid) { function mini_group_select($uid,$gid = 0) { - + $grps = array(); $o = ''; @@ -205,7 +207,7 @@ function mini_group_select($uid,$gid = 0) { $o = replace_macros(get_markup_template('group_selection.tpl'), array( '$label' => t('Default privacy group for new contacts'), - '$groups' => $grps + '$groups' => $grps )); return $o; } diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 10a2fd13e5..28e251aee4 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -85,14 +85,16 @@ function deletenode(&$doc, $node) $child->parentNode->removeChild($child); }} +function _replace_code_cb($m){ + return "".str_replace("\n","
    \n",$m[1]). "
    "; +} + function html2bbcode($message) { $message = str_replace("\r", "", $message); - $message = preg_replace_callback("|
    ([^<]*)
    |ism", function($m) { - return "".str_replace("\n","
    \n",$m[1]). "
    "; - }, $message); + $message = preg_replace_callback("|
    ([^<]*)
    |ism", "_replace_code_cb", $message); $message = str_replace(array( "
  • ", diff --git a/include/identity.php b/include/identity.php index 0fba0c592f..3ab65d9e64 100644 --- a/include/identity.php +++ b/include/identity.php @@ -1,4 +1,9 @@ timezone,'now','Y-m-d')) ? true : false); - + $rr['title'] = $title; $rr['description'] = $desciption; $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : ''); @@ -525,29 +530,30 @@ if(! function_exists('get_events')) { function advanced_profile(&$a) { $o = ''; + $uid = $a->profile['uid']; - $o .= replace_macros(get_markup_template("section_title.tpl"),array( + $o .= replace_macros(get_markup_template('section_title.tpl'),array( '$title' => t('Profile') )); if($a->profile['name']) { $tpl = get_markup_template('profile_advanced.tpl'); - + $profile = array(); - + $profile['fullname'] = array( t('Full Name:'), $a->profile['name'] ) ; - + if($a->profile['gender']) $profile['gender'] = array( t('Gender:'), $a->profile['gender'] ); - + if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { - + $year_bd_format = t('j F, Y'); $short_bd_format = t('j F'); - - $val = ((intval($a->profile['dob'])) + + $val = ((intval($a->profile['dob'])) ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00',$year_bd_format)) : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],5) . ' 00:00 +00:00',$short_bd_format))); @@ -556,7 +562,7 @@ function advanced_profile(&$a) { } if($age = age($a->profile['dob'],$a->profile['timezone'],'')) $profile['age'] = array( t('Age:'), $age ); - + if($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']); @@ -591,7 +597,7 @@ function advanced_profile(&$a) { if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt); if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt); - + if($txt = prepare_text($a->profile['book'])) $profile['book'] = array( t('Books, literature:'), $txt); if($txt = prepare_text($a->profile['tv'])) $profile['tv'] = array( t('Television:'), $txt); @@ -599,14 +605,19 @@ function advanced_profile(&$a) { if($txt = prepare_text($a->profile['film'])) $profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt); if($txt = prepare_text($a->profile['romance'])) $profile['romance'] = array( t('Love/Romance:'), $txt); - + if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt); if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt ); - + + //show subcribed forum if it is enabled in the usersettings + if (feature_enabled($uid,'forumlist_profile')) { + $profile['forumlist'] = array( t('Forums:'), forumlist_profile_advanced($uid)); + } + if ($a->profile['uid'] == local_user()) $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$a->profile['id'], t('Edit profile'),"", t('Edit profile')); - + return replace_macros($tpl, array( '$title' => t('Profile'), '$profile' => $profile @@ -664,14 +675,15 @@ if(! function_exists('profile_tabs')){ ); if ($is_owner){ - $tabs[] = array( - 'label' => t('Events'), - 'url' => $a->get_baseurl() . '/events', - 'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''), - 'title' => t('Events and Calendar'), - 'id' => 'events-tab', - 'accesskey' => 'e', - ); + if ($a->theme_events_in_profile) + $tabs[] = array( + 'label' => t('Events'), + 'url' => $a->get_baseurl() . '/events', + 'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''), + 'title' => t('Events and Calendar'), + 'id' => 'events-tab', + 'accesskey' => 'e', + ); $tabs[] = array( 'label' => t('Personal Notes'), 'url' => $a->get_baseurl() . '/notes', @@ -709,7 +721,7 @@ function zrl_init(&$a) { $result = Cache::get("gprobe:".$urlparts["host"]); if (!is_null($result)) { $result = unserialize($result); - if ($result["network"] == NETWORK_FEED) { + if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) { logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG); return; } @@ -737,8 +749,8 @@ function zrl($s,$force = false) { // Used from within PCSS themes to set theme parameters. If there's a // puid request variable, that is the "page owner" and normally their theme -// settings take precedence; unless a local user sets the "always_my_theme" -// system pconfig, which means they don't want to see anybody else's theme +// settings take precedence; unless a local user sets the "always_my_theme" +// system pconfig, which means they don't want to see anybody else's theme // settings except their own while on this site. function get_theme_uid() { diff --git a/include/items.php b/include/items.php index 6378267570..c4310c24e2 100644 --- a/include/items.php +++ b/include/items.php @@ -13,6 +13,7 @@ require_once('include/threads.php'); require_once('include/socgraph.php'); require_once('include/plaintext.php'); require_once('include/ostatus.php'); +require_once('include/feed.php'); require_once('mod/share.php'); require_once('library/defuse/php-encryption-1.2.1/Crypto.php'); @@ -1096,6 +1097,48 @@ function add_guid($item) { dbesc($item["uri"]), dbesc($item["network"])); } +// Adds a "lang" specification in a "postopts" element of given $arr, +// if possible and not already present. +// Expects "body" element to exist in $arr. +// TODO: add a parameter to request forcing override +function item_add_language_opt(&$arr) { + + if (version_compare(PHP_VERSION, '5.3.0', '<')) return; // LanguageDetect.php not available ? + + if ( x($arr, 'postopts') ) + { + if ( strstr($arr['postopts'], 'lang=') ) + { + // do not override + // TODO: add parameter to request overriding + return; + } + $postopts = $arr['postopts']; + } + else + { + $postopts = ""; + } + + require_once('library/langdet/Text/LanguageDetect.php'); + $naked_body = preg_replace('/\[(.+?)\]/','',$arr['body']); + $l = new Text_LanguageDetect; + //$lng = $l->detectConfidence($naked_body); + //$arr['postopts'] = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : ''); + $lng = $l->detect($naked_body, 3); + + if (sizeof($lng) > 0) { + if ($postopts != "") $postopts .= '&'; // arbitrary separator, to be reviewed + $postopts .= 'lang='; + $sep = ""; + foreach ($lng as $language => $score) { + $postopts .= $sep . $language.";".$score; + $sep = ':'; + } + $arr['postopts'] = $postopts; + } +} + function item_store($arr,$force_parent = false, $notify = false, $dontcache = false) { // If it is a posting where users should get notifications, then define it as wall posting @@ -1185,29 +1228,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa //if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false)) // $arr['body'] = strip_tags($arr['body']); - - if (version_compare(PHP_VERSION, '5.3.0', '>=')) { - require_once('library/langdet/Text/LanguageDetect.php'); - $naked_body = preg_replace('/\[(.+?)\]/','',$arr['body']); - $l = new Text_LanguageDetect; - //$lng = $l->detectConfidence($naked_body); - //$arr['postopts'] = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : ''); - $lng = $l->detect($naked_body, 3); - - if (sizeof($lng) > 0) { - $postopts = ""; - - foreach ($lng as $language => $score) { - if ($postopts == "") - $postopts = "lang="; - else - $postopts .= ":"; - - $postopts .= $language.";".$score; - } - $arr['postopts'] = $postopts; - } - } + item_add_language_opt($arr); if ($notify) $guid_prefix = ""; @@ -1218,10 +1239,10 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid(32, $guid_prefix)); $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : $arr['guid']); $arr['extid'] = ((x($arr,'extid')) ? notags(trim($arr['extid'])) : ''); - $arr['author-name'] = ((x($arr,'author-name')) ? notags(trim($arr['author-name'])) : ''); + $arr['author-name'] = ((x($arr,'author-name')) ? trim($arr['author-name']) : ''); $arr['author-link'] = ((x($arr,'author-link')) ? notags(trim($arr['author-link'])) : ''); $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : ''); - $arr['owner-name'] = ((x($arr,'owner-name')) ? notags(trim($arr['owner-name'])) : ''); + $arr['owner-name'] = ((x($arr,'owner-name')) ? trim($arr['owner-name']) : ''); $arr['owner-link'] = ((x($arr,'owner-link')) ? notags(trim($arr['owner-link'])) : ''); $arr['owner-avatar'] = ((x($arr,'owner-avatar')) ? notags(trim($arr['owner-avatar'])) : ''); $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert()); @@ -1229,8 +1250,8 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['commented'] = ((x($arr,'commented') !== false) ? datetime_convert('UTC','UTC',$arr['commented']) : datetime_convert()); $arr['received'] = ((x($arr,'received') !== false) ? datetime_convert('UTC','UTC',$arr['received']) : datetime_convert()); $arr['changed'] = ((x($arr,'changed') !== false) ? datetime_convert('UTC','UTC',$arr['changed']) : datetime_convert()); - $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : ''); - $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : ''); + $arr['title'] = ((x($arr,'title')) ? trim($arr['title']) : ''); + $arr['location'] = ((x($arr,'location')) ? trim($arr['location']) : ''); $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : ''); $arr['last-child'] = ((x($arr,'last-child')) ? intval($arr['last-child']) : 0 ); $arr['visible'] = ((x($arr,'visible') !== false) ? intval($arr['visible']) : 1 ); @@ -1266,11 +1287,24 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa } if ($arr['network'] == "") { - $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($arr['contact-id']), + $r = q("SELECT `network` FROM `contact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' AND `uid` = %d LIMIT 1", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS), + dbesc(normalise_link($arr['author-link'])), intval($arr['uid']) ); + if(!count($r)) + $r = q("SELECT `network` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' LIMIT 1", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS), + dbesc(normalise_link($arr['author-link'])) + ); + + if(!count($r)) + $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($arr['contact-id']), + intval($arr['uid']) + ); + if(count($r)) $arr['network'] = $r[0]["network"]; @@ -1455,9 +1489,10 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr = $unescaped; // find the item we just created - $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC ", + $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `network` = '%s' ORDER BY `id` ASC ", dbesc($arr['uri']), - intval($arr['uid']) + intval($arr['uid']), + dbesc($arr['network']) ); if(count($r)) { @@ -2264,16 +2299,20 @@ function edited_timestamp_is_newer($existing, $update) { function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) { if ($contact['network'] === NETWORK_OSTATUS) { if ($pass < 2) { - // Test - remove before flight - //$tempfile = tempnam(get_temppath(), "ostatus"); - //file_put_contents($tempfile, $xml); - logger("Consume OStatus messages ", LOGGER_DEBUG); ostatus_import($xml,$importer,$contact, $hub); } return; } + if ($contact['network'] === NETWORK_FEED) { + if ($pass < 2) { + logger("Consume feeds", LOGGER_DEBUG); + feed_import($xml,$importer,$contact, $hub); + } + return; + } + require_once('library/simplepie/simplepie.inc'); require_once('include/contact_selectors.php'); @@ -2342,85 +2381,45 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $contact_updated = $photo_timestamp; require_once("include/Photo.php"); - $photo_failure = false; - $have_photo = false; + $photos = import_profile_photo($photo_url,$contact['uid'],$contact['id']); - $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1", - intval($contact['id']), - intval($contact['uid']) + q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s' + WHERE `uid` = %d AND `id` = %d AND NOT `self`", + dbesc(datetime_convert()), + dbesc($photos[0]), + dbesc($photos[1]), + dbesc($photos[2]), + intval($contact['uid']), + intval($contact['id']) ); - if(count($r)) { - $resource_id = $r[0]['resource-id']; - $have_photo = true; - } - else { - $resource_id = photo_new_resource(); - } - - $img_str = fetch_url($photo_url,true); - // guess mimetype from headers or filename - $type = guess_image_type($photo_url,true); - - - $img = new Photo($img_str, $type); - if($img->is_valid()) { - if($have_photo) { - q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d", - dbesc($resource_id), - intval($contact['id']), - intval($contact['uid']) - ); - } - - $img->scaleImageSquare(175); - - $hash = $resource_id; - $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 4); - - $img->scaleImage(80); - $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 5); - - $img->scaleImage(48); - $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), 'Contact Photos', 6); - - $a = get_app(); - - q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s' - WHERE `uid` = %d AND `id` = %d", - dbesc(datetime_convert()), - dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.'.$img->getExt()), - dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.'.$img->getExt()), - dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.'.$img->getExt()), - intval($contact['uid']), - intval($contact['id']) - ); - } } if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) { if ($name_updated > $contact_updated) $contact_updated = $name_updated; - $r = q("select * from contact where uid = %d and id = %d limit 1", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1", intval($contact['uid']), intval($contact['id']) ); - $x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d", + $x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d AND `name` != '%s' AND NOT `self`", dbesc(notags(trim($new_name))), dbesc(datetime_convert()), intval($contact['uid']), - intval($contact['id']) + intval($contact['id']), + dbesc(notags(trim($new_name))) ); // do our best to update the name on content items - if(count($r)) { - q("update item set `author-name` = '%s' where `author-name` = '%s' and `author-link` = '%s' and uid = %d", + if(count($r) AND (notags(trim($new_name)) != $r[0]['name'])) { + q("UPDATE `item` SET `author-name` = '%s' WHERE `author-name` = '%s' AND `author-link` = '%s' AND `uid` = %d AND `author-name` != '%s'", dbesc(notags(trim($new_name))), dbesc($r[0]['name']), dbesc($r[0]['url']), - intval($contact['uid']) + intval($contact['uid']), + dbesc(notags(trim($new_name))) ); } } @@ -2519,6 +2518,11 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) if(! $item['deleted']) logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG); + if($item['object-type'] === ACTIVITY_OBJ_EVENT) { + logger("Deleting event ".$item['event-id'], LOGGER_DEBUG); + event_delete($item['event-id']); + } + if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) { $xo = parse_xml_string($item['object'],false); $xt = parse_xml_string($item['target'],false); @@ -2726,7 +2730,11 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $datarray['parent-uri'] = $parent_uri; $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; - if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) { + if(($datarray['verb'] === ACTIVITY_LIKE) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) + || ($datarray['verb'] === ACTIVITY_ATTENDNO) + || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $datarray['type'] = 'activity'; $datarray['gravity'] = GRAVITY_LIKE; // only one like or dislike per person @@ -2806,11 +2814,12 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) { $ev = bbtoevent($datarray['body']); - if(x($ev,'desc') && x($ev,'start')) { + if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) { $ev['uid'] = $importer['uid']; $ev['uri'] = $item_id; $ev['edited'] = $datarray['edited']; $ev['private'] = $datarray['private']; + $ev['guid'] = $datarray['guid']; if(is_array($contact)) $ev['cid'] = $contact['id']; @@ -3070,85 +3079,46 @@ function local_delivery($importer,$data) { logger('local_delivery: Updating photo for ' . $importer['name']); require_once("include/Photo.php"); - $photo_failure = false; - $have_photo = false; - $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1", - intval($importer['id']), - intval($importer['importer_uid']) + $photos = import_profile_photo($photo_url,$importer['importer_uid'],$importer['id']); + + q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s' + WHERE `uid` = %d AND `id` = %d AND NOT `self`", + dbesc(datetime_convert()), + dbesc($photos[0]), + dbesc($photos[1]), + dbesc($photos[2]), + intval($importer['importer_uid']), + intval($importer['id']) ); - if(count($r)) { - $resource_id = $r[0]['resource-id']; - $have_photo = true; - } - else { - $resource_id = photo_new_resource(); - } - - $img_str = fetch_url($photo_url,true); - // guess mimetype from headers or filename - $type = guess_image_type($photo_url,true); - - - $img = new Photo($img_str, $type); - if($img->is_valid()) { - if($have_photo) { - q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d", - dbesc($resource_id), - intval($importer['id']), - intval($importer['importer_uid']) - ); - } - - $img->scaleImageSquare(175); - - $hash = $resource_id; - $r = $img->store($importer['importer_uid'], $importer['id'], $hash, basename($photo_url), 'Contact Photos', 4); - - $img->scaleImage(80); - $r = $img->store($importer['importer_uid'], $importer['id'], $hash, basename($photo_url), 'Contact Photos', 5); - - $img->scaleImage(48); - $r = $img->store($importer['importer_uid'], $importer['id'], $hash, basename($photo_url), 'Contact Photos', 6); - - $a = get_app(); - - q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s' - WHERE `uid` = %d AND `id` = %d", - dbesc(datetime_convert()), - dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.'.$img->getExt()), - dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.'.$img->getExt()), - dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.'.$img->getExt()), - intval($importer['importer_uid']), - intval($importer['id']) - ); - } } if(($name_updated) && (strlen($new_name)) && ($name_updated > $importer['name-date'])) { if ($name_updated > $contact_updated) $contact_updated = $name_updated; - $r = q("select * from contact where uid = %d and id = %d limit 1", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1", intval($importer['importer_uid']), intval($importer['id']) ); - $x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d", + $x = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d AND `name` != '%s' AND NOT `self`", dbesc(notags(trim($new_name))), dbesc(datetime_convert()), intval($importer['importer_uid']), - intval($importer['id']) + intval($importer['id']), + dbesc(notags(trim($new_name))) ); // do our best to update the name on content items - if(count($r)) { - q("update item set `author-name` = '%s' where `author-name` = '%s' and `author-link` = '%s' and uid = %d", + if(count($r) AND (notags(trim($new_name)) != $r[0]['name'])) { + q("UPDATE `item` SET `author-name` = '%s' WHERE `author-name` = '%s' AND `author-link` = '%s' AND `uid` = %d AND `author-name` != '%s'", dbesc(notags(trim($new_name))), dbesc($r[0]['name']), dbesc($r[0]['url']), - intval($importer['importer_uid']) + intval($importer['importer_uid']), + dbesc(notags(trim($new_name))) ); } } @@ -3500,6 +3470,11 @@ function local_delivery($importer,$data) { logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG); + if($item['object-type'] === ACTIVITY_OBJ_EVENT) { + logger("Deleting event ".$item['event-id'], LOGGER_DEBUG); + event_delete($item['event-id']); + } + if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) { $xo = parse_xml_string($item['object'],false); $xt = parse_xml_string($item['target'],false); @@ -3713,7 +3688,11 @@ function local_delivery($importer,$data) { $datarray['owner-avatar'] = $own[0]['thumb']; $datarray['contact-id'] = $importer['id']; - if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) { + if(($datarray['verb'] === ACTIVITY_LIKE) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) + || ($datarray['verb'] === ACTIVITY_ATTENDNO) + || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $is_like = true; $datarray['type'] = 'activity'; $datarray['gravity'] = GRAVITY_LIKE; @@ -3902,7 +3881,11 @@ function local_delivery($importer,$data) { $datarray['parent-uri'] = $parent_uri; $datarray['uid'] = $importer['importer_uid']; $datarray['contact-id'] = $importer['id']; - if(($datarray['verb'] == ACTIVITY_LIKE) || ($datarray['verb'] == ACTIVITY_DISLIKE)) { + if(($datarray['verb'] === ACTIVITY_LIKE) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) + || ($datarray['verb'] === ACTIVITY_ATTENDNO) + || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $datarray['type'] = 'activity'; $datarray['gravity'] = GRAVITY_LIKE; // only one like or dislike per person @@ -4022,12 +4005,13 @@ function local_delivery($importer,$data) { if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) { $ev = bbtoevent($datarray['body']); - if(x($ev,'desc') && x($ev,'start')) { + if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) { $ev['cid'] = $importer['id']; $ev['uid'] = $importer['uid']; $ev['uri'] = $item_id; $ev['edited'] = $datarray['edited']; $ev['private'] = $datarray['private']; + $ev['guid'] = $datarray['guid']; $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($item_id), @@ -4329,7 +4313,7 @@ function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') { } -function atom_author($tag,$name,$uri,$h,$w,$photo) { +function atom_author($tag,$name,$uri,$h,$w,$photo,$geo) { $o = ''; if(! $tag) return $o; @@ -4347,6 +4331,10 @@ function atom_author($tag,$name,$uri,$h,$w,$photo) { $o .= "\t".'' . "\r\n"; if ($tag == "author") { + + if($geo) + $o .= ''.xmlify($geo).''."\r\n"; + $r = q("SELECT `profile`.`locality`, `profile`.`region`, `profile`.`country-name`, `profile`.`name`, `profile`.`pub_keywords`, `profile`.`about`, `profile`.`homepage`,`contact`.`nick` FROM `profile` @@ -4410,11 +4398,11 @@ function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) { $o = "\r\n\r\n\r\n"; if(is_array($author)) - $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']); + $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb'], $item['coord']); else - $o .= atom_author('author',(($item['author-name']) ? $item['author-name'] : $item['name']),(($item['author-link']) ? $item['author-link'] : $item['url']),80,80,(($item['author-avatar']) ? $item['author-avatar'] : $item['thumb'])); + $o .= atom_author('author',(($item['author-name']) ? $item['author-name'] : $item['name']),(($item['author-link']) ? $item['author-link'] : $item['url']),80,80,(($item['author-avatar']) ? $item['author-avatar'] : $item['thumb']), $item['coord']); if(strlen($item['owner-name'])) - $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']); + $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar'], $item['coord']); if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) { $parent = q("SELECT `guid` FROM `item` WHERE `id` = %d", intval($item["parent"])); diff --git a/include/nav.php b/include/nav.php index 935d08f524..6512d35609 100644 --- a/include/nav.php +++ b/include/nav.php @@ -27,7 +27,6 @@ function nav(&$a) { $a->page['nav'] .= replace_macros($tpl, array( '$baseurl' => $a->get_baseurl(), - '$langselector' => lang_selector(), '$sitelocation' => $nav_info['sitelocation'], '$nav' => $nav_info['nav'], '$banner' => $nav_info['banner'], @@ -48,7 +47,7 @@ function nav_info(&$a) { /** * - * Our network is distributed, and as you visit friends some of the + * Our network is distributed, and as you visit friends some of the * sites look exactly the same - it isn't always easy to know where you are. * Display the current site location as a navigation aid. * @@ -138,6 +137,8 @@ function nav_info(&$a) { elseif(get_config('system','community_page_style') == CP_GLOBAL_COMMUNITY) $nav['community'] = array('community', t('Community'), "", t('Conversations on the network')); + $nav['events'] = Array('events', t('Events'), "", t('Events and Calendar')); + $nav['directory'] = array($gdirpath, t('Directory'), "", t('People directory')); $nav['about'] = Array('friendica', t('Information'), "", t('Information about this friendica instance')); @@ -205,7 +206,7 @@ function nav_info(&$a) { $banner = get_config('system','banner'); - if($banner === false) + if($banner === false) $banner .= 'logoFriendica'; call_hooks('nav_info', $nav); @@ -222,7 +223,7 @@ function nav_info(&$a) { /* * Set a menu item in navbar as selected - * + * */ function nav_set_selected($item){ $a = get_app(); @@ -238,6 +239,7 @@ function nav_set_selected($item){ 'settings' => null, 'contacts' => null, 'manage' => null, + 'events' => null, 'register' => null, ); $a->nav_sel[$item] = 'selected'; diff --git a/include/network.php b/include/network.php index 02b2d7c2ae..d0217e2a08 100644 --- a/include/network.php +++ b/include/network.php @@ -86,10 +86,9 @@ function z_fetch_url($url,$binary = false, &$redirects = 0, $opts=array()) { if(x($opts,'nobody')){ @curl_setopt($ch, CURLOPT_NOBODY, $opts['nobody']); } - if(intval($timeout)) { - @curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); - } - else { + if(x($opts,'timeout')){ + @curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']); + } else { $curl_time = intval(get_config('system','curl_timeout')); @curl_setopt($ch, CURLOPT_TIMEOUT, (($curl_time !== false) ? $curl_time : 60)); } @@ -309,16 +308,25 @@ function xml_status($st, $message = '') { if(! function_exists('http_status_exit')) { -function http_status_exit($val) { - +function http_status_exit($val, $description = array()) { $err = ''; - if($val >= 400) + if($val >= 400) { $err = 'Error'; + if (!isset($description["title"])) + $description["title"] = $err." ".$val; + } if($val >= 200 && $val < 300) $err = 'OK'; logger('http_status_exit ' . $val); header($_SERVER["SERVER_PROTOCOL"] . ' ' . $val . ' ' . $err); + + if (isset($description["title"])) { + $tpl = get_markup_template('http_status.tpl'); + echo replace_macros($tpl, array('$title' => $description["title"], + '$description' => $description["description"])); + } + killme(); }} diff --git a/include/notifier.php b/include/notifier.php index 002b3c8d74..9dac5f114b 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -615,6 +615,10 @@ function notifier_run(&$argv, &$argc){ $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval'))); + // If we are using the worker we don't need a delivery interval + if (get_config("system", "worker")) + $interval = false; + // delivery loop if(count($r)) { @@ -634,7 +638,7 @@ function notifier_run(&$argv, &$argc){ // This controls the number of deliveries to execute with each separate delivery process. // By default we'll perform one delivery per process. Assuming a hostile shared hosting - // provider, this provides the greatest chance of deliveries if processes start getting + // provider, this provides the greatest chance of deliveries if processes start getting // killed. We can also space them out with the delivery_interval to also help avoid them // getting whacked. @@ -642,8 +646,10 @@ function notifier_run(&$argv, &$argc){ // together into a single process. This will reduce the overall number of processes // spawned for each delivery, but they will run longer. + // When using the workerqueue, we don't need this functionality. + $deliveries_per_process = intval(get_config('system','delivery_batch_count')); - if($deliveries_per_process <= 0) + if (($deliveries_per_process <= 0) OR get_config("system", "worker")) $deliveries_per_process = 1; $this_batch = array(); @@ -728,9 +734,9 @@ function notifier_run(&$argv, &$argc){ $ssl_policy = get_config('system','ssl_policy'); fix_contact_ssl_policy($x[0],$ssl_policy); - // If we are setup as a soapbox we aren't accepting input from this person + // If we are setup as a soapbox we aren't accepting top level posts from this person - if($x[0]['page-flags'] == PAGE_SOAPBOX) + if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level) break; require_once('library/simplepie/simplepie.inc'); @@ -902,11 +908,16 @@ function notifier_run(&$argv, &$argc){ if(! $contact['pubkey']) break; - if($target_item['verb'] === ACTIVITY_DISLIKE) { - // unsupported - break; + $unsupported_activities = array(ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); + + //don't transmit activities which are not supported by diaspora + foreach($unsupported_activities as $act) { + if(activity_match($target_item['verb'],$act)) { + break 2; + } } - elseif(($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) { + + if(($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) { // send both top-level retractions and relayable retractions for owner to relay diaspora_send_retraction($target_item,$owner,$contact); break; diff --git a/include/oembed.php b/include/oembed.php index d4d7ce05e1..0e12383603 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -157,7 +157,7 @@ function oembed_format_object($j){ case "rich": { // not so safe.. if (!get_config("system","no_oembed_rich_content")) - $ret.= $jhtml; + $ret.= proxy_parse_html($jhtml); }; break; } diff --git a/include/onepoll.php b/include/onepoll.php index 1fc861afa2..6ff7eae422 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -18,10 +18,10 @@ function onepoll_run(&$argv, &$argc){ } if(is_null($db)) { - @include(".htconfig.php"); - require_once("include/dba.php"); - $db = new dba($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); + @include(".htconfig.php"); + require_once("include/dba.php"); + $db = new dba($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); }; @@ -168,8 +168,18 @@ function onepoll_run(&$argv, &$argc){ ); // Update the contact entry - if(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) - update_contact($contact["id"]); + if(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) { + if (!poco_reachable($contact['url'])) { + logger("Skipping probably dead contact ".$contact['url']); + return; + } + + if (!update_contact($contact["id"])) { + mark_for_death($contact); + return; + } else + unmark_for_death($contact); + } if($contact['network'] === NETWORK_DFRN) { @@ -360,7 +370,7 @@ function onepoll_run(&$argv, &$argc){ ); logger("Mail: Connected to " . $mailconf[0]['user']); } else - logger("Mail: Connection error ".$mailconf[0]['user']." ".print_r(imap_errors())); + logger("Mail: Connection error ".$mailconf[0]['user']." ".print_r(imap_errors(), true)); } if($mbox) { @@ -669,6 +679,6 @@ function onepoll_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - onepoll_run($_SERVER["argv"],$_SERVER["argc"]); - killme(); + onepoll_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); } diff --git a/include/ostatus.php b/include/ostatus.php index d39059eb6f..0dd462d3e1 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -48,7 +48,7 @@ function ostatus_follow_friends($uid, $url) { $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') AND `network` != '%s' LIMIT 1", - intval($uid), dbesc(normalise_link($url)), + intval($uid), dbesc(normalise_link($url)), dbesc(normalise_link($url)), dbesc($url), dbesc(NETWORK_STATUSNET)); if (!$r) { $data = probe_url($friend->statusnet_profile_url); @@ -315,7 +315,7 @@ function ostatus_import($xml,$importer,&$contact, &$hub) { $orig_uri = $xpath->query("activity:object/atom:id", $entry)->item(0)->nodeValue; logger("Favorite ".$orig_uri." ".print_r($item, true)); - $item["verb"] = ACTIVITY_LIKE; + $item["verb"] = ACTIVITY_LIKE; $item["parent-uri"] = $orig_uri; $item["gravity"] = GRAVITY_LIKE; } @@ -702,9 +702,13 @@ function ostatus_completion($conversation_url, $uid, $item = array()) { $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as); $conv_as = json_decode($conv_as); + $no_of_items = sizeof($items); + if (@is_array($conv_as->items)) - $items = array_merge($items, $conv_as->items); - else + foreach ($conv_as->items AS $single_item) + $items[$single_item->id] = $single_item; + + if ($no_of_items == sizeof($items)) break; $pageno++; diff --git a/include/pgettext.php b/include/pgettext.php index 4f8db43d47..f72cbb08a7 100644 --- a/include/pgettext.php +++ b/include/pgettext.php @@ -11,7 +11,7 @@ require_once("include/dba.php"); * * Get the language setting directly from system variables, bypassing get_config() * as database may not yet be configured. - * + * * If possible, we use the value from the browser. * */ @@ -21,22 +21,22 @@ if(! function_exists('get_browser_language')) { function get_browser_language() { if (x($_SERVER,'HTTP_ACCEPT_LANGUAGE')) { - // break up string into pieces (languages and q factors) - preg_match_all('/([a-z]{1,8}(-[a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/i', + // break up string into pieces (languages and q factors) + preg_match_all('/([a-z]{1,8}(-[a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/i', $_SERVER['HTTP_ACCEPT_LANGUAGE'], $lang_parse); - if (count($lang_parse[1])) { - // create a list like "en" => 0.8 - $langs = array_combine($lang_parse[1], $lang_parse[4]); - - // set default to 1 for any without q factor - foreach ($langs as $lang => $val) { - if ($val === '') $langs[$lang] = 1; - } + if (count($lang_parse[1])) { + // create a list like "en" => 0.8 + $langs = array_combine($lang_parse[1], $lang_parse[4]); - // sort list based on value - arsort($langs, SORT_NUMERIC); - } + // set default to 1 for any without q factor + foreach ($langs as $lang => $val) { + if ($val === '') $langs[$lang] = 1; + } + + // sort list based on value + arsort($langs, SORT_NUMERIC); + } } if(isset($langs) && count($langs)) { @@ -94,7 +94,7 @@ if(! function_exists('load_translation_table')) { * load string translation table for alternate language * * first plugin strings are loaded, then globals - * + * * @param string $lang language code to load */ function load_translation_table($lang) { @@ -111,7 +111,7 @@ function load_translation_table($lang) { } } } - + if(file_exists("view/$lang/strings.php")) { include("view/$lang/strings.php"); } @@ -145,7 +145,7 @@ function tt($singular, $plural, $count){ $k = $f($count); return is_array($t)?$t[$k]:$t; } - + if ($count!=1){ return $plural; } else { @@ -153,11 +153,34 @@ function tt($singular, $plural, $count){ } }} -// provide a fallback which will not collide with -// a function defined in any language file +// provide a fallback which will not collide with +// a function defined in any language file if(! function_exists('string_plural_select_default')) { function string_plural_select_default($n) { return ($n != 1); }} + +/** + * Return installed languages as associative array + * [ + * lang => lang, + * ... + * ] + */ +function get_avaiable_languages() { + $lang_choices = array(); + $langs = glob('view/*/strings.php'); /**/ + + if(is_array($langs) && count($langs)) { + if(! in_array('view/en/strings.php',$langs)) + $langs[] = 'view/en/'; + asort($langs); + foreach($langs as $l) { + $t = explode("/",$l); + $lang_choices[$t[1]] = $t[1]; + } + } + return $lang_choices; +} diff --git a/include/photos.php b/include/photos.php new file mode 100644 index 0000000000..93a565b511 --- /dev/null +++ b/include/photos.php @@ -0,0 +1,27 @@ + 0 ? gps2Num($exifCoord[0]) : 0; + $minutes = count($exifCoord) > 1 ? gps2Num($exifCoord[1]) : 0; + $seconds = count($exifCoord) > 2 ? gps2Num($exifCoord[2]) : 0; + + $flip = ($hemi == 'W' or $hemi == 'S') ? -1 : 1; + + return floatval($flip * ($degrees + ($minutes / 60) + ($seconds / 3600))); +} + +function gps2Num($coordPart) { + $parts = explode('/', $coordPart); + + if (count($parts) <= 0) + return 0; + + if (count($parts) == 1) + return $parts[0]; + + return floatval($parts[0]) / floatval($parts[1]); +} diff --git a/include/pidfile.php b/include/pidfile.php index 4f5b25ad75..3093e149ae 100644 --- a/include/pidfile.php +++ b/include/pidfile.php @@ -7,8 +7,8 @@ class pidfile { $this->_file = "$dir/$name.pid"; if (file_exists($this->_file)) { - $pid = trim(file_get_contents($this->_file)); - if (posix_kill($pid, 0)) { + $pid = trim(@file_get_contents($this->_file)); + if (($pid != "") AND posix_kill($pid, 0)) { $this->_running = true; } } @@ -21,7 +21,7 @@ class pidfile { public function __destruct() { if ((! $this->_running) && file_exists($this->_file)) { - unlink($this->_file); + @unlink($this->_file); } } @@ -30,7 +30,7 @@ class pidfile { } public function running_time() { - return(time() - filectime($this->_file)); + return(time() - @filectime($this->_file)); } public function kill() { diff --git a/include/plugin.php b/include/plugin.php index 5a4755c319..965b823b02 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -1,7 +1,17 @@ 0)); +} - - +/** + * @brief registers a hook. + * + * @param string $hook the name of the hook + * @param string $file the name of the file that hooks into + * @param string $function the name of the function that the hook will call + * @param int $priority A priority (defaults to 0) + * @return mixed|bool + */ if(! function_exists('register_hook')) { function register_hook($hook,$file,$function,$priority=0) { @@ -129,6 +162,14 @@ function register_hook($hook,$file,$function,$priority=0) { return $r; }} +/** + * @brief unregisters a hook. + * + * @param string $hook the name of the hook + * @param string $file the name of the file that hooks into + * @param string $function the name of the function that the hook called + * @return array + */ if(! function_exists('unregister_hook')) { function unregister_hook($hook,$file,$function) { @@ -155,7 +196,15 @@ function load_hooks() { } }} - +/** + * @brief Calls a hook. + * + * Use this function when you want to be able to allow a hook to manipulate + * the provided data. + * + * @param string $name of the hook to call + * @param string|array &$data to transmit to the callback handler + */ if(! function_exists('call_hooks')) { function call_hooks($name, &$data = null) { $stamp1 = microtime(true); @@ -178,7 +227,7 @@ function call_hooks($name, &$data = null) { } else { // remove orphan hooks - q("delete from hook where hook = '%s' and file = '%s' and function = '%s'", + q("DELETE FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s'", dbesc($name), dbesc($hook[0]), dbesc($hook[1]) @@ -204,16 +253,20 @@ function plugin_is_app($name) { return false; }} -/* - * parse plugin comment in search of plugin infos. - * like +/** + * @brief Parse plugin comment in search of plugin infos. * - * * Name: Plugin + * like + * \code + *...* Name: Plugin * * Description: A plugin which plugs in - * * Version: 1.2.3 + * . * Version: 1.2.3 * * Author: John * * Author: Jane * * + * *\endcode + * @param string $plugin the name of the plugin + * @return array with the plugin information */ if (! function_exists('get_plugin_info')){ @@ -265,16 +318,20 @@ function get_plugin_info($plugin){ }} -/* - * parse theme comment in search of theme infos. +/** + * @brief Parse theme comment in search of theme infos. + * * like - * - * * Name: My Theme + * \code + * ..* Name: My Theme * * Description: My Cool Theme - * * Version: 1.2.3 + * . * Version: 1.2.3 * * Author: John * * Maintainer: Jane * * + * \endcode + * @param string $theme the name of the theme + * @return array */ if (! function_exists('get_theme_info')){ @@ -340,7 +397,14 @@ function get_theme_info($theme){ return $info; }} - +/** + * @brief Returns the theme's screenshot. + * + * The screenshot is expected as view/theme/$theme/screenshot.[png|jpg]. + * + * @param sring $theme The name of the theme + * @return string + */ function get_theme_screenshot($theme) { $a = get_app(); $exts = array('.png','.jpg'); @@ -402,7 +466,7 @@ function service_class_allows($uid,$property,$usage = false) { $service_class = $a->user['service_class']; } else { - $r = q("select service_class from user where uid = %d limit 1", + $r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1", intval($uid) ); if($r !== false and count($r)) { @@ -432,7 +496,7 @@ function service_class_fetch($uid,$property) { $service_class = $a->user['service_class']; } else { - $r = q("select service_class from user where uid = %d limit 1", + $r = q("SELECT `service_class` FROM `user` WHERE `uid` = %d LIMIT 1", intval($uid) ); if($r !== false and count($r)) { diff --git a/include/poller.php b/include/poller.php index 28dc0c0cde..45740dab62 100644 --- a/include/poller.php +++ b/include/poller.php @@ -12,7 +12,6 @@ if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) { require_once("boot.php"); - function poller_run(&$argv, &$argc){ global $a, $db; @@ -21,303 +20,145 @@ function poller_run(&$argv, &$argc){ } if(is_null($db)) { - @include(".htconfig.php"); - require_once("include/dba.php"); - $db = new dba($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); - }; + @include(".htconfig.php"); + require_once("include/dba.php"); + $db = new dba($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); + }; - - require_once('include/session.php'); - require_once('include/datetime.php'); - require_once('library/simplepie/simplepie.inc'); - require_once('include/items.php'); - require_once('include/Contact.php'); - require_once('include/email.php'); - require_once('include/socgraph.php'); - require_once('include/pidfile.php'); - require_once('mod/nodeinfo.php'); - - load_config('config'); - load_config('system'); - - $maxsysload = intval(get_config('system','maxloadavg')); - if($maxsysload < 1) - $maxsysload = 50; if(function_exists('sys_getloadavg')) { + $maxsysload = intval(get_config('system','maxloadavg')); + if($maxsysload < 1) + $maxsysload = 50; + $load = sys_getloadavg(); if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. Poller deferred to next scheduled run.'); + logger('system: load ' . $load[0] . ' too high. poller deferred to next scheduled run.'); return; } } - $lockpath = get_lockpath(); - if ($lockpath != '') { - $pidfile = new pidfile($lockpath, 'poller'); - if($pidfile->is_already_running()) { - logger("poller: Already running"); - if ($pidfile->running_time() > 9*60) { - $pidfile->kill(); - logger("poller: killed stale process"); - // Calling a new instance - proc_run('php','include/poller.php'); - } - exit; - } - } + if(($argc <= 1) OR ($argv[1] != "no_cron")) { + // Run the cron job that calls all other jobs + proc_run("php","include/cron.php"); + // Run the cronhooks job separately from cron for being able to use a different timing + proc_run("php","include/cronhooks.php"); + // Cleaning dead processes + $r = q("SELECT DISTINCT(`pid`) FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); + foreach($r AS $pid) + if (!posix_kill($pid["pid"], 0)) + q("UPDATE `workerqueue` SET `executed` = '0000-00-00 00:00:00', `pid` = 0 WHERE `pid` = %d", + intval($pid["pid"])); + else { + // To-Do: Kill long running processes + // But: Update processes (like the database update) mustn't be killed + } - $a->set_baseurl(get_config('system','url')); + } else + // Sleep two seconds before checking for running processes to avoid having too many workers + sleep(4); - load_hooks(); - - logger('poller: start'); - - // run queue delivery process in the background - - proc_run('php',"include/queue.php"); - - // run diaspora photo queue process in the background - - proc_run('php',"include/dsprphotoq.php"); - - // run the process to discover global contacts in the background - - proc_run('php',"include/discover_poco.php"); - - // run the process to update locally stored global contacts in the background - - proc_run('php',"include/discover_poco.php", "checkcontact"); - - // expire any expired accounts - - q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 - AND `account_expires_on` != '0000-00-00 00:00:00' - AND `account_expires_on` < UTC_TIMESTAMP() "); - - // delete user and contact records for recently removed accounts - - $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY"); - if ($r) { - foreach($r as $user) { - q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid'])); - q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid'])); - } - } - - $abandon_days = intval(get_config('system','account_abandon_days')); - if($abandon_days < 1) - $abandon_days = 0; - - // Check OStatus conversations - // Check only conversations with mentions (for a longer time) - check_conversations(true); - - // Check every conversation - check_conversations(false); - - // Follow your friends from your legacy OStatus account - ostatus_check_follow_friends(); - - // update nodeinfo data - nodeinfo_cron(); - - // To-Do: Regenerate usage statistics - // q("ANALYZE TABLE `item`"); - - // once daily run birthday_updates and then expire in background - - $d1 = get_config('system','last_expire_day'); - $d2 = intval(datetime_convert('UTC','UTC','now','d')); - - if($d2 != intval($d1)) { - - update_contact_birthdays(); - - update_suggestions(); - - set_config('system','last_expire_day',$d2); - proc_run('php','include/expire.php'); - } - - $last = get_config('system','cache_last_cleared'); - - if($last) { - $next = $last + (3600); // Once per hour - $clear_cache = ($next <= time()); - } else - $clear_cache = true; - - if ($clear_cache) { - // clear old cache - Cache::clear(); - - // clear old item cache files - clear_cache(); - - // clear cache for photos - clear_cache($a->get_basepath(), $a->get_basepath()."/photo"); - - // clear smarty cache - clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled"); - - // clear cache for image proxy - if (!get_config("system", "proxy_disabled")) { - clear_cache($a->get_basepath(), $a->get_basepath()."/proxy"); - - $cachetime = get_config('system','proxy_cache_time'); - if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME; - - q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime); - } - - set_config('system','cache_last_cleared', time()); - } - - $manual_id = 0; - $generation = 0; - $force = false; - $restart = false; - - if(($argc > 1) && ($argv[1] == 'force')) - $force = true; - - if(($argc > 1) && ($argv[1] == 'restart')) { - $restart = true; - $generation = intval($argv[2]); - if(! $generation) - killme(); - } - - if(($argc > 1) && intval($argv[1])) { - $manual_id = intval($argv[1]); - $force = true; - } - - $interval = intval(get_config('system','poll_interval')); - if(! $interval) - $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); - - $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : ""); - - reload_plugins(); - - $d = datetime_convert(); - - if(! $restart) - proc_run('php','include/cronhooks.php'); - - // Only poll from those with suitable relationships, - // and which have a polling address and ignore Diaspora since - // we are unable to match those posts with a Diaspora GUID and prevent duplicates. - - $abandon_sql = (($abandon_days) - ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days)) - : '' - ); - - $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid` - WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s') - $sql_extra - AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive` - AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()", - intval(CONTACT_IS_SHARING), - intval(CONTACT_IS_FRIEND), - dbesc(NETWORK_DFRN), - dbesc(NETWORK_ZOT), - dbesc(NETWORK_OSTATUS), - dbesc(NETWORK_FEED), - dbesc(NETWORK_MAIL), - dbesc(NETWORK_MAIL2) - ); - - if(! count($contacts)) { + // Checking number of workers + if (poller_too_much_workers()) return; - } - foreach($contacts as $c) { + $starttime = time(); - $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1", - intval($c['id']) - ); + while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { - if((! $res) || (! count($res))) + q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d AND `executed` = '0000-00-00 00:00:00'", + dbesc(datetime_convert()), + intval(getmypid()), + intval($r[0]["id"])); + + // Assure that there are no tasks executed twice + $id = q("SELECT `id` FROM `workerqueue` WHERE `id` = %d AND `pid` = %d", + intval($r[0]["id"]), + intval(getmypid())); + if (!$id) { + logger("Queue item ".$r[0]["id"]." was executed multiple times - skip this execution", LOGGER_DEBUG); continue; - - foreach($res as $contact) { - - $xml = false; - - if($manual_id) - $contact['last-update'] = '0000-00-00 00:00:00'; - - if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) - $contact['priority'] = 2; - - if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) { - // We should be getting everything via a hub. But just to be sure, let's check once a day. - // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately) - // This also lets us update our subscription to the hub, and add or replace hubs in case it - // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'. - - $poll_interval = get_config('system','pushpoll_frequency'); - $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3); - } - - if($contact['priority'] AND !$force) { - - $update = false; - - $t = $contact['last-update']; - - /** - * Based on $contact['priority'], should we poll this site now? Or later? - */ - - switch ($contact['priority']) { - case 5: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month")) - $update = true; - break; - case 4: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week")) - $update = true; - break; - case 3: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) - $update = true; - break; - case 2: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour")) - $update = true; - break; - case 1: - default: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour")) - $update = true; - break; - } - if(!$update) - continue; - } - - logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]); - - proc_run('php','include/onepoll.php',$contact['id']); - - if($interval) - @time_sleep_until(microtime(true) + (float) $interval); } + + $argv = json_decode($r[0]["parameter"]); + + $argc = count($argv); + + // Check for existance and validity of the include file + $include = $argv[0]; + + if (!validate_include($include)) { + logger("Include file ".$argv[0]." is not valid!"); + q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); + continue; + } + + require_once($include); + + $funcname=str_replace(".php", "", basename($argv[0]))."_run"; + + if (function_exists($funcname)) { + logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]); + $funcname($argv, $argc); + + logger("Process ".getmypid().": ".$funcname." - done"); + + q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); + } else + logger("Function ".$funcname." does not exist"); + + // Quit the poller once every hour + if (time() > ($starttime + 3600)) + return; + + // Count active workers and compare them with a maximum value that depends on the load + if (poller_too_much_workers()) + return; } - logger('poller: end'); +} - return; +function poller_too_much_workers() { + + $queues = get_config("system", "worker_queues"); + + if ($queues == 0) + $queues = 4; + + $active = poller_active_workers(); + + // Decrease the number of workers at higher load + if(function_exists('sys_getloadavg')) { + $load = max(sys_getloadavg()); + + $maxsysload = intval(get_config('system','maxloadavg')); + if($maxsysload < 1) + $maxsysload = 50; + + $maxworkers = $queues; + + // Some magical mathemathics to reduce the workers + $exponent = 3; + $slope = $maxworkers / pow($maxsysload, $exponent); + $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent)); + + logger("Current load: ".$load." - maximum: ".$maxsysload." - current queues: ".$active." - maximum: ".$queues, LOGGER_DEBUG); + + } + + return($active >= $queues); +} + +function poller_active_workers() { + $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); + + return($workers[0]["workers"]); } if (array_search(__file__,get_included_files())===0){ poller_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } +?> diff --git a/include/queue.php b/include/queue.php index 0edd64fdb1..cb5fe28ad9 100644 --- a/include/queue.php +++ b/include/queue.php @@ -22,6 +22,7 @@ function queue_run(&$argv, &$argc){ require_once('include/items.php'); require_once('include/bbcode.php'); require_once('include/pidfile.php'); + require_once('include/socgraph.php'); load_config('config'); load_config('system'); @@ -59,6 +60,10 @@ function queue_run(&$argv, &$argc){ $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval'))); + // If we are using the worker we don't need a delivery interval + if (get_config("system", "worker")) + $interval = false; + $r = q("select * from deliverq where 1"); if($r) { foreach($r as $rr) { @@ -88,7 +93,7 @@ function queue_run(&$argv, &$argc){ else { // For the first 12 hours we'll try to deliver every 15 minutes - // After that, we'll only attempt delivery once per hour. + // After that, we'll only attempt delivery once per hour. $r = q("SELECT `id` FROM `queue` WHERE (( `created` > UTC_TIMESTAMP() - INTERVAL 12 HOUR && `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ) OR ( `last` < UTC_TIMESTAMP() - INTERVAL 1 HOUR ))"); } @@ -107,7 +112,7 @@ function queue_run(&$argv, &$argc){ foreach($r as $q_item) { - // queue_predeliver hooks may have changed the queue db details, + // queue_predeliver hooks may have changed the queue db details, // so check again if this entry still needs processing if($queue_id) { @@ -132,12 +137,18 @@ function queue_run(&$argv, &$argc){ continue; } if(in_array($c[0]['notify'],$deadguys)) { - logger('queue: skipping known dead url: ' . $c[0]['notify']); - update_queue_time($q_item['id']); - continue; + logger('queue: skipping known dead url: ' . $c[0]['notify']); + update_queue_time($q_item['id']); + continue; } - $u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey` + if (!poco_reachable($c[0]['url'])) { + logger('queue: skipping probably dead url: ' . $c[0]['url']); + update_queue_time($q_item['id']); + continue; + } + + $u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($c[0]['uid']) ); @@ -194,9 +205,9 @@ function queue_run(&$argv, &$argc){ call_hooks('queue_deliver', $a, $params); if($params['result']) - remove_queue_item($q_item['id']); + remove_queue_item($q_item['id']); else - update_queue_time($q_item['id']); + update_queue_time($q_item['id']); break; diff --git a/include/socgraph.php b/include/socgraph.php index d380af4344..69d3308986 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -225,15 +225,17 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca $created = $x[0]["created"]; $server_url = $x[0]["server_url"]; $nick = $x[0]["nick"]; + $addr = $x[0]["addr"]; } else { $created = "0000-00-00 00:00:00"; $server_url = ""; $urlparts = parse_url($profile_url); $nick = end(explode("/", $urlparts["path"])); + $addr = ""; } - if ((($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "") OR $alternate) + if ((($network == "") OR ($name == "") OR ($addr == "") OR ($profile_photo == "") OR ($server_url == "") OR $alternate) AND poco_reachable($profile_url, $server_url, $network, false)) { $data = probe_url($profile_url); @@ -242,6 +244,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca $network = $data["network"]; $name = $data["name"]; $nick = $data["nick"]; + $addr = $data["addr"]; $profile_url = $data["url"]; $profile_photo = $data["photo"]; $server_url = $data["baseurl"]; @@ -294,14 +297,18 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca if (($keywords == "") AND ($x[0]['keywords'] != "")) $keywords = $x[0]['keywords']; + if (($addr == "") AND ($x[0]['addr'] != "")) + $addr = $x[0]['addr']; + if (($generation == 0) AND ($x[0]['generation'] > 0)) $generation = $x[0]['generation']; if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) { - q("UPDATE `gcontact` SET `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', `server_url` = '%s', + q("UPDATE `gcontact` SET `name` = '%s', `addr` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', `server_url` = '%s', `updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d WHERE (`generation` >= %d OR `generation` = 0) AND `nurl` = '%s'", dbesc($name), + dbesc($addr), dbesc($network), dbesc($profile_photo), dbesc($connect_url), @@ -318,10 +325,11 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca ); } } else { - q("INSERT INTO `gcontact` (`name`, `nick`, `network`, `url`, `nurl`, `photo`, `connect`, `server_url`, `created`, `updated`, `location`, `about`, `keywords`, `gender`, `generation`) - VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)", + q("INSERT INTO `gcontact` (`name`, `nick`, `addr`, `network`, `url`, `nurl`, `photo`, `connect`, `server_url`, `created`, `updated`, `location`, `about`, `keywords`, `gender`, `generation`) + VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)", dbesc($name), dbesc($nick), + dbesc($addr), dbesc($network), dbesc($profile_url), dbesc(normalise_link($profile_url)), @@ -570,7 +578,7 @@ function poco_last_updated($profile, $force = false) { return false; } - if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) { + if (($data["poll"] == "") OR (in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM)))) { q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc(normalise_link($profile))); return false; @@ -748,8 +756,11 @@ function poco_check_server($server_url, $network = "", $force = false) { } if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) { - $last_failure = datetime_convert(); - $failure = true; + // Workaround for bad configured servers (known nginx problem) + if ($serverret["debug"]["http_code"] != "403") { + $last_failure = datetime_convert(); + $failure = true; + } } elseif ($network == NETWORK_DIASPORA) $last_contact = datetime_convert(); @@ -1036,15 +1047,16 @@ function count_common_friends($uid,$cid) { $r = q("SELECT count(*) as `total` FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` - where `glink`.`cid` = %d and `glink`.`uid` = %d - and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) ", + WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND + ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)) + AND `gcontact`.`nurl` IN (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) ", intval($cid), intval($uid), intval($uid), intval($cid) ); -// logger("count_common_friends: $uid $cid {$r[0]['total']}"); +// logger("count_common_friends: $uid $cid {$r[0]['total']}"); if(count($r)) return $r[0]['total']; return 0; @@ -1059,11 +1071,15 @@ function common_friends($uid,$cid,$start = 0,$limit=9999,$shuffle = false) { else $sql_extra = " order by `gcontact`.`name` asc "; - $r = q("SELECT `gcontact`.* - FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` - where `glink`.`cid` = %d and `glink`.`uid` = %d - and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) - $sql_extra limit %d, %d", + $r = q("SELECT `gcontact`.*, `contact`.`id` AS `cid` + FROM `glink` + INNER JOIN `gcontact` ON `glink`.`gcid` = `gcontact`.`id` + INNER JOIN `contact` ON `gcontact`.`nurl` = `contact`.`nurl` + WHERE `glink`.`cid` = %d and `glink`.`uid` = %d + AND `contact`.`uid` = %d AND `contact`.`self` = 0 AND `contact`.`blocked` = 0 + AND `contact`.`hidden` = 0 AND `contact`.`id` != %d + AND ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)) + $sql_extra LIMIT %d, %d", intval($cid), intval($uid), intval($uid), @@ -1120,7 +1136,8 @@ function count_all_friends($uid,$cid) { $r = q("SELECT count(*) as `total` FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` - where `glink`.`cid` = %d and `glink`.`uid` = %d ", + where `glink`.`cid` = %d and `glink`.`uid` = %d AND + ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))", intval($cid), intval($uid) ); @@ -1134,10 +1151,14 @@ function count_all_friends($uid,$cid) { function all_friends($uid,$cid,$start = 0, $limit = 80) { - $r = q("SELECT `gcontact`.* - FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` - where `glink`.`cid` = %d and `glink`.`uid` = %d - order by `gcontact`.`name` asc LIMIT %d, %d ", + $r = q("SELECT `gcontact`.*, `contact`.`id` AS `cid` + FROM `glink` + INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` + LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d + WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND + ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)) + ORDER BY `gcontact`.`name` ASC LIMIT %d, %d ", + intval($uid), intval($cid), intval($uid), intval($start), diff --git a/include/text.php b/include/text.php index 0002f074e9..f210bff721 100644 --- a/include/text.php +++ b/include/text.php @@ -20,6 +20,10 @@ function replace_macros($s,$r) { $stamp1 = microtime(true); $a = get_app(); + + // pass $baseurl to all templates + $r['$baseurl'] = $a->get_baseurl(); + $t = $a->template_engine(); try { @@ -970,7 +974,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { . (($click) ? ' fakelink' : '') . '" ' . (($redir) ? ' target="redir" ' : '') . (($url) ? ' href="' . $url . '"' : '') . $click . ' >' . $contact['name']
+			. proxy_url($contact['micro'], false, PROXY_SIZE_THUMB) . '' . "\r\n"; } }} @@ -1020,8 +1024,9 @@ if(! function_exists('valid_email')) { */ function valid_email($x){ - if(get_config('system','disable_email_validation')) - return true; + // Removed because Fabio told me so. + //if(get_config('system','disable_email_validation')) + // return true; if(preg_match('/^[_a-zA-Z0-9\-\+]+(\.[_a-zA-Z0-9\-\+]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)+$/',$x)) return true; @@ -1410,9 +1415,6 @@ function prepare_body(&$item,$attach = false, $preview = false) { put_item_in_cache($item, true); $s = $item["rendered-html"]; - require_once("mod/proxy.php"); - $s = proxy_parse_html($s); - $prep_arr = array('item' => $item, 'html' => $s, 'preview' => $preview); call_hooks('prepare_body', $prep_arr); $s = $prep_arr['html']; @@ -1505,7 +1507,7 @@ function prepare_body(&$item,$attach = false, $preview = false) { if($x) { $s = preg_replace('/\

    /','$0' . $x,$s); } - } + } // Look for spoiler @@ -1741,50 +1743,6 @@ function unamp($s) { }} - - -if(! function_exists('lang_selector')) { -/** - * get html for language selector - * @global string $lang - * @return string - * @template lang_selector.tpl - */ -function lang_selector() { - global $lang; - - $langs = glob('view/*/strings.php'); - - $lang_options = array(); - $selected = ""; - - if(is_array($langs) && count($langs)) { - $langs[] = ''; - if(! in_array('view/en/strings.php',$langs)) - $langs[] = 'view/en/'; - asort($langs); - foreach($langs as $l) { - if($l == '') { - $lang_options[""] = t('default'); - continue; - } - $ll = substr($l,5); - $ll = substr($ll,0,strrpos($ll,'/')); - $selected = (($ll === $lang && (x($_SESSION, 'language'))) ? $ll : $selected); - $lang_options[$ll]=$ll; - } - } - - $tpl = get_markup_template("lang_selector.tpl"); - $o = replace_macros($tpl, array( - '$title' => t('Select an alternate language'), - '$langs' => array($lang_options, $selected), - - )); - return $o; -}} - - if(! function_exists('return_bytes')) { /** * return number of bytes in size (K, M, G) @@ -2317,14 +2275,14 @@ function deindent($text, $chr="[\t ]", $count=NULL) { return implode("\n", $lines); } -function formatBytes($bytes, $precision = 2) { - $units = array('B', 'KB', 'MB', 'GB', 'TB'); +function formatBytes($bytes, $precision = 2) { + $units = array('B', 'KB', 'MB', 'GB', 'TB'); - $bytes = max($bytes, 0); - $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); - $pow = min($pow, count($units) - 1); + $bytes = max($bytes, 0); + $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); + $pow = min($pow, count($units) - 1); $bytes /= pow(1024, $pow); - return round($bytes, $precision) . ' ' . $units[$pow]; -} + return round($bytes, $precision) . ' ' . $units[$pow]; +} diff --git a/include/update_gcontact.php b/include/update_gcontact.php new file mode 100644 index 0000000000..b5ea30a0a4 --- /dev/null +++ b/include/update_gcontact.php @@ -0,0 +1,113 @@ +set_baseurl(get_config('system','url')); + + load_hooks(); + + logger('update_gcontact: start'); + + if(($argc > 1) && (intval($argv[1]))) + $contact_id = intval($argv[1]); + + if(!$contact_id) { + logger('update_gcontact: no contact'); + return; + } + + $lockpath = get_lockpath(); + if ($lockpath != '') { + $pidfile = new pidfile($lockpath, 'update_gcontact'.$contact_id); + if ($pidfile->is_already_running()) { + logger("update_gcontact: Already running for contact ".$contact_id); + if ($pidfile->running_time() > 9*60) { + $pidfile->kill(); + logger("killed stale process"); + } + exit; + } + } + + $r = q("SELECT * FROM `gcontact` WHERE `id` = %d", intval($contact_id)); + + if (!$r) + return; + + if (!in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) + return; + + $data = probe_url($r[0]["url"]); + + if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) { + if ($r[0]["server_url"] != "") + poco_check_server($r[0]["server_url"], $r[0]["network"]); + + q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `id` = %d", + dbesc(datetime_convert()), intval($contact_id)); + return; + } + + if (($data["name"] == "") AND ($r[0]['name'] != "")) + $data["name"] = $r[0]['name']; + + if (($data["nick"] == "") AND ($r[0]['nick'] != "")) + $data["nick"] = $r[0]['nick']; + + if (($data["addr"] == "") AND ($r[0]['addr'] != "")) + $data["addr"] = $r[0]['addr']; + + if (($data["photo"] == "") AND ($r[0]['photo'] != "")) + $data["photo"] = $r[0]['photo']; + + + q("UPDATE `gcontact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `photo` = '%s' + WHERE `id` = %d", + dbesc($data["name"]), + dbesc($data["nick"]), + dbesc($data["addr"]), + dbesc($data["photo"]), + intval($contact_id) + ); + + q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `photo` = '%s' + WHERE `uid` = 0 AND `addr` = '' AND `nurl` = '%s'", + dbesc($data["name"]), + dbesc($data["nick"]), + dbesc($data["addr"]), + dbesc($data["photo"]), + dbesc(normalise_link($data["url"])) + ); + + q("UPDATE `contact` SET `addr` = '%s' + WHERE `uid` != 0 AND `addr` = '' AND `nurl` = '%s'", + dbesc($data["addr"]), + dbesc(normalise_link($data["url"])) + ); +} + +if (array_search(__file__,get_included_files())===0){ + update_gcontact_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); +} diff --git a/index.php b/index.php index 02316e1e95..9fe248e8e2 100644 --- a/index.php +++ b/index.php @@ -102,13 +102,13 @@ session_start(); * Language was set earlier, but we can over-ride it in the session. * We have to do it here because the session was just now opened. */ - -if(array_key_exists('system_language',$_POST)) { - if(strlen($_POST['system_language'])) - $_SESSION['language'] = $_POST['system_language']; - else - unset($_SESSION['language']); +if (x($_SESSION,'authenticated') && !x($_SESSION,'language')) { + // we didn't loaded user data yet, but we need user language + $r = q("SELECT language FROM user WHERE uid=%d", intval($_SESSION['uid'])); + $_SESSION['language'] = $lang; + if (count($r)>0) $_SESSION['language'] = $r[0]['language']; } + if((x($_SESSION,'language')) && ($_SESSION['language'] !== $lang)) { $lang = $_SESSION['language']; load_translation_table($lang); diff --git a/js/filebrowser.js b/js/filebrowser.js index 66db2833c3..78cee0e77e 100644 --- a/js/filebrowser.js +++ b/js/filebrowser.js @@ -1,7 +1,7 @@ /** * Filebrowser - Friendica Communications Server * - * Copyright (c) 2010-2013 the Friendica Project + * Copyright (c) 2010-2015 the Friendica Project * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -13,33 +13,34 @@ * * To load filebrowser in colorbox, call * - * $.colorbox({href: ulr, iframe:true,innerWidth:'500px',innerHeight:'400px'}) + * Dialog.doImageBrowser(eventname, id); * - * where url is: + * or * - * /fbrowser//?mode=minimal[#-] + * Dialog.doFileBrowser(eventname, id); + * + * where: * - * baseurl: baseurl from friendica - * type: one of "image", "file" * eventname: event name to catch return value * id: id returned to event handler * - * When user select an item, an event in fired in parent page, on body element - * The event is named + * When user select an item, an event in fired in parent page, on body element + * The event is named * * fbrowser..[] * - * with params: + * will be one of "image" or "file", and the event handler will + * get the following params: * * filemane: filename of item choosed by user * embed: bbcode to embed element into posts - * id: id from url + * id: id from caller code * - * example: + * example: * - * // open dialog for select an image for a textarea with id "myeditor" - * var id="myeditor"; - * $.colorbox({href: baseurl + "/fbrowser/image/?mode=minimal#example-"+id, iframe:true,innerWidth:'500px',innerHeight:'400px'}) + * // open dialog for select an image for a textarea with id "myeditor" + * var id="myeditor"; + * Dialog.doImageBrowser("example", id); * * // setup event handler to get user selection * $("body").on("fbrowser.image.example", function(event, filename, bbcode, id) { diff --git a/js/main.js b/js/main.js index e1e852cbaf..df454afe1f 100644 --- a/js/main.js +++ b/js/main.js @@ -4,20 +4,20 @@ } function openClose(theID) { - if(document.getElementById(theID).style.display == "block") { - document.getElementById(theID).style.display = "none" + if(document.getElementById(theID).style.display == "block") { + document.getElementById(theID).style.display = "none" + } + else { + document.getElementById(theID).style.display = "block" } - else { - document.getElementById(theID).style.display = "block" - } } function openMenu(theID) { - document.getElementById(theID).style.display = "block" + document.getElementById(theID).style.display = "block" } function closeMenu(theID) { - document.getElementById(theID).style.display = "none" + document.getElementById(theID).style.display = "none" } @@ -50,14 +50,14 @@ if (e.hasClass("ttright")) pos="right"; e.tipTip({defaultPosition: pos, edgeOffset: 8}); });*/ - + /* setup comment textarea buttons */ /* comment textarea buttons needs some "data-*" attributes to work: * data-role="insert-formatting" : to mark the element as a formatting button * data-comment="" : string for "Comment", used by insertFormatting() function * data-bbcode="" : name of the bbcode element to insert. insertFormatting() will insert it as "[name][/name]" * data-id="" : id of the comment, used to find other comment-related element, like the textarea - * */ + * */ $('body').on('click','[data-role="insert-formatting"]', function(e) { e.preventDefault(); var o = $(this); @@ -65,10 +65,9 @@ var bbcode = o.data('bbcode'); var id = o.data('id'); if (bbcode=="img") { - $.colorbox({href: baseurl + "/fbrowser/image/?mode=minimal#comment-"+id, iframe:true,innerWidth:'500px',innerHeight:'400px'}) - return; + Dialog.doImageBrowser("comment", id); + return; } - insertFormatting(comment, bbcode, id); }); @@ -82,18 +81,18 @@ var end = textarea.selectionEnd; textarea.value = textarea.value.substring(0, start) + bbcode + textarea.value.substring(end, textarea.value.length); }); - - - + + + /* setup onoff widgets */ $(".onoff input").each(function(){ val = $(this).val(); id = $(this).attr("id"); $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden"); - + }); $(".onoff > a").click(function(event){ - event.preventDefault(); + event.preventDefault(); var input = $(this).siblings("input"); var val = 1-input.val(); var id = input.attr("id"); @@ -102,7 +101,7 @@ input.val(val); //console.log(id); }); - + /* setup field_richtext */ setupFieldRichtext(); @@ -139,22 +138,22 @@ $('html').click(function() { close_last_popup_menu(); }); - + // fancyboxes $("a.popupbox").colorbox({ 'inline' : true, 'transition' : 'elastic' }); - + /* notifications template */ var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html()); var notifications_all = unescape($('
    ').append( $("#nav-notifications-see-all").clone() ).html()); //outerHtml hack var notifications_mark = unescape($('
    ').append( $("#nav-notifications-mark-all").clone() ).html()); //outerHtml hack var notifications_empty = unescape($("#nav-notifications-menu").html()); - + /* nav update event */ - $('nav').bind('nav-update', function(e,data){; + $('nav').bind('nav-update', function(e,data){ var invalid = $(data).find('invalid').text(); if(invalid == 1) { window.location.href=window.location.href } @@ -165,7 +164,7 @@ var home = $(data).find('home').text(); if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') } $('#home-update').html(home); - + var intro = $(data).find('intro').text(); if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') } $('#intro-update').html(intro); @@ -173,7 +172,7 @@ var mail = $(data).find('mail').text(); if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') } $('#mail-update').html(mail); - + var intro = $(data).find('intro').text(); if(intro == 0) { intro = ''; $('#intro-update-li').removeClass('show') } else { $('#intro-update-li').addClass('show') } $('#intro-update-li').html(intro); @@ -204,9 +203,16 @@ var birthdaystoday = $(data).find('birthdays-today').text(); if(birthdaystoday == 0) { $('#birthdays-update').removeClass('notif-birthdays-today') } else { $('#birthdays-update').addClass('notif-birthdays-today') } + $(".sidebar-group-li .notify").removeClass("show"); + $(data).find("group").each(function() { + var gid = this.id; + var gcount = this.innerHTML; + $(".group-"+gid+" .notify").addClass("show").text(gcount); + }); + var eNotif = $(data).find('notif') - + if (eNotif.children("note").length==0){ $("#nav-notifications-menu").html(notifications_empty); } else { @@ -244,7 +250,7 @@ }); } } - + }); notification_lastitem = notification_id; localStorage.setItem("notification-lastitem", notification_lastitem) @@ -267,7 +273,7 @@ } if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') } $('#notify-update').html(notif); - + var eSysmsg = $(data).find('sysmsgs'); eSysmsg.children("notice").each(function(){ text = $(this).text(); @@ -277,10 +283,10 @@ text = $(this).text(); $.jGrowl(text, { sticky: false, theme: 'info', life: 5000 }); }); - + }); - NavUpdate(); + NavUpdate(); // Allow folks to stop the ajax page updates with the pause/break key $(document).keydown(function(event) { if(event.keyCode == '8') { @@ -306,8 +312,8 @@ } } }); - - + + }); function NavUpdate() { @@ -318,8 +324,8 @@ $(data).find('result').each(function() { // send nav-update event $('nav').trigger('nav-update', this); - - + + // start live update if($('#live-network').length) { src = 'network'; liveUpdate(); } @@ -330,19 +336,19 @@ /* if($('#live-display').length) { if(liking) { liking = 0; - window.location.href=window.location.href + window.location.href=window.location.href } }*/ - if($('#live-photos').length) { + if($('#live-photos').length) { if(liking) { liking = 0; - window.location.href=window.location.href + window.location.href=window.location.href } } - - - + + + }); }) ; } @@ -432,8 +438,8 @@ }); $('#' + prev).after($(this)); } - else { - $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); + else { + $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); if($('#' + ident + ' ' + '.comment-edit-text-empty').length) $('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper')); $('#' + ident + ' ' + '.hide-comments-total').replaceWith($(this).find('.hide-comments-total')); @@ -443,7 +449,7 @@ $(this).attr('src',$(this).attr('dst')); }); } - prev = ident; + prev = ident; }); */ $('.like-rotator').hide(); @@ -467,10 +473,10 @@ $(node).removeClass("drop").addClass("drophide"); } - // Since our ajax calls are asynchronous, we will give a few - // seconds for the first ajax call (setting like/dislike), then + // Since our ajax calls are asynchronous, we will give a few + // seconds for the first ajax call (setting like/dislike), then // run the updater to pick up any changes and display on the page. - // The updater will turn any rotators off when it's done. + // The updater will turn any rotators off when it's done. // This function will have returned long before any of these // events have completed and therefore there won't be any // visible feedback that anything changed without all this @@ -582,14 +588,14 @@ commentBusy = true; $('body').css('cursor', 'wait'); $("#comment-preview-inp-" + id).val("0"); - $.post( - "item", - $("#comment-edit-form-" + id).serialize(), + $.post( + "item", + $("#comment-edit-form-" + id).serialize(), function(data) { if(data.success) { $("#comment-edit-wrapper-" + id).hide(); $("#comment-edit-text-" + id).val(''); - var tarea = document.getElementById("comment-edit-text-" + id); + var tarea = document.getElementById("comment-edit-text-" + id); if(tarea) commentClose(tarea,id); if(timer) clearTimeout(timer); @@ -600,28 +606,27 @@ window.location.href=data.reload; } }, - "json" - ); - return false; + "json" + ); + return false; } function preview_comment(id) { $("#comment-preview-inp-" + id).val("1"); $("#comment-edit-preview-" + id).show(); - $.post( - "item", - $("#comment-edit-form-" + id).serialize(), + $.post( + "item", + $("#comment-edit-form-" + id).serialize(), function(data) { if(data.preview) { - $("#comment-edit-preview-" + id).html(data.preview); $("#comment-edit-preview-" + id + " a").click(function() { return false; }); } }, - "json" - ); - return true; + "json" + ); + return true; } @@ -643,19 +648,19 @@ $("#jot-preview").val("1"); $("#jot-preview-content").show(); tinyMCE.triggerSave(); - $.post( - "item", + $.post( + "item", $("#profile-jot-form").serialize(), function(data) { - if(data.preview) { + if(data.preview) { $("#jot-preview-content").html(data.preview); $("#jot-preview-content" + " a").click(function() { return false; }); } }, - "json" - ); + "json" + ); $("#jot-preview").val("0"); - return true; + return true; } @@ -663,38 +668,38 @@ // unpause auto reloads if they are currently stopped totStopped = false; stopped = false; - $('#pause').html(''); + $('#pause').html(''); } - - function bin2hex(s){ - // Converts the binary representation of data to hex - // - // version: 812.316 - // discuss at: http://phpjs.org/functions/bin2hex - // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) - // + bugfixed by: Onno Marsman - // + bugfixed by: Linuxworld - // * example 1: bin2hex('Kev'); - // * returns 1: '4b6576' - // * example 2: bin2hex(String.fromCharCode(0x00)); - // * returns 2: '00' - var v,i, f = 0, a = []; - s += ''; - f = s.length; - - for (i = 0; iargc < 2) { + if(is_ajax()) return; + goaway($a->get_baseurl(true) . '/admin/' ); + return; + } + $theme = $a->argv[2]; if (is_file("view/theme/$theme/config.php")){ - require_once("view/theme/$theme/config.php"); - if (function_exists("theme_admin_post")){ - theme_admin_post($a); + function __call_theme_admin_post(&$a, $theme) { + $orig_theme = $a->theme; + $orig_page = $a->page; + $orig_session_theme = $_SESSION['theme']; + require_once("view/theme/$theme/theme.php"); + require_once("view/theme/$theme/config.php"); + $_SESSION['theme'] = $theme; + + + $init = $theme."_init"; + if(function_exists($init)) $init($a); + if(function_exists("theme_admin_post")){ + $admin_form = theme_admin_post($a); + } + + $_SESSION['theme'] = $orig_session_theme; + $a->theme = $orig_theme; + $a->page = $orig_page; + return $admin_form; } + __call_theme_admin_post($a, $theme); } info(t('Theme settings updated.')); if(is_ajax()) return; @@ -112,7 +135,7 @@ function admin_content(&$a) { /* get plugins admin page */ - $r = q("SELECT name FROM `addon` WHERE `plugin_admin`=1"); + $r = q("SELECT `name` FROM `addon` WHERE `plugin_admin`=1 ORDER BY `name`"); $aside['plugins_admin']=Array(); foreach ($r as $h){ $plugin =$h['name']; @@ -416,6 +439,11 @@ function admin_page_site_post(&$a){ $rino = ((x($_POST,'rino')) ? intval($_POST['rino']) : 0); $embedly = ((x($_POST,'embedly')) ? notags(trim($_POST['embedly'])) : ''); + if ($a->get_path() != "") + $diaspora_enabled = false; + + if (!$thread_allow) + $ostatus_disabled = true; if($ssl_policy != intval(get_config('system','ssl_policy'))) { if($ssl_policy == SSL_POLICY_FULL) { @@ -535,6 +563,7 @@ function admin_page_site_post(&$a){ set_config('system','ostatus_disabled', $ostatus_disabled); set_config('system','ostatus_poll_interval', $ostatus_poll_interval); set_config('system','diaspora_enabled', $diaspora_enabled); + set_config('config','private_addons', $private_addons); set_config('system','force_ssl', $force_ssl); @@ -551,10 +580,10 @@ function admin_page_site_post(&$a){ set_config('system','old_pager', $old_pager); set_config('system','only_tag_search', $only_tag_search); - + if ($rino==2 and !function_exists('mcrypt_create_iv')){ - notice(t("RINO2 needs mcrypt php extension to work.")); - } else { + notice(t("RINO2 needs mcrypt php extension to work.")); + } else { set_config('system','rino_encrypt', $rino); } @@ -574,18 +603,7 @@ function admin_page_site_post(&$a){ function admin_page_site(&$a) { /* Installed langs */ - $lang_choices = array(); - $langs = glob('view/*/strings.php'); /**/ - - if(is_array($langs) && count($langs)) { - if(! in_array('view/en/strings.php',$langs)) - $langs[] = 'view/en/'; - asort($langs); - foreach($langs as $l) { - $t = explode("/",$l); - $lang_choices[$t[1]] = $t[1]; - } - } + $lang_choices = get_avaiable_languages(); if (strlen(get_config('system','directory_submit_url')) AND !strlen(get_config('system','directory'))) { @@ -597,58 +615,60 @@ function admin_page_site(&$a) { $theme_choices = array(); $theme_choices_mobile = array(); $theme_choices_mobile["---"] = t("No special theme for mobile devices"); - $files = glob('view/theme/*'); + $files = glob('view/theme/*'); /**/ if($files) { foreach($files as $file) { + if (intval(file_exists($file . '/unsupported'))) + continue; + $f = basename($file); $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f); if (file_exists($file . '/mobile')) { $theme_choices_mobile[$f] = $theme_name; - } - else { + } else { $theme_choices[$f] = $theme_name; } } - } + } - /* Community page style */ - $community_page_style_choices = array( - CP_NO_COMMUNITY_PAGE => t("No community page"), - CP_USERS_ON_SERVER => t("Public postings from users of this site"), - CP_GLOBAL_COMMUNITY => t("Global community page") - ); + /* Community page style */ + $community_page_style_choices = array( + CP_NO_COMMUNITY_PAGE => t("No community page"), + CP_USERS_ON_SERVER => t("Public postings from users of this site"), + CP_GLOBAL_COMMUNITY => t("Global community page") + ); - /* OStatus conversation poll choices */ - $ostatus_poll_choices = array( - "-2" => t("Never"), - "-1" => t("At post arrival"), - "0" => t("Frequently"), - "60" => t("Hourly"), - "720" => t("Twice daily"), - "1440" => t("Daily") - ); + /* OStatus conversation poll choices */ + $ostatus_poll_choices = array( + "-2" => t("Never"), + "-1" => t("At post arrival"), + "0" => t("Frequently"), + "60" => t("Hourly"), + "720" => t("Twice daily"), + "1440" => t("Daily") + ); - $poco_discovery_choices = array( - "0" => t("Disabled"), - "1" => t("Users"), - "2" => t("Users, Global Contacts"), - "3" => t("Users, Global Contacts/fallback"), - ); + $poco_discovery_choices = array( + "0" => t("Disabled"), + "1" => t("Users"), + "2" => t("Users, Global Contacts"), + "3" => t("Users, Global Contacts/fallback"), + ); - $poco_discovery_since_choices = array( - "30" => t("One month"), - "91" => t("Three months"), - "182" => t("Half a year"), - "365" => t("One year"), - ); + $poco_discovery_since_choices = array( + "30" => t("One month"), + "91" => t("Three months"), + "182" => t("Half a year"), + "365" => t("One year"), + ); - /* get user names to make the install a personal install of X */ - $user_names = array(); - $user_names['---'] = t('Multi user instance'); - $users = q("SELECT username, nickname FROM `user`"); - foreach ($users as $user) { - $user_names[$user['nickname']] = $user['username']; - } + /* get user names to make the install a personal install of X */ + $user_names = array(); + $user_names['---'] = t('Multi user instance'); + $users = q("SELECT username, nickname FROM `user`"); + foreach ($users as $user) { + $user_names[$user['nickname']] = $user['username']; + } /* Banner */ $banner = get_config('system','banner'); @@ -681,6 +701,8 @@ function admin_page_site(&$a) { if ($a->config['hostname'] == "") $a->config['hostname'] = $a->get_hostname(); + $diaspora_able = ($a->get_path() == ""); + $t = get_markup_template("admin_site.tpl"); return replace_macros($t, array( '$title' => t('Administration'), @@ -737,6 +759,9 @@ function admin_page_site(&$a) { '$max_author_posts_community_page' => array('max_author_posts_community_page', t("Posts per user on community page"), get_config('system','max_author_posts_community_page'), t("The maximum number of posts per user on the community page. (Not valid for 'Global Community')")), '$ostatus_disabled' => array('ostatus_disabled', t("Enable OStatus support"), !get_config('system','ostatus_disabled'), t("Provide built-in OStatus \x28StatusNet, GNU Social etc.\x29 compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.")), '$ostatus_poll_interval' => array('ostatus_poll_interval', t("OStatus conversation completion interval"), (string) intval(get_config('system','ostatus_poll_interval')), t("How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."), $ostatus_poll_choices), + '$ostatus_not_able' => t("OStatus support can only be enabled if threading is enabled."), + '$diaspora_able' => $diaspora_able, + '$diaspora_not_able' => t("Diaspora support can't be enabled because Friendica was installed into a sub directory."), '$diaspora_enabled' => array('diaspora_enabled', t("Enable Diaspora support"), get_config('system','diaspora_enabled'), t("Provide built-in Diaspora network compatibility.")), '$dfrn_only' => array('dfrn_only', t('Only allow Friendica contacts'), get_config('system','dfrn_only'), t("All contacts must use Friendica protocols. All other built-in communication protocols disabled.")), '$verifyssl' => array('verifyssl', t("Verify SSL"), get_config('system','verifyssl'), t("If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.")), @@ -1206,7 +1231,7 @@ function admin_page_plugins(&$a){ * List plugins */ - if (x($_GET,"a") && $_GET['a']=="r"){ + if (x($_GET,"a") && $_GET['a']=="r"){ check_form_security_token_redirectOnErr($a->get_baseurl().'/admin/plugins', 'admin_themes', 't'); reload_plugins(); info("Plugins reloaded"); @@ -1241,6 +1266,7 @@ function admin_page_plugins(&$a){ '$title' => t('Administration'), '$page' => t('Plugins'), '$submit' => t('Save Settings'), + '$reload' => t('Reload active plugins'), '$baseurl' => $a->get_baseurl(true), '$function' => 'plugins', '$plugins' => $plugins, @@ -1393,11 +1419,27 @@ function admin_page_themes(&$a){ $admin_form=""; if (is_file("view/theme/$theme/config.php")){ - require_once("view/theme/$theme/config.php"); - if(function_exists("theme_admin")){ - $admin_form = theme_admin($a); - } + function __get_theme_admin_form(&$a, $theme) { + $orig_theme = $a->theme; + $orig_page = $a->page; + $orig_session_theme = $_SESSION['theme']; + require_once("view/theme/$theme/theme.php"); + require_once("view/theme/$theme/config.php"); + $_SESSION['theme'] = $theme; + + $init = $theme."_init"; + if(function_exists($init)) $init($a); + if(function_exists("theme_admin")){ + $admin_form = theme_admin($a); + } + + $_SESSION['theme'] = $orig_session_theme; + $a->theme = $orig_theme; + $a->page = $orig_page; + return $admin_form; + } + $admin_form = __get_theme_admin_form($a, $theme); } $screenshot = array( get_theme_screenshot($theme), t('Screenshot')); @@ -1427,6 +1469,22 @@ function admin_page_themes(&$a){ )); } + + // reload active themes + if (x($_GET,"a") && $_GET['a']=="r"){ + check_form_security_token_redirectOnErr($a->get_baseurl().'/admin/themes', 'admin_themes', 't'); + if ($themes) { + foreach($themes as $th) { + if ($th['allowed']) { + uninstall_theme($th['name']); + install_theme($th['name']); + } + } + } + info("Themes reloaded"); + goaway($a->get_baseurl().'/admin/themes'); + } + /** * List themes */ @@ -1438,11 +1496,13 @@ function admin_page_themes(&$a){ } } + $t = get_markup_template("admin_plugins.tpl"); return replace_macros($t, array( '$title' => t('Administration'), '$page' => t('Themes'), '$submit' => t('Save Settings'), + '$reload' => t('Reload active themes'), '$baseurl' => $a->get_baseurl(true), '$function' => 'themes', '$plugins' => $xthemes, diff --git a/mod/allfriends.php b/mod/allfriends.php index 1a45775fb2..1be9550b10 100644 --- a/mod/allfriends.php +++ b/mod/allfriends.php @@ -1,6 +1,8 @@ argc > 1) $cid = intval($a->argv[1]); + if(! $cid) return; - $c = q("select name, url, photo from contact where id = %d and uid = %d limit 1", + $uid = $a->user[uid]; + + $c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($cid), intval(local_user()) ); $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $c[0]['name'], + '$name' => htmlentities($c[0]['name']), '$photo' => $c[0]['photo'], 'url' => z_root() . '/contacts/' . $cid )); @@ -33,10 +38,6 @@ function allfriends_content(&$a) { if(! count($c)) return; - $o .= replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => sprintf( t('Friends of %s'), $c[0]['name']) - )); - $r = all_friends(local_user(),$cid); @@ -45,19 +46,53 @@ function allfriends_content(&$a) { return $o; } - $tpl = get_markup_template('common_friends.tpl'); + $id = 0; foreach($r as $rr) { - - $o .= replace_macros($tpl,array( - '$url' => $rr['url'], - '$name' => $rr['name'], - '$photo' => $rr['photo'], - '$tags' => '' - )); + + //get further details of the contact + $contact_details = get_contact_details_by_url($rr['url'], $uid); + + $photo_menu = ''; + + // $rr[cid] is only available for common contacts. So if the contact is a common one, use contact_photo_menu to generate the photo_menu + // If the contact is not common to the user, Connect/Follow' will be added to the photo menu + if ($rr[cid]) { + $rr[id] = $rr[cid]; + $photo_menu = contact_photo_menu ($rr); + } + else { + $connlnk = $a->get_baseurl() . '/follow/?url=' . $rr['url']; + $photo_menu = array(array(t("View Profile"), zrl($rr['url']))); + $photo_menu[] = array(t("Connect/Follow"), $connlnk); + } + + $entry = array( + 'url' => $rr['url'], + 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']), + 'name' => htmlentities($rr['name']), + 'thumb' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB), + 'img_hover' => htmlentities($rr['name']), + 'details' => $contact_details['location'], + 'tags' => $contact_details['keywords'], + 'about' => $contact_details['about'], + 'account_type' => (($contact_details['community']) ? t('Forum') : ''), + 'network' => network_to_name($contact_details['network'], $contact_details['url']), + 'photo_menu' => $photo_menu, + 'conntxt' => t('Connect'), + 'connlnk' => $connlnk, + 'id' => ++$id, + ); + $entries[] = $entry; } - $o .= cleardiv(); + $tpl = get_markup_template('viewcontact_template.tpl'); + + $o .= replace_macros($tpl,array( + '$title' => sprintf( t('Friends of %s'), htmlentities($c[0]['name'])), + '$contacts' => $entries, + )); + // $o .= paginate($a); return $o; } diff --git a/mod/common.php b/mod/common.php index 3118d12479..0860922297 100644 --- a/mod/common.php +++ b/mod/common.php @@ -1,6 +1,8 @@ argv[3]); $zcid = 0; + if (! local_user()) { + notice( t('Permission denied.') . EOL); + return; + } + if($cmd !== 'loc' && $cmd != 'rem') return; + if(! $uid) return; - if($cmd === 'loc' && $cid) { - $c = q("select name, url, photo from contact where id = %d and uid = %d limit 1", + if($cmd === 'loc' && $cid) { + $c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($cid), intval($uid) ); } else { - $c = q("select name, url, photo from contact where self = 1 and uid = %d limit 1", + $c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1", intval($uid) ); - } + } $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $c[0]['name'], + '$name' => htmlentities($c[0]['name']), '$photo' => $c[0]['photo'], 'url' => z_root() . '/contacts/' . $cid )); @@ -41,21 +49,16 @@ function common_content(&$a) { if(! count($c)) return; - $o .= replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => t('Common Friends') - )); - - if(! $cid) { if(get_my_url()) { - $r = q("select id from contact where nurl = '%s' and uid = %d limit 1", + $r = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1", dbesc(normalise_link(get_my_url())), intval($profile_uid) ); if(count($r)) $cid = $r[0]['id']; else { - $r = q("select id from gcontact where nurl = '%s' limit 1", + $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1", dbesc(normalise_link(get_my_url())) ); if(count($r)) @@ -67,7 +70,7 @@ function common_content(&$a) { if($cid == 0 && $zcid == 0) - return; + return; if($cid) @@ -94,19 +97,43 @@ function common_content(&$a) { return $o; } - $tpl = get_markup_template('common_friends.tpl'); + $id = 0; foreach($r as $rr) { - - $o .= replace_macros($tpl,array( - '$url' => $rr['url'], - '$name' => $rr['name'], - '$photo' => $rr['photo'], - '$tags' => '' - )); + + //get further details of the contact + $contact_details = get_contact_details_by_url($rr['url'], $uid); + + // $rr[id] is needed to use contact_photo_menu() + $rr[id] = $rr[cid]; + + $photo_menu = ''; + $photo_menu = contact_photo_menu ($rr); + + $entry = array( + 'url' => $rr['url'], + 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']), + 'name' => $rr['name'], + 'thumb' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB), + 'img_hover' => htmlentities($rr['name']), + 'details' => $contact_details['location'], + 'tags' => $contact_details['keywords'], + 'about' => $contact_details['about'], + 'account_type' => (($contact_details['community']) ? t('Forum') : ''), + 'network' => network_to_name($contact_details['network'], $contact_details['url']), + 'photo_menu' => $photo_menu, + 'id' => ++$id, + ); + $entries[] = $entry; } - $o .= cleardiv(); + $tpl = get_markup_template('viewcontact_template.tpl'); + + $o .= replace_macros($tpl,array( + '$title' => t('Common Friends'), + '$contacts' => $entries, + )); + // $o .= paginate($a); return $o; } diff --git a/mod/contacts.php b/mod/contacts.php index 89154eded9..017b1d6435 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -27,37 +27,41 @@ function contacts_init(&$a) { require_once('include/group.php'); require_once('include/contact_widgets.php'); + if ($_GET['nets'] == "all") + $_GET['nets'] = ""; + if(! x($a->page,'aside')) $a->page['aside'] = ''; if($contact_id) { $a->data['contact'] = $r[0]; $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $a->data['contact']['name'], + '$name' => htmlentities($a->data['contact']['name']), '$photo' => $a->data['contact']['photo'], - '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] + '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] )); + $finpeople_widget = ''; $follow_widget = ''; + $networks_widget = ''; } else { $vcard_widget = ''; + $networks_widget .= networks_widget('contacts',$_GET['nets']); if (isset($_GET['add'])) $follow_widget = follow_widget($_GET['add']); else $follow_widget = follow_widget(); + + $findpeople_widget .= findpeople_widget(); } - if ($_GET['nets'] == "all") - $_GET['nets'] = ""; - $groups_widget .= group_side('contacts','group',false,0,$contact_id); - $findpeople_widget .= findpeople_widget(); - $networks_widget .= networks_widget('contacts',$_GET['nets']); + $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array( '$vcard_widget' => $vcard_widget, + '$findpeople_widget' => $findpeople_widget, '$follow_widget' => $follow_widget, '$groups_widget' => $groups_widget, - '$findpeople_widget' => $findpeople_widget, '$networks_widget' => $networks_widget )); @@ -238,12 +242,12 @@ function _contact_update_profile($contact_id) { $data = probe_url($r[0]["url"]); - // "Feed" is mostly a sign of communication problems - if (($data["network"] == NETWORK_FEED) AND ($data["network"] != $r[0]["network"])) + // "Feed" or "Unknown" is mostly a sign of communication problems + if ((in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) AND ($data["network"] != $r[0]["network"])) return; $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm", - "poco", "network", "alias", "pubkey"); + "poco", "network", "alias"); $update = array(); if ($data["network"] == NETWORK_OSTATUS) { @@ -432,7 +436,7 @@ function contacts_content(&$a) { } $a->page['aside'] = ''; - + return replace_macros(get_markup_template('contact_drop_confirm.tpl'), array( '$contact' => _contact_detail_for_template($orig_record[0]), '$method' => 'get', @@ -509,7 +513,7 @@ function contacts_content(&$a) { if(!in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) $relation_text = ""; - $relation_text = sprintf($relation_text,$contact['name']); + $relation_text = sprintf($relation_text,htmlentities($contact['name'])); if(($contact['network'] === NETWORK_DFRN) && ($contact['rel'])) { $url = "redir/{$contact['id']}"; @@ -550,6 +554,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block', 'sel' => '', 'title' => t('Toggle Blocked status'), + 'id' => 'toggle-block-tab', 'accesskey' => 'b', ), array( @@ -557,6 +562,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore', 'sel' => '', 'title' => t('Toggle Ignored status'), + 'id' => 'toggle-ignore-tab', 'accesskey' => 'i', ), @@ -565,6 +571,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive', 'sel' => '', 'title' => t('Toggle Archive status'), + 'id' => 'toggle-archive-tab', 'accesskey' => 'v', ), array( @@ -572,6 +579,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/crepair/' . $contact_id, 'sel' => '', 'title' => t('Advanced Contact Settings'), + 'id' => 'repair-tab', 'accesskey' => 'r', ) ); @@ -590,6 +598,10 @@ function contacts_content(&$a) { if ($contact['network'] == NETWORK_DFRN) $profile_select = contact_profile_assign($contact['profile-id'],(($contact['network'] !== NETWORK_DFRN) ? true : false)); + if (in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS)) AND + ($contact['rel'] == CONTACT_IS_FOLLOWER)) + $follow = $a->get_baseurl(true)."/follow?url=".urlencode($contact["url"]); + $o .= replace_macros($tpl, array( '$header' => t('Contact Editor'), '$tab_str' => $tab_str, @@ -617,6 +629,8 @@ function contacts_content(&$a) { '$updpub' => t('Update public posts'), '$last_update' => $last_update, '$udnow' => t('Update now'), + '$follow' => $follow, + '$follow_text' => t("Connect/Follow"), '$profile_select' => $profile_select, '$contact_id' => $contact['id'], '$block_text' => (($contact['blocked']) ? t('Unblock') : t('Block') ), @@ -632,7 +646,7 @@ function contacts_content(&$a) { '$ffi_keyword_blacklist' => $contact['ffi_keyword_blacklist'], '$ffi_keyword_blacklist' => array('ffi_keyword_blacklist', t('Blacklisted keywords'), $contact['ffi_keyword_blacklist'], t('Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected')), '$photo' => $contact['photo'], - '$name' => $contact['name'], + '$name' => htmlentities($contact['name']), '$dir_icon' => $dir_icon, '$alt_text' => $alt_text, '$sparkle' => $sparkle, @@ -687,6 +701,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/suggest', 'sel' => '', 'title' => t('Suggest potential friends'), + 'id' => 'suggestions-tab', 'accesskey' => 'g', ), array( @@ -694,6 +709,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/all', 'sel' => ($all) ? 'active' : '', 'title' => t('Show all contacts'), + 'id' => 'showall-tab', 'accesskey' => 'l', ), array( @@ -701,6 +717,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts', 'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '', 'title' => t('Only show unblocked contacts'), + 'id' => 'showunblocked-tab', 'accesskey' => 'o', ), @@ -709,6 +726,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/blocked', 'sel' => ($blocked) ? 'active' : '', 'title' => t('Only show blocked contacts'), + 'id' => 'showblocked-tab', 'accesskey' => 'b', ), @@ -717,6 +735,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/ignored', 'sel' => ($ignored) ? 'active' : '', 'title' => t('Only show ignored contacts'), + 'id' => 'showignored-tab', 'accesskey' => 'i', ), @@ -725,6 +744,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/archived', 'sel' => ($archived) ? 'active' : '', 'title' => t('Only show archived contacts'), + 'id' => 'showarchived-tab', 'accesskey' => 'y', ), @@ -733,6 +753,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/hidden', 'sel' => ($hidden) ? 'active' : '', 'title' => t('Only show hidden contacts'), + 'id' => 'showhidden-tab', 'accesskey' => 'h', ), @@ -793,6 +814,7 @@ function contacts_content(&$a) { '$cmd' => $a->cmd, '$contacts' => $contacts, '$contact_drop_confirm' => t('Do you really want to delete this contact?'), + 'multiselect' => 1, '$batch_actions' => array( 'contacts_batch_update' => t('Update'), 'contacts_batch_block' => t('Block')."/".t("Unblock"), @@ -832,8 +854,8 @@ function _contact_detail_for_template($rr){ $url = $rr['url']; $sparkle = ''; } - - + + return array( 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']), 'edit_hover' => t('Edit contact'), @@ -841,11 +863,11 @@ function _contact_detail_for_template($rr){ 'id' => $rr['id'], 'alt_text' => $alt_text, 'dir_icon' => $dir_icon, - 'thumb' => proxy_url($rr['thumb']), - 'name' => $rr['name'], - 'username' => $rr['name'], + 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), + 'name' => htmlentities($rr['name']), + 'username' => htmlentities($rr['name']), 'sparkle' => $sparkle, - 'itemurl' => $rr['url'], + 'itemurl' => (($rr['addr'] != "") ? $rr['addr'] : $rr['url']), 'url' => $url, 'network' => network_to_name($rr['network'], $rr['url']), ); diff --git a/mod/content.php b/mod/content.php index cec23a9142..c5a5556116 100644 --- a/mod/content.php +++ b/mod/content.php @@ -11,8 +11,8 @@ // There is no "pagination query", but we will manage the "current page" on the client // and provide a link to fetch the next page - until there are no pages left to fetch. -// With the exception of complex tag and text searches, this prototype is incredibly -// fast - e.g. one or two milliseconds to fetch parent items for the current content, +// With the exception of complex tag and text searches, this prototype is incredibly +// fast - e.g. one or two milliseconds to fetch parent items for the current content, // and 10-20 milliseconds to fetch all the child items. @@ -476,7 +476,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'name' => $name_e, 'sparkle' => $sparkle, 'lock' => $lock, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'title' => $title_e, 'body' => $body_e, 'text' => $text_e, @@ -485,7 +485,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'indent' => '', 'owner_name' => $owner_name_e, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'plink' => get_plink($item), 'edpost' => false, 'isstarred' => $isstarred, @@ -859,7 +859,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'profile_url' => $profile_link, 'item_photo_menu' => item_photo_menu($item), 'name' => $name_e, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'osparkle' => $osparkle, 'sparkle' => $sparkle, 'title' => $title_e, @@ -869,7 +869,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'indent' => $indent, 'shiny' => $shiny, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'owner_name' => $owner_name_e, 'plink' => get_plink($item), 'edpost' => $edpost, diff --git a/mod/credits.php b/mod/credits.php new file mode 100644 index 0000000000..f8cfb03f37 --- /dev/null +++ b/mod/credits.php @@ -0,0 +1,20 @@ + t('Credits'), + '$thanks' => t('Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!'), + '$names' => $arr, + )); +} diff --git a/mod/crepair.php b/mod/crepair.php index 457a06685d..4f00190990 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -24,7 +24,7 @@ function crepair_init(&$a) { $a->data['contact'] = $r[0]; $tpl = get_markup_template("vcard-widget.tpl"); $vcard_widget .= replace_macros($tpl, array( - '$name' => $a->data['contact']['name'], + '$name' => htmlentities($a->data['contact']['name']), '$photo' => $a->data['contact']['photo'] )); $a->page['aside'] .= $vcard_widget; @@ -137,16 +137,10 @@ function crepair_content(&$a) { $contact = $r[0]; - $msg1 = t('Repair Contact Settings'); + $warning = t('WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'); + $info = t('Please use your browser \'Back\' button now if you are uncertain what to do on this page.'); - $msg2 = t('WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'); - $msg3 = t('Please use your browser \'Back\' button now if you are uncertain what to do on this page.'); - - $o .= '

    ' . $msg1 . '

    '; - - $o .= '
    ' . $msg2 . EOL . EOL. $msg3 . '
    '; - - $o .= EOL . '' . t('Return to contact editor') . '' . EOL; + $returnaddr = "contacts/$cid"; $allow_remote_self = get_config('system','allow_users_remote_self'); @@ -165,6 +159,11 @@ function crepair_content(&$a) { $tpl = get_markup_template('crepair.tpl'); $o .= replace_macros($tpl, array( + '$title' => t('Repair Contact Settings'), + '$warning' => $warning, + '$info' => $info, + '$returnaddr' => $returnaddr, + '$return' => t('Return to contact editor'), '$update_profile' => update_profile, '$udprofilenow' => t('Refetch contact data'), '$label_name' => t('Name'), @@ -178,9 +177,14 @@ function crepair_content(&$a) { '$label_photo' => t('New photo from this URL'), '$label_remote_self' => t('Remote Self'), '$allow_remote_self' => $allow_remote_self, - '$remote_self' => array('remote_self', t('Mirror postings from this contact'), $contact['remote_self'], t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'), $remote_self_options), - '$contact_name' => $contact['name'], - '$contact_nick' => $contact['nick'], + '$remote_self' => array('remote_self', + t('Mirror postings from this contact'), + $contact['remote_self'], + t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'), + $remote_self_options + ), + '$contact_name' => htmlentities($contact['name']), + '$contact_nick' => htmlentities($contact['nick']), '$contact_id' => $contact['id'], '$contact_url' => $contact['url'], '$request' => $contact['request'], @@ -189,7 +193,7 @@ function crepair_content(&$a) { '$poll' => $contact['poll'], '$contact_attag' => $contact['attag'], '$lbl_submit' => t('Submit') - )); + )); return $o; diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 1cc258853b..d5dbab951e 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -382,7 +382,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { if($duplex) $new_relation = CONTACT_IS_FRIEND; else - $new_relation = CONTACT_IS_SHARING; + $new_relation = CONTACT_IS_FOLLOWER; if($new_relation != CONTACT_IS_FOLLOWER) $writable = 1; diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index b5f60a0397..d6a07186ac 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -476,8 +476,8 @@ function dfrn_poll_content(&$a) { // URL reply if($dfrn_version < 2.2) { - $s = fetch_url($r[0]['poll'] - . '?dfrn_id=' . $encrypted_id + $s = fetch_url($r[0]['poll'] + . '?dfrn_id=' . $encrypted_id . '&type=profile-check' . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&challenge=' . $challenge @@ -493,7 +493,7 @@ function dfrn_poll_content(&$a) { 'sec' => $sec )); } - + $profile = ((count($r) && $r[0]['nickname']) ? $r[0]['nickname'] : $nickname); switch($destination_url) { @@ -506,7 +506,7 @@ function dfrn_poll_content(&$a) { case 'status': case '': $dest = $a->get_baseurl() . '/profile/' . $profile; - break; + break; default: $dest = $destination_url . '?f=&redir=1'; break; @@ -564,5 +564,3 @@ function dfrn_poll_content(&$a) { } } } - - diff --git a/mod/directory.php b/mod/directory.php index fa3a89e45a..ad1d403f4d 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -8,6 +8,8 @@ function directory_init(&$a) { $a->page['aside'] .= findpeople_widget(); + $a->page['aside'] .= follow_widget(); + } else { unset($_SESSION['theme']); @@ -31,7 +33,7 @@ function directory_content(&$a) { require_once("mod/proxy.php"); if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || - (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) { + (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) { notice( t('Public access denied.') . EOL); return; } @@ -44,27 +46,12 @@ function directory_content(&$a) { else $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); - $tpl = get_markup_template('directory_header.tpl'); - - $globaldir = ''; - $gdirpath = get_config('system','directory'); - if(strlen($gdirpath)) { - $globaldir = ''; + $gdirpath = ''; + $dirurl = get_config('system','directory'); + if(strlen($dirurl)) { + $gdirpath = zrl($dirurl,true); } - $admin = ''; - - $o .= replace_macros($tpl, array( - '$search' => $search, - '$globaldir' => $globaldir, - '$desc' => t('Find on this site'), - '$admin' => $admin, - '$finding' => (strlen($search) ? '

    ' . t('Finding: ') . "'" . $search . "'" . '

    ' : ""), - '$sitedir' => t('Site Directory'), - '$submit' => t('Find') - )); - if($search) { $search = dbesc($search); @@ -159,32 +146,33 @@ function directory_content(&$a) { $about = ((x($profile,'about') == 1) ? t('About:') : False); - $tpl = get_markup_template('directory_item.tpl'); - if($a->theme['template_engine'] === 'internal') { $location_e = template_escape($location); } else { $location_e = $location; } + + $photo_menu = array(array(t("View Profile"), zrl($profile_link))); - $entry = replace_macros($tpl,array( - '$id' => $rr['id'], - '$profile_link' => $profile_link, - '$photo' => proxy_url($a->get_cached_avatar_image($rr[$photo])), - '$alt_text' => $rr['name'], - '$name' => $rr['name'], - '$details' => $pdesc . $details, - '$page_type' => $page_type, - '$profile' => $profile, - '$location' => $location_e, - '$gender' => $gender, - '$pdesc' => $pdesc, - '$marital' => $marital, - '$homepage' => $homepage, - '$about' => $about, + $entry = array( + 'id' => $rr['id'], + 'url' => $profile_link, + 'thumb' => proxy_url($a->get_cached_avatar_image($rr[$photo]), false, PROXY_SIZE_THUMB), + 'img_hover' => $rr['name'], + 'name' => $rr['name'], + 'details' => $pdesc . $details, + 'page_type' => $page_type, + 'profile' => $profile, + 'location' => $location_e, + 'gender' => $gender, + 'pdesc' => $pdesc, + 'marital' => $marital, + 'homepage' => $homepage, + 'about' => $about, + 'photo_menu' => $photo_menu, - )); + ); $arr = array('contact' => $rr, 'entry' => $entry); @@ -193,12 +181,27 @@ function directory_content(&$a) { unset($profile); unset($location); - $o .= $entry; + if(! $arr['entry']) + continue; + + $entries[] = $arr['entry']; } - $o .= "
    \r\n"; - $o .= paginate($a); + $tpl = get_markup_template('directory_header.tpl'); + + $o .= replace_macros($tpl, array( + '$search' => $search, + '$globaldir' => t('Global Directory'), + '$gdirpath' => $gdirpath, + '$desc' => t('Find on this site'), + '$contacts' => $entries, + '$finding' => t('Finding:'), + '$findterm' => (strlen($search) ? $search : ""), + '$title' => t('Site Directory'), + '$submit' => t('Find'), + '$paginate' => paginate($a), + )); } else diff --git a/mod/dirfind.php b/mod/dirfind.php index b0d578a3c6..6a4c7f1ced 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -1,15 +1,23 @@ page,'aside')) $a->page['aside'] = ''; - $a->page['aside'] .= follow_widget(); - $a->page['aside'] .= findpeople_widget(); + + $a->page['aside'] .= follow_widget(); } @@ -17,13 +25,20 @@ function dirfind_init(&$a) { function dirfind_content(&$a, $prefix = "") { $community = false; + $discover_user = false; $local = get_config('system','poco_local_search'); $search = $prefix.notags(trim($_REQUEST['search'])); - if(strpos($search,'@') === 0) + if(strpos($search,'@') === 0) { $search = substr($search,1); + if ((valid_email($search) AND validate_email($search)) OR + (substr(normalise_link($search), 0, 7) == "http://")) { + $user_data = probe_url($search); + $discover_user = (in_array($user_data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))); + } + } if(strpos($search,'!') === 0) { $search = substr($search,1); @@ -32,13 +47,34 @@ function dirfind_content(&$a, $prefix = "") { $o = ''; - $o .= replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => sprintf( t('People Search - %s'), $search) - )); - if($search) { - if ($local) { + if ($discover_user) { + $j = new stdClass(); + $j->total = 1; + $j->items_page = 1; + $j->page = $a->pager['page']; + + $objresult = new stdClass(); + $objresult->cid = 0; + $objresult->name = $user_data["name"]; + $objresult->addr = $user_data["addr"]; + $objresult->url = $user_data["url"]; + $objresult->photo = $user_data["photo"]; + $objresult->tags = ""; + $objresult->network = $user_data["network"]; + + $contact = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1", + dbesc(normalise_link($user_data["url"])), intval(local_user())); + if ($contact) + $objresult->cid = $contact[0]["id"]; + + + $j->results[] = $objresult; + + poco_check($user_data["url"], $user_data["name"], $user_data["network"], $user_data["photo"], + "", "", "", "", "", datetime_convert(), 0); + } elseif ($local) { if ($community) $extra_sql = " AND `community`"; @@ -48,14 +84,24 @@ function dirfind_content(&$a, $prefix = "") { $perpage = 80; $startrec = (($a->pager['page']) * $perpage) - $perpage; + if (get_config('system','diaspora_enabled')) + $diaspora = NETWORK_DIASPORA; + else + $diaspora = NETWORK_DFRN; + + if (!get_config('system','ostatus_disabled')) + $ostatus = NETWORK_OSTATUS; + else + $ostatus = NETWORK_DFRN; + $count = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND (`url` REGEXP '%s' OR `name` REGEXP '%s' OR `location` REGEXP '%s' OR `about` REGEXP '%s' OR `keywords` REGEXP '%s')".$extra_sql, - dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search))); - $results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`keywords` + $results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`network`, `gcontact`.`keywords`, `gcontact`.`addr` FROM `gcontact` LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d AND NOT `contact`.`blocked` @@ -67,7 +113,7 @@ function dirfind_content(&$a, $prefix = "") { GROUP BY `gcontact`.`nurl` ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d", intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND), - dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), intval($startrec), intval($perpage)); @@ -87,9 +133,11 @@ function dirfind_content(&$a, $prefix = "") { $objresult = new stdClass(); $objresult->cid = $result["cid"]; $objresult->name = $result["name"]; + $objresult->addr = $result["addr"]; $objresult->url = $result["url"]; $objresult->photo = $result["photo"]; $objresult->tags = $result["keywords"]; + $objresult->network = $result["network"]; $j->results[] = $objresult; } @@ -113,29 +161,64 @@ function dirfind_content(&$a, $prefix = "") { if(count($j->results)) { - $tpl = get_markup_template('match.tpl'); + $id = 0; + foreach($j->results as $jj) { + $alt_text = ""; + + $contact_details = get_contact_details_by_url($jj->url, local_user()); + + $itemurl = (($contact_details["addr"] != "") ? $contact_details["addr"] : $jj->url); + // If We already know this contact then don't show the "connect" button if ($jj->cid > 0) { $connlnk = ""; $conntxt = ""; + $contact = q("SELECT * FROM `contact` WHERE `id` = %d", + intval($jj->cid)); + if ($contact) { + $photo_menu = contact_photo_menu($contact[0]); + $details = _contact_detail_for_template($contact[0]); + $alt_text = $details['alt_text']; + } else + $photo_menu = array(); } else { $connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url); $conntxt = t('Connect'); + $photo_menu = array(array(t("View Profile"), zrl($jj->url))); + $photo_menu[] = array(t("Connect/Follow"), $connlnk); } $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); - $o .= replace_macros($tpl,array( - '$url' => zrl($jj->url), - '$name' => $jj->name, - '$photo' => proxy_url($jj->photo), - '$tags' => $jj->tags, - '$conntxt' => $conntxt, - '$connlnk' => $connlnk, - )); + $entry = array( + 'alt_text' => $alt_text, + 'url' => zrl($jj->url), + 'itemurl' => $itemurl, + 'name' => htmlentities($jj->name), + 'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), + 'img_hover' => $jj->tags, + 'conntxt' => $conntxt, + 'connlnk' => $connlnk, + 'photo_menu' => $photo_menu, + 'details' => $contact_details['location'], + 'tags' => $contact_details['keywords'], + 'about' => $contact_details['about'], + 'network' => network_to_name($jj->network, $jj->url), + 'id' => ++$id, + ); + $entries[] = $entry; } + + $tpl = get_markup_template('viewcontact_template.tpl'); + + $o .= replace_macros($tpl,array( + 'title' => sprintf( t('People Search - %s'), $search), + '$contacts' => $entries, + '$paginate' => paginate($a), + )); + } else { info( t('No matches') . EOL); @@ -143,7 +226,5 @@ function dirfind_content(&$a, $prefix = "") { } - $o .= '
    '; - $o .= paginate($a); return $o; } diff --git a/mod/display.php b/mod/display.php index be5dd7cae3..6b345e6302 100644 --- a/mod/display.php +++ b/mod/display.php @@ -97,43 +97,10 @@ function display_fetchauthor($a, $item) { $profiledata["nickname"] = $item["author-name"]; $profiledata["name"] = $item["author-name"]; $profiledata["picdate"] = ""; - $profiledata["photo"] = proxy_url($item["author-avatar"]); + $profiledata["photo"] = proxy_url($item["author-avatar"], false, PROXY_SIZE_SMALL); $profiledata["url"] = $item["author-link"]; $profiledata["network"] = $item["network"]; - // Fetching further contact data from the contact table - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `network` = '%s'", - dbesc(normalise_link($profiledata["url"])), intval($item["uid"]), dbesc($item["network"])); - - if (!count($r)) - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", - dbesc(normalise_link($profiledata["url"])), intval($item["uid"])); - - if (!count($r)) - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0", - dbesc(normalise_link($profiledata["url"]))); - - if (count($r)) { - $profiledata["photo"] = proxy_url($r[0]["photo"]); - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); - if ($r[0]["nick"] != "") - $profiledata["nickname"] = $r[0]["nick"]; - } - - // Fetching profile data from unique contacts - $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); - if (count($r)) { - if ($profiledata["photo"] == "") - $profiledata["photo"] = proxy_url($r[0]["avatar"]); - if ($profiledata["address"] == "") - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); - if ($profiledata["about"] == "") - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); - if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) - $profiledata["nickname"] = $r[0]["nick"]; - } - // Check for a repeated message $skip = false; $body = trim($item["body"]); @@ -187,28 +154,49 @@ function display_fetchauthor($a, $item) { $profiledata["address"] = ""; $profiledata["about"] = ""; + } - // Fetching profile data from unique contacts - if ($profiledata["url"] != "") { - $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); - if (count($r)) { - $profiledata["photo"] = proxy_url($r[0]["avatar"]); - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); - if ($r[0]["nick"] != "") - $profiledata["nickname"] = $r[0]["nick"]; - } + // Fetching further contact data from the contact table + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `network` = '%s'", + dbesc(normalise_link($profiledata["url"])), intval($item["uid"]), dbesc($item["network"])); + + if (!count($r)) + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", + dbesc(normalise_link($profiledata["url"])), intval($item["uid"])); + + if (!count($r)) + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0", + dbesc(normalise_link($profiledata["url"]))); + + if (count($r)) { + if ((($r[0]["uid"] != local_user()) OR !local_user()) AND ($profiledata["network"] == NETWORK_DIASPORA)) { + $r[0]["location"] = ""; + $r[0]["about"] = ""; } + + $profiledata["photo"] = proxy_url($r[0]["photo"], false, PROXY_SIZE_SMALL); + $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["about"] = bbcode($r[0]["about"]); + if ($r[0]["nick"] != "") + $profiledata["nickname"] = $r[0]["nick"]; + } + + // Fetching profile data from unique contacts + $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); + if (count($r)) { + if ($profiledata["photo"] == "") + $profiledata["photo"] = proxy_url($r[0]["avatar"], false, PROXY_SIZE_SMALL); + if (($profiledata["address"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) + $profiledata["address"] = bbcode($r[0]["location"]); + if (($profiledata["about"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) + $profiledata["about"] = bbcode($r[0]["about"]); + if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) + $profiledata["nickname"] = $r[0]["nick"]; } if (local_user()) { if (in_array($profiledata["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) $profiledata["remoteconnect"] = $a->get_baseurl()."/follow?url=".urlencode($profiledata["url"]); - //if ($profiledata["network"] == NETWORK_DFRN) { - // $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"])."&addr=".bin2hex($a->get_baseurl()."/profile/".$a->user["nickname"]); - // $profiledata["remoteconnect"] = $connect; - //} elseif ($profiledata["network"] == NETWORK_DIASPORA) - // $profiledata["remoteconnect"] = $a->get_baseurl()."/contacts?add=".GetProfileUsername($profiledata["url"], "", true); } elseif ($profiledata["network"] == NETWORK_DFRN) { $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]); $profiledata["remoteconnect"] = $connect; diff --git a/mod/editpost.php b/mod/editpost.php index b039341023..0cf6d0d4cf 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -93,15 +93,14 @@ function editpost_content(&$a) { $jotnets .= '
    ' . t("Post to Email") . '
    '; }*/ - + call_hooks('jot_tool', $jotplugins); //call_hooks('jot_networks', $jotnets); - //$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins)); - + //$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins)); $o .= replace_macros($tpl,array( '$return_path' => $_SESSION['return_url'], diff --git a/mod/events.php b/mod/events.php index 242f27f135..653ae489b8 100644 --- a/mod/events.php +++ b/mod/events.php @@ -154,6 +154,7 @@ function events_post(&$a) { if(! $cid) proc_run('php',"include/notifier.php","event","$item_id"); + goaway($_SESSION['return_url']); } @@ -165,6 +166,9 @@ function events_content(&$a) { return; } + if($a->argc == 1) + $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; + if(($a->argc > 2) && ($a->argv[1] === 'ignore') && intval($a->argv[2])) { $r = q("update event set ignore = 1 where id = %d and uid = %d", intval($a->argv[2]), @@ -179,14 +183,69 @@ function events_content(&$a) { ); } + if ($a->theme_events_in_profile) + nav_set_selected('home'); + else + nav_set_selected('events'); $editselect = 'none'; if( feature_enabled(local_user(), 'richtext') ) $editselect = 'textareas'; + // First day of the week (0 = Sunday) + $firstDay = get_pconfig(local_user(),'system','first_day_of_week'); + if ($firstDay === false) $firstDay=0; + + $i18n = array( + "firstDay" => $firstDay, + "Sun" => t("Sun"), + "Mon" => t("Mon"), + "Tue" => t("Tue"), + "Wed" => t("Wed"), + "Thu" => t("Thu"), + "Fri" => t("Fri"), + "Sat" => t("Sat"), + "Sunday" => t("Sunday"), + "Monday" => t("Monday"), + "Tuesday" => t("Tuesday"), + "Wednesday" => t("Wednesday"), + "Thursday" => t("Thursday"), + "Friday" => t("Friday"), + "Saturday" => t("Saturday"), + "Jan" => t("Jan"), + "Feb" => t("Feb"), + "Mar" => t("Mar"), + "Apr" => t("Apr"), + "May" => t("May"), + "Jun" => t("Jun"), + "Jul" => t("Jul"), + "Aug" => t("Aug"), + "Sep" => t("Sept"), + "Oct" => t("Oct"), + "Nov" => t("Nov"), + "Dec" => t("Dec"), + "January" => t("January"), + "February" => t("February"), + "March" => t("March"), + "April" => t("April"), + "May" => t("May"), + "June" => t("June"), + "July" => t("July"), + "August" => t("August"), + "September" => t("September"), + "October" => t("October"), + "November" => t("November"), + "December" => t("December"), + "today" => t("today"), + "month" => t("month"), + "week" => t("week"), + "day" => t("day"), + ); + $htpl = get_markup_template('event_head.tpl'); $a->page['htmlhead'] .= replace_macros($htpl,array( '$baseurl' => $a->get_baseurl(), + '$i18n' => $i18n, '$editselect' => $editselect )); @@ -198,7 +257,8 @@ function events_content(&$a) { $o =""; // tabs - $tabs = profile_tabs($a, True); + if ($a->theme_events_in_profile) + $tabs = profile_tabs($a, True); @@ -234,7 +294,7 @@ function events_content(&$a) { $m = intval($thismonth); // Put some limits on dates. The PHP date functions don't seem to do so well before 1900. - // An upper limit was chosen to keep search engines from exploring links millions of years in the future. + // An upper limit was chosen to keep search engines from exploring links millions of years in the future. if($y < 1901) $y = 1900; @@ -449,7 +509,7 @@ function events_content(&$a) { else $sh_checked = (($orig_event['allow_cid'] === '<' . local_user() . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ' ); - if($cid) + if($cid OR ($mode !== 'new')) $sh_checked .= ' disabled="disabled" '; @@ -480,6 +540,9 @@ function events_content(&$a) { require_once('include/acl_selectors.php'); + if ($mode === 'new') + $acl = (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user))); + $tpl = get_markup_template('event_form.tpl'); $o .= replace_macros($tpl,array( @@ -507,7 +570,7 @@ function events_content(&$a) { '$sh_text' => t('Share this event'), '$sh_checked' => $sh_checked, '$preview' => t('Preview'), - '$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user))), + '$acl' => $acl, '$submit' => t('Submit') )); diff --git a/mod/fbrowser.php b/mod/fbrowser.php index e7f4b76d48..0a2a7dead5 100644 --- a/mod/fbrowser.php +++ b/mod/fbrowser.php @@ -35,12 +35,14 @@ function fbrowser_content($a){ $sql_extra2 = " ORDER BY created DESC LIMIT 0, 10"; if ($a->argc==2){ - $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d ", - intval(local_user()) + $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' ", + intval(local_user()), + dbesc('Contact Photos'), + dbesc( t('Contact Photos')) ); - // anon functions only from 5.3.0... meglio tardi che mai.. - $folder1 = function($el) use ($mode) {return array(bin2hex($el['album']),$el['album']);}; - $albums = array_map( $folder1 , $albums); + + function _map_folder1($el){return array(bin2hex($el['album']),$el['album']);}; + $albums = array_map( "_map_folder1" , $albums); } @@ -53,12 +55,14 @@ function fbrowser_content($a){ } $r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc` - FROM `photo` WHERE `uid` = %d $sql_extra + FROM `photo` WHERE `uid` = %d $sql_extra AND `album` != '%s' AND `album` != '%s' GROUP BY `resource-id` $sql_extra2", - intval(local_user()) + intval(local_user()), + dbesc('Contact Photos'), + dbesc( t('Contact Photos')) ); - function files1($rr){ + function _map_files1($rr){ global $a; $types = Photo::supportedTypes(); $ext = $types[$rr['type']]; @@ -71,12 +75,12 @@ function fbrowser_content($a){ } return array( - $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '.' .$ext, + $a->get_baseurl() . '/photos/' . $a->user['nickname'] . '/image/' . $rr['resource-id'], $filename_e, $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['loq'] . '.'. $ext ); } - $files = array_map("files1", $r); + $files = array_map("_map_files1", $r); $tpl = get_markup_template($template_file); @@ -94,11 +98,11 @@ function fbrowser_content($a){ break; case "file": if ($a->argc==2){ - $files = q("SELECT id, filename, filetype FROM `attach` WHERE `uid` = %d ", + $files = q("SELECT `id`, `filename`, `filetype` FROM `attach` WHERE `uid` = %d ", intval(local_user()) ); - function files2($rr){ global $a; + function _map_files2($rr){ global $a; list($m1,$m2) = explode("/",$rr['filetype']); $filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip"); @@ -111,8 +115,7 @@ function fbrowser_content($a){ return array( $a->get_baseurl() . '/attach/' . $rr['id'], $filename_e, $a->get_baseurl() . '/images/icons/16/' . $filetype . '.png'); } - $files = array_map("files2", $files); - //echo "
    "; var_dump($files); killme();
    +				$files = array_map("_map_files2", $files);
     
     
     				$tpl = get_markup_template($template_file);
    diff --git a/mod/follow.php b/mod/follow.php
    old mode 100755
    new mode 100644
    index bdcde77435..cc08831285
    --- a/mod/follow.php
    +++ b/mod/follow.php
    @@ -15,6 +15,8 @@ function follow_content(&$a) {
     	$uid = local_user();
     	$url = notags(trim($_REQUEST['url']));
     
    +	$submit = t('Submit Request');
    +
     	// There is a current issue. It seems as if you can't start following a Friendica that is following you
     	// With Diaspora this works - but Friendica is special, it seems ...
     	$r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND ((`rel` != %d) OR (`network` = '%s')) AND
    @@ -25,12 +27,34 @@ function follow_content(&$a) {
     
     	if ($r) {
     		notice(t('You already added this contact.').EOL);
    -		goaway($_SESSION['return_url']);
    +		$submit = "";
    +		//goaway($_SESSION['return_url']);
     		// NOTREACHED
     	}
     
     	$ret = probe_url($url);
     
    +	if (($ret["network"] == NETWORK_DIASPORA) AND !get_config('system','diaspora_enabled')) {
    +		notice( t("Diaspora support isn't enabled. Contact can't be added.") . EOL);
    +		$submit = "";
    +		//goaway($_SESSION['return_url']);
    +		// NOTREACHED
    +	}
    +
    +	if (($ret["network"] == NETWORK_OSTATUS) AND get_config('system','ostatus_disabled')) {
    +		notice( t("OStatus support is disabled. Contact can't be added.") . EOL);
    +		$submit = "";
    +		//goaway($_SESSION['return_url']);
    +		// NOTREACHED
    +	}
    +
    +	if ($ret["network"] == NETWORK_PHANTOM) {
    +		notice( t("The network type couldn't be detected. Contact can't be added.") . EOL);
    +		$submit = "";
    +		//goaway($_SESSION['return_url']);
    +		// NOTREACHED
    +	}
    +
     	if ($ret["network"] == NETWORK_MAIL)
     		$ret["url"] = $ret["addr"];
     
    @@ -55,35 +79,54 @@ function follow_content(&$a) {
     	// Makes the connection request for friendica contacts easier
     	$_SESSION["fastlane"] = $ret["url"];
     
    +	$r = q("SELECT `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'",
    +		normalise_link($ret["url"]));
    +
    +	if (!$r)
    +		$r = array(array("location" => "", "about" => "", "keywords" => ""));
    +
    +	if($ret['network'] === NETWORK_DIASPORA) {
    +		$r[0]["location"] = "";
    +		$r[0]["about"] = "";
    +	}
    +
     	$header = $ret["name"];
     
     	if ($ret["addr"] != "")
     		$header .= " <".$ret["addr"].">";
     
    -	$header .= " (".network_to_name($ret['network']).")";
    +	$header .= " (".network_to_name($ret['network'], $ret['url']).")";
     
     	$o  = replace_macros($tpl,array(
     			'$header' => htmlentities($header),
    -			'$photo' => $ret["photo"],
    -                        '$desc' => "",
    -                        '$pls_answer' => t('Please answer the following:'),
    -                        '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),
    -                        '$add_note' => t('Add a personal note:'),
    -                        '$page_desc' => "",
    -                        '$friendica' => "",
    -                        '$statusnet' => "",
    -                        '$diaspora' => "",
    -                        '$diasnote' => "",
    -                        '$your_address' => t('Your Identity Address:'),
    -                        '$invite_desc' => "",
    -                        '$emailnet' => "",
    -                        '$submit' => t('Submit Request'),
    -                        '$cancel' => t('Cancel'),
    -                        '$nickname' => "",
    -                        '$name' => $ret["name"],
    -                        '$url' => $ret["url"],
    -                        '$myaddr' => $myaddr,
    -			'$request' => $request
    +			'$photo' => proxy_url($ret["photo"], false, PROXY_SIZE_SMALL),
    +			'$desc' => "",
    +			'$pls_answer' => t('Please answer the following:'),
    +			'$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),
    +			'$add_note' => t('Add a personal note:'),
    +			'$page_desc' => "",
    +			'$friendica' => "",
    +			'$statusnet' => "",
    +			'$diaspora' => "",
    +			'$diasnote' => "",
    +			'$your_address' => t('Your Identity Address:'),
    +			'$invite_desc' => "",
    +			'$emailnet' => "",
    +			'$submit' => $submit,
    +			'$cancel' => t('Cancel'),
    +			'$nickname' => "",
    +			'$name' => $ret["name"],
    +			'$url' => $ret["url"],
    +			'$zrl' => zrl($ret["url"]),
    +			'$url_label' => t("Profile URL"),
    +			'$myaddr' => $myaddr,
    +			'$request' => $request,
    +			'$location' => bbcode($r[0]["location"]),
    +			'$location_label' => t("Location:"),
    +			'$about' => bbcode($r[0]["about"], false, false),
    +			'$about_label' => t("About:"),
    +			'$keywords' => $r[0]["keywords"],
    +			'$keywords_label' => t("Tags:")
     	));
     	return $o;
     }
    diff --git a/mod/group.php b/mod/group.php
    index 4a447713dc..263586e2e9 100644
    --- a/mod/group.php
    +++ b/mod/group.php
    @@ -62,12 +62,12 @@ function group_post(&$a) {
     
     		$a->page['aside'] = group_side();
     	}
    -	return;	
    +	return;
     }
     
     function group_content(&$a) {
     	$change = false;
    -	
    +
     	if(! local_user()) {
     		notice( t('Permission denied') . EOL);
     		return;
    @@ -172,7 +172,7 @@ function group_content(&$a) {
     			'$form_security_token' => get_form_security_token("group_drop"),
     		));
     
    -		
    +
     		$context = $context + array(
     			'$title' => t('Group Editor'),
     			'$gname' => array('groupname',t('Group Name: '),$group['name'], ''),
    @@ -192,7 +192,7 @@ function group_content(&$a) {
     		'label_contacts' => t('All Contacts'),
     		'contacts' => array(),
     	);
    -		
    +
     	$sec_token = addslashes(get_form_security_token('group_member_change'));
     	$textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false);
     	foreach($members as $member) {
    @@ -226,8 +226,7 @@ function group_content(&$a) {
     		echo replace_macros($tpl, $context);
     		killme();
     	}
    -	
    +
     	return replace_macros($tpl, $context);
     
     }
    -
    diff --git a/mod/install.php b/mod/install.php
    index 182495d258..8434b38e38 100755
    --- a/mod/install.php
    +++ b/mod/install.php
    @@ -1,4 +1,5 @@
     config['system']['theme'] = "../install";
    +	$a->theme['stylesheet'] = $a->get_baseurl()."/view/install/style.css";
    +	
    +	
    +	
     	global $install_wizard_pass;
     	if (x($_POST,'pass'))
     		$install_wizard_pass = intval($_POST['pass']);
    @@ -84,15 +93,15 @@ function install_post(&$a) {
     				'$phpath' => $phpath,
     				'$adminmail' => $adminmail
     			));
    -			
    +
     
     			$result = file_put_contents('.htconfig.php', $txt);
     			if(! $result) {
     				$a->data['txt'] = $txt;
     			}
    -			
    +
     			$errors = load_database($db);
    -			
    +
     
     			if($errors)
     				$a->data['db_failed'] = $errors;
    @@ -177,6 +186,8 @@ function install_content(&$a) {
     
     			check_funcs($checks);
     
    +			check_imagik($checks);
    +
     			check_htconfig($checks);
     
     			check_smarty3($checks);
    @@ -321,7 +332,7 @@ function check_php(&$phpath, &$checks) {
     	$help = "";
     	if(!$passed) {
     		$help .= t('Could not find a command line version of PHP in the web server PATH.'). EOL;
    -		$help .= t("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. See 'Activating scheduled tasks'") . EOL ;
    +		$help .= t("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. See 'Setup the poller'") . EOL ;
     		$help .= EOL . EOL ;
     		$tpl = get_markup_template('field_input.tpl');
     		$help .= replace_macros($tpl, array(
    @@ -428,10 +439,21 @@ function check_funcs(&$checks) {
     		$ck_funcs[5]['help']= t('Error: mcrypt PHP module required but not installed.');
     	}
     
    -	
    -	
     	$checks = array_merge($checks, $ck_funcs);
     
    +	// check for 'mcrypt_create_iv()', needed for RINO2
    +	if ($ck_funcs[5]['status']) {
    +		if (function_exists('mcrypt_create_iv')) {
    +			$__status = true;
    +			$__help = "If you are using php_cli, please make sure that mcrypt module is enabled in its config file";
    +		} else {
    +			$__status = false;
    +			$__help = t('Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer.');
    +		}
    +		check_add($checks, t('mcrypt_create_iv() function'), $__status, false, $__help);
    +	}
    +
    +
     	/*if((x($_SESSION,'sysmsg')) && is_array($_SESSION['sysmsg']) && count($_SESSION['sysmsg']))
     		notice( t('Please see the file "INSTALL.txt".') . EOL);*/
     }
    @@ -490,6 +512,24 @@ function check_htaccess(&$checks) {
     	}
     }
     
    +function check_imagik(&$checks) {
    +	$imagick = false;
    +	$gif = false;
    +
    +	if (class_exists('Imagick')) {
    +		$imagick = true;
    +		$supported = Photo::supportedTypes();
    +		if (array_key_exists('image/gif', $supported)) {
    +			$gif = true;
    +		}
    +	}
    +	check_add($checks, t('ImageMagick PHP extension is installed'), $imagick, false, "");
    +	if ($imagick) {
    +		check_add($checks, t('ImageMagick supports GIF'), $gif, false, "");
    +	}
    +}
    +
    +
     
     function manual_config(&$a) {
     	$data = htmlentities($a->data['txt'],ENT_COMPAT,'UTF-8');
    diff --git a/mod/item.php b/mod/item.php
    index d203ce64d4..91a94974e9 100644
    --- a/mod/item.php
    +++ b/mod/item.php
    @@ -18,7 +18,6 @@
     require_once('include/crypto.php');
     require_once('include/enotify.php');
     require_once('include/email.php');
    -require_once('library/langdet/Text/LanguageDetect.php');
     require_once('include/tags.php');
     require_once('include/files.php');
     require_once('include/threads.php');
    @@ -268,32 +267,8 @@ function item_post(&$a) {
     		$guid              = get_guid(32);
     
     
    -		$naked_body = preg_replace('/\[(.+?)\]/','',$body);
    -
    -		if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
    -			$l = new Text_LanguageDetect;
    -			//$lng = $l->detectConfidence($naked_body);
    -			//$postopts = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : '');
    -
    -			$lng = $l->detect($naked_body, 3);
    -
    -			if (sizeof($lng) > 0) {
    -				$postopts = "";
    -
    -				foreach ($lng as $language => $score) {
    -					if ($postopts == "")
    -						$postopts = "lang=";
    -					else
    -						$postopts .= ":";
    -
    -					$postopts .= $language.";".$score;
    -				}
    -			}
    -
    -			logger('mod_item: detect language' . print_r($lng,true) . $naked_body, LOGGER_DATA);
    -		}
    -		else
    -			$postopts = '';
    +		item_add_language_opt($_REQUEST);
    +		$postopts = $_REQUEST['postopts'] ? $_REQUEST['postopts'] : "";
     
     
     		$private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0);
    diff --git a/mod/like.php b/mod/like.php
    index bbb0728965..90782687d3 100755
    --- a/mod/like.php
    +++ b/mod/like.php
    @@ -26,6 +26,18 @@ function like_content(&$a) {
     		case 'undislike':
     			$activity = ACTIVITY_DISLIKE;
     			break;
    +		case 'attendyes':
    +		case 'unattendyes':
    +			$activity = ACTIVITY_ATTEND;
    +			break;
    +		case 'attendno':
    +		case 'unattendno':
    +			$activity = ACTIVITY_ATTENDNO;
    +			break;
    +		case 'attendmaybe':
    +		case 'unattendmaybe':
    +			$activity = ACTIVITY_ATTENDMAYBE;
    +			break;
     		default:
     			return;
     			break;
    @@ -108,11 +120,18 @@ function like_content(&$a) {
     	// See if we've been passed a return path to redirect to
     	$return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : '');
     
    +	$verbs = " '".dbesc($activity)."' ";
     
    -	$r = q("SELECT `id`, `guid` FROM `item` WHERE `verb` = '%s' AND `deleted` = 0
    +	// event participation are essentially radio toggles. If you make a subsequent choice,
    +	// we need to eradicate your first choice. 
    +	if($activity === ACTIVITY_ATTEND || $activity === ACTIVITY_ATTENDNO || $activity === ACTIVITY_ATTENDMAYBE) {
    +		$verbs = " '" . dbesc(ACTIVITY_ATTEND) . "','" . dbesc(ACTIVITY_ATTENDNO) . "','" . dbesc(ACTIVITY_ATTENDMAYBE) . "' ";
    +	}
    +
    +	$r = q("SELECT `id`, `guid` FROM `item` WHERE `verb` IN ( $verbs ) AND `deleted` = 0
     		AND `contact-id` = %d AND `uid` = %d
     		AND (`parent` = '%s' OR `parent-uri` = '%s' OR `thr-parent` = '%s') LIMIT 1",
    -		dbesc($activity), intval($contact['id']), intval($owner_uid),
    +		intval($contact['id']), intval($owner_uid),
     		dbesc($item_id), dbesc($item_id), dbesc($item['uri'])
     	);
     
    @@ -147,6 +166,8 @@ function like_content(&$a) {
     	$uri = item_new_uri($a->get_hostname(),$owner_uid);
     
     	$post_type = (($item['resource-id']) ? t('photo') : t('status'));
    +	if($item['obj_type'] === ACTIVITY_OBJ_EVENT)
    +		$post_type = t('event');
     	$objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
     	$link = xmlify('' . "\n") ;
     	$body = $item['body'];
    @@ -166,6 +187,12 @@ EOT;
     		$bodyverb = t('%1$s likes %2$s\'s %3$s');
     	if($verb === 'dislike')
     		$bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
    +	if($verb === 'attendyes')
    +		$bodyverb = t('%1$s is attending %2$s\'s %3$s');
    +	if($verb === 'attendno')
    +		$bodyverb = t('%1$s is not attending %2$s\'s %3$s');
    +	if($verb === 'attendmaybe')
    +		$bodyverb = t('%1$s may attend %2$s\'s %3$s');
     
     	if(! isset($bodyverb))
     			return; 
    diff --git a/mod/manage.php b/mod/manage.php
    index 5513ebe08d..c0eedc2ba0 100644
    --- a/mod/manage.php
    +++ b/mod/manage.php
    @@ -97,9 +97,23 @@ function manage_content(&$a) {
     		return;
     	}
     
    +	if ($_GET['identity']) {
    +		$_POST['identity'] = $_GET['identity'];
    +		manage_post($a);
    +		return;
    +	}
    +
     	$identities = $a->identities;
    -	foreach($identities as $key=>$id) {
    -		$identities[$key]['selected'] = (($id['nickname'] === $a->user['nickname']) ? ' selected="selected" ' : '');
    +
    +	//getting additinal information for each identity
    +	foreach ($identities as $key=>$id) {
    +		$thumb = q("SELECT `thumb` FROM `contact` WHERE `uid` = '%s' AND `self` = 1",
    +			dbesc($id['uid'])
    +		);
    +
    +		$identities[$key][thumb] = $thumb[0][thumb];
    +
    +		$identities[$key]['selected'] = (($id['nickname'] === $a->user['nickname']) ? true : false);
     	}
     
     	$o = replace_macros(get_markup_template('manage.tpl'), array(
    diff --git a/mod/match.php b/mod/match.php
    index 74f83a6cc9..db1cac0f78 100644
    --- a/mod/match.php
    +++ b/mod/match.php
    @@ -2,22 +2,28 @@
     include_once('include/text.php');
     require_once('include/socgraph.php');
     require_once('include/contact_widgets.php');
    +require_once('mod/proxy.php');
     
    +/**
    + * @brief Controller for /match.
    + *
    + * It takes keywords from your profile and queries the directory server for
    + * matching keywords from other profiles.
    + *
    + * @param App &$a
    + * @return void|string
    + */
     function match_content(&$a) {
     
     	$o = '';
     	if(! local_user())
     		return;
     
    -	$a->page['aside'] .= follow_widget();
     	$a->page['aside'] .= findpeople_widget();
    +	$a->page['aside'] .= follow_widget();
     
     	$_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
     
    -	$o .= replace_macros(get_markup_template("section_title.tpl"),array(
    -		'$title' => t('Profile Match')
    -	));
    -
     	$r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
     		intval(local_user())
     	);
    @@ -26,7 +32,6 @@ function match_content(&$a) {
     	if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) {
     		notice( t('No keywords to match. Please add keywords to your default profile.') . EOL);
     		return;
    -
     	}
     
     	$params = array();
    @@ -51,35 +56,55 @@ function match_content(&$a) {
     
     		if(count($j->results)) {
     
    +			$id = 0;
     
    -
    -			$tpl = get_markup_template('match.tpl');
     			foreach($j->results as $jj) {
     				$match_nurl = normalise_link($jj->url);
     				$match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1",
     					intval(local_user()),
     					dbesc($match_nurl));
    +
     				if (!count($match)) {
     					$jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo);
     					$connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url;
    -					$o .= replace_macros($tpl,array(
    -						'$url' => zrl($jj->url),
    -						'$name' => $jj->name,
    -						'$photo' => proxy_url($jj->photo),
    -						'$inttxt' => ' ' . t('is interested in:'),
    -						'$conntxt' => t('Connect'),
    -						'$connlnk' => $connlnk,
    -						'$tags' => $jj->tags
    -					));
    +					$photo_menu = array(array(t("View Profile"), zrl($jj->url)));
    +					$photo_menu[] = array(t("Connect/Follow"), $connlnk);
    +
    +					$contact_details = get_contact_details_by_url($jj->url, local_user());
    +
    +					$entry = array(
    +						'url' => zrl($jj->url),
    +						'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $jj->url),
    +						'name' => $jj->name,
    +						'details'       => $contact_details['location'],
    +						'tags'          => $contact_details['keywords'],
    +						'about'         => $contact_details['about'],
    +						'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB),
    +						'inttxt' => ' ' . t('is interested in:'),
    +						'conntxt' => t('Connect'),
    +						'connlnk' => $connlnk,
    +						'img_hover' => $jj->tags,
    +						'photo_menu' => $photo_menu,
    +						'id' => ++$id,
    +					);
    +					$entries[] = $entry;
     				}
     			}
    -		} else {
    +
    +		$tpl = get_markup_template('viewcontact_template.tpl');
    +
    +		$o .= replace_macros($tpl,array(
    +			'$title' => t('Profile Match'),
    +			'$contacts' => $entries,
    +			'$paginate' => paginate($a),
    +		));
    +
    +		}
    +		else {
     			info( t('No matches') . EOL);
     		}
     
     	}
     
    -	$o .= cleardiv();
    -	$o .= paginate($a);
     	return $o;
     }
    diff --git a/mod/message.php b/mod/message.php
    index 1331ce7fb5..0ed2b98841 100644
    --- a/mod/message.php
    +++ b/mod/message.php
    @@ -4,7 +4,13 @@ require_once('include/acl_selectors.php');
     require_once('include/message.php');
     
     function message_init(&$a) {
    -	$tabs = array();
    +
    +	$tabs = '';
    +
    +	if ($a->argc >1 && is_numeric($a->argv[1])) {
    +	 $tabs = render_messages(get_messages(local_user(),0,5), 'mail_list.tpl');
    +	}
    +
     	$new = array(
     		'label' => t('New Message'),
     		'url' => $a->get_baseurl(true) . '/message/new',
    @@ -55,7 +61,7 @@ function message_post(&$a) {
     	if(! $plaintext) {
     		$body = fix_mce_lf($body);
     	}
    -	
    +
     	$ret = send_message($recipient, $body, $subject, $replyto);
     	$norecip = false;
     
    @@ -246,8 +252,8 @@ function message_content(&$a) {
     
     				// remove diaspora conversation pointer
     				// Actually if we do this, we can never receive another reply to that conversation,
    -				// as we will never again have the info we need to re-create it. 
    -				// We'll just have to orphan it. 
    +				// as we will never again have the info we need to re-create it.
    +				// We'll just have to orphan it.
     
     				//if($convid) {
     				//	q("delete from conv where id = %d limit 1",
    @@ -344,75 +350,29 @@ function message_content(&$a) {
     
     	if($a->argc == 1) {
     
    -		// list messages
    +		// List messages
     
     		$o .= $header;
     
    -
     		$r = q("SELECT count(*) AS `total` FROM `mail`
     			WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC",
     			intval(local_user()),
     			dbesc($myprofile)
     		);
    -		if(count($r))
    -			$a->set_pager_total($r[0]['total']);
     
    -		$r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`,
    -			`mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` , `contact`.`network`,
    -			count( * ) as count
    -			FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
    -			WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `mailcreated` DESC  LIMIT %d , %d ",
    -			intval(local_user()),
    -			//
    -			intval($a->pager['start']),
    -			intval($a->pager['itemspage'])
    -		);
    +		if(count($r)) $a->set_pager_total($r[0]['total']);
    +
    +		$r = get_messages(local_user(), $a->pager['start'], $a->pager['itemspage']);
     
     		if(! count($r)) {
     			info( t('No messages.') . EOL);
     			return $o;
     		}
     
    -		$tpl = get_markup_template('mail_list.tpl');
    -		foreach($r as $rr) {
    -			if($rr['unknown']) {
    -				$partecipants = sprintf( t("Unknown sender - %s"),$rr['from-name']);
    -			}
    -			elseif (link_compare($rr['from-url'],$myprofile)){
    -				$partecipants = sprintf( t("You and %s"), $rr['name']);
    -			}
    -			else {
    -				$partecipants = sprintf( t("%s and You"), $rr['from-name']);
    -			}
    +		$o .= render_messages($r, 'mail_list.tpl');
     
    -			if($a->theme['template_engine'] === 'internal') {
    -				$subject_e = template_escape((($rr['mailseen']) ? $rr['title'] : '' . $rr['title'] . ''));
    -				$body_e = template_escape($rr['body']);
    -				$to_name_e = template_escape($rr['name']);
    -			}
    -			else {
    -				$subject_e = (($rr['mailseen']) ? $rr['title'] : '' . $rr['title'] . '');
    -				$body_e = $rr['body'];
    -				$to_name_e = $rr['name'];
    -			}
    -
    -			$o .= replace_macros($tpl, array(
    -				'$id' => $rr['id'],
    -				'$from_name' => $partecipants,
    -				'$from_url' => (($rr['network'] === NETWORK_DFRN) ? $a->get_baseurl(true) . '/redir/' . $rr['contact-id'] : $rr['url']),
    -				'$sparkle' => ' sparkle',
    -				'$from_photo' => (($rr['thumb']) ? $rr['thumb'] : $rr['from-photo']),
    -				'$subject' => $subject_e,
    -				'$delete' => t('Delete conversation'),
    -				'$body' => $body_e,
    -				'$to_name' => $to_name_e,
    -				'$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'], t('D, d M Y - g:i A')),
    -                                '$ago' => relative_date($rr['mailcreated']),
    -				'$seen' => $rr['mailseen'],
    -				'$count' => sprintf( tt('%d message', '%d messages', $rr['count']), $rr['count']),
    -			));
    -		}
     		$o .= paginate($a);
    +
     		return $o;
     	}
     
    @@ -569,5 +529,65 @@ function message_content(&$a) {
     
     		return $o;
     	}
    -
    +}
    +
    +function get_messages($user, $lstart, $lend) {
    +
    +	return q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`,
    +		`mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` , `contact`.`network`,
    +		count( * ) as count
    +		FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id`
    +		WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `mailcreated` DESC  LIMIT %d , %d ",
    +		intval($user), intval($lstart), intval($lend)
    +	);
    +}
    +
    +function render_messages($msg, $t) {
    +
    +	$a = get_app();
    +
    +	$tpl = get_markup_template($t);
    +	$rslt = '';
    +
    +	foreach($msg as $rr) {
    +
    +		if($rr['unknown']) {
    +			$participants = sprintf( t("Unknown sender - %s"),$rr['from-name']);
    +		}
    +		elseif (link_compare($rr['from-url'], $myprofile)){
    +			$participants = sprintf( t("You and %s"), $rr['name']);
    +		}
    +		else {
    +			$participants = sprintf( t("%s and You"), $rr['from-name']);
    +		}
    +
    +		if($a->theme['template_engine'] === 'internal') {
    +			$subject_e = template_escape((($rr['mailseen']) ? $rr['title'] : '' . $rr['title'] . ''));
    +			$body_e = template_escape($rr['body']);
    +			$to_name_e = template_escape($rr['name']);
    +		}
    +		else {
    +			$subject_e = (($rr['mailseen']) ? $rr['title'] : '' . $rr['title'] . '');
    +			$body_e = $rr['body'];
    +			$to_name_e = $rr['name'];
    +		}
    +
    +		$rslt .= replace_macros($tpl, array(
    +			'$id' => $rr['id'],
    +			'$from_name' => $participants,
    +			'$from_url' => (($rr['network'] === NETWORK_DFRN) ? $a->get_baseurl(true) . '/redir/' . $rr['contact-id'] : $rr['url']),
    +			'$sparkle' => ' sparkle',
    +			'$from_photo' => (($rr['thumb']) ? $rr['thumb'] : $rr['from-photo']),
    +			'$subject' => $subject_e,
    +			'$delete' => t('Delete conversation'),
    +			'$body' => $body_e,
    +			'$to_name' => $to_name_e,
    +			'$date' => datetime_convert('UTC',date_default_timezone_get(),$rr['mailcreated'], t('D, d M Y - g:i A')),
    +															'$ago' => relative_date($rr['mailcreated']),
    +			'$seen' => $rr['mailseen'],
    +			'$count' => sprintf( tt('%d message', '%d messages', $rr['count']), $rr['count']),
    +		));
    +	}
    +
    +	return $rslt;
     }
    diff --git a/mod/navigation.php b/mod/navigation.php
    index c14902c5f4..5db69b171e 100644
    --- a/mod/navigation.php
    +++ b/mod/navigation.php
    @@ -12,8 +12,7 @@ function navigation_content(&$a) {
     
     	$tpl = get_markup_template('navigation.tpl');
     	return replace_macros($tpl, array(
    -        '$baseurl' => $a->get_baseurl(),
    -		'$langselector' => lang_selector(),
    +		'$baseurl' => $a->get_baseurl(),
     		'$sitelocation' => $nav_info['sitelocation'],
     		'$nav' => $nav_info['nav'],
     		'$banner' =>  $nav_info['banner'],
    diff --git a/mod/network.php b/mod/network.php
    index a92e0c691b..903ee41548 100644
    --- a/mod/network.php
    +++ b/mod/network.php
    @@ -112,6 +112,7 @@ function network_init(&$a) {
     	require_once('include/group.php');
     	require_once('include/contact_widgets.php');
     	require_once('include/items.php');
    +	require_once('include/forums.php');
     
     	if(! x($a->page,'aside'))
     		$a->page['aside'] = '';
    @@ -119,19 +120,19 @@ function network_init(&$a) {
     	$search = ((x($_GET,'search')) ? escape_tags($_GET['search']) : '');
     
     	if(x($_GET,'save')) {
    -		$r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1",
    +		$r = q("SELECT * FROM `search` WHERE `uid` = %d AND `term` = '%s' LIMIT 1",
     			intval(local_user()),
     			dbesc($search)
     		);
     		if(! count($r)) {
    -			q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ",
    +			q("INSERT INTO `search` ( `uid`,`term` ) VALUES ( %d, '%s') ",
     				intval(local_user()),
     				dbesc($search)
     			);
     		}
     	}
     	if(x($_GET,'remove')) {
    -		q("delete from `search` where `uid` = %d and `term` = '%s'",
    +		q("DELETE FROM `search` WHERE `uid` = %d AND `term` = '%s'",
     			intval(local_user()),
     			dbesc($search)
     		);
    @@ -145,11 +146,20 @@ function network_init(&$a) {
     	}
     
     	$a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network',true,$group_id) : '');
    +	$a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? widget_forumlist($a) : '');
     	$a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false);
     	$a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
     	$a->page['aside'] .= saved_searches($search);
     	$a->page['aside'] .= fileas_widget($a->get_baseurl(true) . '/network',(x($_GET, 'file') ? $_GET['file'] : ''));
     
    +	if(x($_GET['cid']) && intval($_GET['cid']) != 0) {
    +		$r = q("SELECT `url` FROM `contact` WHERE `id` = %d",
    +			intval($_GET['cid']));
    +		if ($r) {
    +			$a->page['aside'] = "";
    +			profile_load($a, "", 0, get_contact_details_by_url($r[0]["url"]));
    +		}
    +	}
     }
     
     function saved_searches($search) {
    @@ -172,7 +182,7 @@ function saved_searches($search) {
     
     	$o = '';
     
    -	$r = q("select `id`,`term` from `search` WHERE `uid` = %d",
    +	$r = q("SELECT `id`,`term` FROM `search` WHERE `uid` = %d",
     		intval(local_user())
     	);
     
    @@ -355,57 +365,63 @@ function network_content(&$a, $update = 0) {
     	// tabs
     	$tabs = array(
     		array(
    -			'label' => t('Commented Order'),
    -			'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
    -			'sel'=>$all_active,
    -			'title'=> t('Sort by Comment Date'),
    +			'label'	=> t('Commented Order'),
    +			'url'	=> $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
    +			'sel'	=> $all_active,
    +			'title'	=> t('Sort by Comment Date'),
    +			'id'	=> 'commented-order-tab',
     			'accesskey' => "e",
     		),
     		array(
    -			'label' => t('Posted Order'),
    -			'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
    -			'sel'=>$postord_active,
    -			'title' => t('Sort by Post Date'),
    +			'label'	=> t('Posted Order'),
    +			'url'	=> $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
    +			'sel'	=> $postord_active,
    +			'title'	=> t('Sort by Post Date'),
    +			'id'	=> 'posted-order-tab',
     			'accesskey' => "t",
     		),
     	);
     
     	if(feature_enabled(local_user(),'personal_tab')) {
     		$tabs[] = array(
    -			'label' => t('Personal'),
    -			'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1',
    -			'sel' => $conv_active,
    -			'title' => t('Posts that mention or involve you'),
    +			'label'	=> t('Personal'),
    +			'url'	=> $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1',
    +			'sel'	=> $conv_active,
    +			'title'	=> t('Posts that mention or involve you'),
    +			'id'	=> 'personal-tab',
     			'accesskey' => "r",
     		);
     	}
     
     	if(feature_enabled(local_user(),'new_tab')) {
     		$tabs[] = array(
    -			'label' => t('New'),
    -			'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''),
    -			'sel' => $new_active,
    -			'title' => t('Activity Stream - by date'),
    +			'label'	=> t('New'),
    +			'url'	=> $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''),
    +			'sel'	=> $new_active,
    +			'title'	=> t('Activity Stream - by date'),
    +			'id'	=> 'activitiy-by-date-tab',
     			'accesskey' => "w",
     		);
     	}
     
     	if(feature_enabled(local_user(),'link_tab')) {
     		$tabs[] = array(
    -			'label' => t('Shared Links'),
    -			'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1',
    -			'sel'=>$bookmarked_active,
    -			'title'=> t('Interesting Links'),
    +			'label'	=> t('Shared Links'),
    +			'url'	=> $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1',
    +			'sel'	=> $bookmarked_active,
    +			'title'	=> t('Interesting Links'),
    +			'id'	=> 'shared-links-tab',
     			'accesskey' => "b",
     		);
     	}
     
     	if(feature_enabled(local_user(),'star_posts')) {
     		$tabs[] = array(
    -			'label' => t('Starred'),
    -			'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1',
    -			'sel'=>$starred_active,
    -			'title' => t('Favourite Posts'),
    +			'label'	=> t('Starred'),
    +			'url'	=> $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1',
    +			'sel'	=> $starred_active,
    +			'title'	=> t('Favourite Posts'),
    +			'id'	=> 'starred-posts-tab',
     			'accesskey' => "m",
     		);
     	}
    @@ -446,7 +462,7 @@ function network_content(&$a, $update = 0) {
     		$def_acl = array('allow_cid' => '<' . intval($cid) . '>');
     
     	if($nets) {
    -		$r = q("select id from contact where uid = %d and network = '%s' and self = 0",
    +		$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND network = '%s' AND `self` = 0",
     			intval(local_user()),
     			dbesc($nets)
     		);
    @@ -475,7 +491,11 @@ function network_content(&$a, $update = 0) {
     		$content = "";
     
     		if ($cid) {
    -			$contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `forum`", intval($cid), intval(local_user()));
    +			// If $cid belongs to a communitity forum or a privat goup,.add a mention to the status editor
    +			$contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND (`forum` OR `prv`) ",
    +				intval($cid),
    +				intval(local_user())
    +			);
     			if ($contact)
     				$content = "@".$contact[0]["nick"]."+".$cid;
     		}
    @@ -552,9 +572,9 @@ function network_content(&$a, $update = 0) {
     		//$sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` WHERE (`contact-id` IN ($contact_str) OR `allow_gid` like '".protect_sprintf('%<'.intval($group).'>%')."') and deleted = 0 ORDER BY `created` DESC) AS `temp1` ON $sql_table.$sql_parent = `temp1`.`parent` ";
     
     		$sql_extra3 .= " AND `contact-id` IN ($contact_str$contact_str_self) ";
    -		$sql_extra3 .= " AND EXISTS (SELECT id FROM `item` WHERE (`contact-id` IN ($contact_str)
    -				OR `allow_gid` like '".protect_sprintf('%<'.intval($group).'>%')."') and deleted = 0
    -				AND parent = $sql_table.$sql_parent) ";
    +		$sql_extra3 .= " AND EXISTS (SELECT `id` FROM `item` WHERE (`contact-id` IN ($contact_str)
    +				OR `allow_gid` LIKE '".protect_sprintf('%<'.intval($group).'>%')."') AND `deleted` = 0
    +				AND `parent` = $sql_table.$sql_parent) ";
     
     		$o = replace_macros(get_markup_template("section_title.tpl"),array(
     			'$title' => sprintf( t('Group: %s'), $r[0]['name'])
    @@ -568,14 +588,14 @@ function network_content(&$a, $update = 0) {
     			intval($cid)
     		);
     		if(count($r)) {
    -			$sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` 
    -					    WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." and deleted = 0 
    -					    ORDER BY `item`.`received` DESC) AS `temp1` 
    +			$sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item`
    +					    WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." AND `deleted` = 0
    +					    ORDER BY `item`.`received` DESC) AS `temp1`
     					    ON $sql_table.$sql_parent = `temp1`.`parent` ";
     			$sql_extra = "";
     
     			$o = replace_macros(get_markup_template("section_title.tpl"),array(
    -				'$title' => sprintf( t('Contact: %s'), $r[0]['name'])
    +				'$title' => sprintf( t('Contact: %s'), htmlentities($r[0]['name']))
     			)) . $o;
     
     			if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
    @@ -654,29 +674,30 @@ function network_content(&$a, $update = 0) {
     	}
     	else {
     		if(get_config('system', 'old_pager')) {
    -		        $r = q("SELECT COUNT(*) AS `total`
    -			        FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = $sql_table.`contact-id`
    -			        AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
    -			        WHERE $sql_table.`uid` = %d AND $sql_table.`visible` = 1 AND $sql_table.`deleted` = 0
    -			        $sql_extra2 $sql_extra3
    -			        $sql_extra $sql_nets ",
    -			        intval($_SESSION['uid'])
    -		        );
    +			$r = q("SELECT COUNT(*) AS `total`
    +				FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = $sql_table.`contact-id`
    +				AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
    +				WHERE $sql_table.`uid` = %d AND $sql_table.`visible` = 1 AND $sql_table.`deleted` = 0
    +				$sql_extra2 $sql_extra3
    +				$sql_extra $sql_nets ",
    +				intval($_SESSION['uid'])
    +			);
     
    -		        if(count($r)) {
    -			        $a->set_pager_total($r[0]['total']);
    -		        }
    +			if(count($r)) {
    +				$a->set_pager_total($r[0]['total']);
    +			}
     		}
     
     		//  check if we serve a mobile device and get the user settings
     		//  accordingly
     		if ($a->is_mobile) {
    -		    $itemspage_network = get_pconfig(local_user(),'system','itemspage_mobile_network');
    -		    $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
    +			$itemspage_network = get_pconfig(local_user(),'system','itemspage_mobile_network');
    +			$itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
     		} else {
    -		    $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
    -		    $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
    +			$itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
    +			$itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
     		}
    +
     		//  now that we have the user settings, see if the theme forces
     		//  a maximum item number which is lower then the user choice
     		if(($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network))
    @@ -687,7 +708,7 @@ function network_content(&$a, $update = 0) {
     	}
     
     	if($nouveau) {
    -		$simple_update = (($update) ? " and `item`.`unseen` = 1 " : '');
    +		$simple_update = (($update) ? " AND `item`.`unseen` = 1 " : '');
     
     		if ($sql_order == "")
     			$sql_order = "`item`.`received`";
    @@ -700,7 +721,7 @@ function network_content(&$a, $update = 0) {
     			FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
     			AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
     			WHERE `item`.`uid` = %d AND `item`.`visible` = 1
    -			AND `item`.`deleted` = 0 and `item`.`moderated` = 0
    +			AND `item`.`deleted` = 0 AND `item`.`moderated` = 0
     			$simple_update
     			$sql_extra $sql_nets
     			ORDER BY $sql_order DESC $pager_sql ",
    @@ -732,7 +753,10 @@ function network_content(&$a, $update = 0) {
     		// Fetch a page full of parent items for this page
     		if($update) {
     			if (!get_config("system", "like_no_comment"))
    -				$sql_extra4 = "(`item`.`deleted` = 0 OR `item`.`verb` = '".ACTIVITY_LIKE."' OR `item`.`verb` = '".ACTIVITY_DISLIKE."')";
    +				$sql_extra4 = "(`item`.`deleted` = 0
    +						OR `item`.`verb` = '".ACTIVITY_LIKE."' OR `item`.`verb` = '".ACTIVITY_DISLIKE."'
    +						OR `item`.`verb` = '".ACTIVITY_ATTEND."' OR `item`.`verb` = '".ACTIVITY_ATTENDNO."'
    +						OR `item`.`verb` = '".ACTIVITY_ATTENDMAYBE."')";
     			else
     				$sql_extra4 = "`item`.`deleted` = 0 AND `item`.`verb` = '".ACTIVITY_POST."'";
     
    diff --git a/mod/nodeinfo.php b/mod/nodeinfo.php
    index f013c9084f..ba310a1051 100644
    --- a/mod/nodeinfo.php
    +++ b/mod/nodeinfo.php
    @@ -1,6 +1,8 @@
      $a->config["sitename"]);
     
    -	if (nodeinfo_plugin_enabled("appnet"))
    +	if (plugin_enabled("appnet"))
     		$nodeinfo["services"]["inbound"][] = "appnet";
     
    -	if (nodeinfo_plugin_enabled("appnet") OR nodeinfo_plugin_enabled("buffer"))
    +	if (plugin_enabled("appnet") OR plugin_enabled("buffer"))
     		$nodeinfo["services"]["outbound"][] = "appnet";
     
    -	if (nodeinfo_plugin_enabled("blogger"))
    +	if (plugin_enabled("blogger"))
     		$nodeinfo["services"]["outbound"][] = "blogger";
     
    -	if (nodeinfo_plugin_enabled("dwpost"))
    +	if (plugin_enabled("dwpost"))
     		$nodeinfo["services"]["outbound"][] = "dreamwidth";
     
    -	if (nodeinfo_plugin_enabled("fbpost") OR nodeinfo_plugin_enabled("buffer"))
    +	if (plugin_enabled("fbpost") OR plugin_enabled("buffer"))
     		$nodeinfo["services"]["outbound"][] = "facebook";
     
    -	if (nodeinfo_plugin_enabled("statusnet")) {
    +	if (plugin_enabled("statusnet")) {
     		$nodeinfo["services"]["inbound"][] = "gnusocial";
     		$nodeinfo["services"]["outbound"][] = "gnusocial";
     	}
     
    -	if (nodeinfo_plugin_enabled("gpluspost") OR nodeinfo_plugin_enabled("buffer"))
    +	if (plugin_enabled("gpluspost") OR plugin_enabled("buffer"))
     		$nodeinfo["services"]["outbound"][] = "google";
     
    -	if (nodeinfo_plugin_enabled("ijpost"))
    +	if (plugin_enabled("ijpost"))
     		$nodeinfo["services"]["outbound"][] = "insanejournal";
     
    -	if (nodeinfo_plugin_enabled("libertree"))
    +	if (plugin_enabled("libertree"))
     		$nodeinfo["services"]["outbound"][] = "libertree";
     
    -	if (nodeinfo_plugin_enabled("buffer"))
    +	if (plugin_enabled("buffer"))
     		$nodeinfo["services"]["outbound"][] = "linkedin";
     
    -	if (nodeinfo_plugin_enabled("ljpost"))
    +	if (plugin_enabled("ljpost"))
     		$nodeinfo["services"]["outbound"][] = "livejournal";
     
    -	if (nodeinfo_plugin_enabled("buffer"))
    +	if (plugin_enabled("buffer"))
     		$nodeinfo["services"]["outbound"][] = "pinterest";
     
    -	if (nodeinfo_plugin_enabled("posterous"))
    +	if (plugin_enabled("posterous"))
     		$nodeinfo["services"]["outbound"][] = "posterous";
     
    -	if (nodeinfo_plugin_enabled("pumpio")) {
    +	if (plugin_enabled("pumpio")) {
     		$nodeinfo["services"]["inbound"][] = "pumpio";
     		$nodeinfo["services"]["outbound"][] = "pumpio";
     	}
    @@ -118,13 +120,13 @@ function nodeinfo_init(&$a){
     	if ($smtp)
     		$nodeinfo["services"]["outbound"][] = "smtp";
     
    -	if (nodeinfo_plugin_enabled("tumblr"))
    +	if (plugin_enabled("tumblr"))
     		$nodeinfo["services"]["outbound"][] = "tumblr";
     
    -	if (nodeinfo_plugin_enabled("twitter") OR nodeinfo_plugin_enabled("buffer"))
    +	if (plugin_enabled("twitter") OR plugin_enabled("buffer"))
     		$nodeinfo["services"]["outbound"][] = "twitter";
     
    -	if (nodeinfo_plugin_enabled("wppost"))
    +	if (plugin_enabled("wppost"))
     		$nodeinfo["services"]["outbound"][] = "wordpress";
     
     	$nodeinfo["metadata"]["protocols"] = $nodeinfo["protocols"];
    @@ -134,7 +136,7 @@ function nodeinfo_init(&$a){
     
     	$nodeinfo["metadata"]["services"] = $nodeinfo["services"];
     
    -	if (nodeinfo_plugin_enabled("twitter"))
    +	if (plugin_enabled("twitter"))
     		$nodeinfo["metadata"]["services"]["inbound"][] = "twitter";
     
     	header('Content-type: application/json; charset=utf-8');
    @@ -142,17 +144,14 @@ function nodeinfo_init(&$a){
     	exit;
     }
     
    -function nodeinfo_plugin_enabled($plugin) {
    -	$r = q("SELECT * FROM `addon` WHERE `installed` = 1 AND `name` = '%s'", $plugin);
    -	return((bool)(count($r) > 0));
    -}
    +
     
     function nodeinfo_cron() {
     
     	$a = get_app();
     
     	// If the plugin "statistics_json" is enabled then disable it and actrivate nodeinfo.
    -	if (nodeinfo_plugin_enabled("statistics_json")) {
    +	if (plugin_enabled("statistics_json")) {
     		set_config("system", "nodeinfo", true);
     
     		$plugin = "statistics_json";
    diff --git a/mod/nogroup.php b/mod/nogroup.php
    index adbcfcb515..06fa730e0d 100644
    --- a/mod/nogroup.php
    +++ b/mod/nogroup.php
    @@ -35,6 +35,7 @@ function nogroup_content(&$a) {
     	if(count($r)) {
     		foreach($r as $rr) {
     
    +			$contact_details = get_contact_details_by_url($rr['url'], local_user());
     
     			$contacts[] = array(
     				'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']),
    @@ -46,8 +47,11 @@ function nogroup_content(&$a) {
     				'thumb' => $rr['thumb'],
     				'name' => $rr['name'],
     				'username' => $rr['name'],
    +				'details'       => $contact_details['location'],
    +				'tags'          => $contact_details['keywords'],
    +				'about'         => $contact_details['about'],
     				'sparkle' => $sparkle,
    -				'itemurl' => $rr['url'],
    +				'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
     				'url' => $url,
     				'network' => network_to_name($rr['network'], $url),
     			);
    diff --git a/mod/notes.php b/mod/notes.php
    index b960924956..73c1507e3e 100644
    --- a/mod/notes.php
    +++ b/mod/notes.php
    @@ -9,6 +9,8 @@ function notes_init(&$a) {
     
     	$which = $a->user['nickname'];
     
    +	nav_set_selected('home');
    +
     //	profile_load($a,$which,$profile);
     
     }
    diff --git a/mod/notifications.php b/mod/notifications.php
    index 44f6dd5675..a267b7c958 100644
    --- a/mod/notifications.php
    +++ b/mod/notifications.php
    @@ -1,5 +1,7 @@
     user['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));
    @@ -162,7 +166,7 @@ function notifications_content(&$a) {
     						'$intro_id' => $rr['intro_id'],
     						'$madeby' => sprintf( t('suggested by %s'),$rr['name']),
     						'$contact_id' => $rr['contact-id'],
    -						'$photo' => ((x($rr,'fphoto')) ? $rr['fphoto'] : "images/person-175.jpg"),
    +						'$photo' => ((x($rr,'fphoto')) ? proxy_url($rr['fphoto'], false, PROXY_SIZE_SMALL) : "images/person-175.jpg"),
     						'$fullname' => $rr['fname'],
     						'$url' => zrl($rr['furl']),
     						'$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''),
    @@ -206,7 +210,27 @@ function notifications_content(&$a) {
     					));
     				}
     
    +				$header = $rr["name"];
    +
    +				$ret = probe_url($rr["url"]);
    +
    +				if ($rr['gnetwork'] == "")
    +					$rr['gnetwork'] = $ret["network"];
    +
    +				if ($ret["addr"] != "")
    +					$header .= " <".$ret["addr"].">";
    +
    +				$header .= " (".network_to_name($rr['gnetwork'], $rr['url']).")";
    +
    +				// Don't show these data until you are connected. Diaspora is doing the same.
    +				if($rr['gnetwork'] === NETWORK_DIASPORA) {
    +					$rr['glocation'] = "";
    +					$rr['gabout'] = "";
    +					$rr['ggender'] = "";
    +				}
    +
     				$notif_content .= replace_macros($tpl, array(
    +					'$header' => htmlentities($header),
     					'$str_notifytype' => t('Notification type: '),
     					'$notify_type' => (($rr['network'] !== NETWORK_OSTATUS) ? t('Friend/Connect Request') : t('New Follower')),
     					'$dfrn_text' => $dfrn_text,
    @@ -214,12 +238,11 @@ function notifications_content(&$a) {
     					'$uid' => $_SESSION['uid'],
     					'$intro_id' => $rr['intro_id'],
     					'$contact_id' => $rr['contact-id'],
    -					'$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"),
    +					'$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo'], false, PROXY_SIZE_SMALL) : "images/person-175.jpg"),
     					'$fullname' => $rr['name'],
    +					'$location' => bbcode($rr['glocation'], false, false),
     					'$location_label' => t('Location:'),
    -					'$location' => $rr['glocation'],
    -					'$location_label' => t('Location:'),
    -					'$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)),
    +					'$about' => bbcode($rr['gabout'], false, false),
     					'$about_label' => t('About:'),
     					'$keywords' => $rr['gkeywords'],
     					'$keywords_label' => t('Tags:'),
    @@ -227,7 +250,9 @@ function notifications_content(&$a) {
     					'$gender_label' => t('Gender:'),
     					'$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''),
     					'$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')),
    -					'$url' => zrl($rr['url']),
    +					'$url' => $rr['url'],
    +					'$zrl' => zrl($rr['url']),
    +					'$url_label' => t('Profile URL'),
     					'$knowyou' => $knowyou,
     					'$approve' => t('Approve'),
     					'$note' => $rr['note'],
    @@ -278,7 +303,7 @@ function notifications_content(&$a) {
     						$notif_content .= replace_macros($tpl_item_likes,array(
     							//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
     							'$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
    -							'$item_image' => $it['author-avatar'],
    +							'$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO),
     							'$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']),
     							'$item_when' => relative_date($it['created'])
     						));
    @@ -288,7 +313,7 @@ function notifications_content(&$a) {
     						$notif_content .= replace_macros($tpl_item_dislikes,array(
     							//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
     							'$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
    -							'$item_image' => $it['author-avatar'],
    +							'$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO),
     							'$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']),
     							'$item_when' => relative_date($it['created'])
     						));
    @@ -303,7 +328,7 @@ function notifications_content(&$a) {
     						$notif_content .= replace_macros($tpl_item_friends,array(
     							//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
     							'$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
    -							'$item_image' => $it['author-avatar'],
    +							'$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO),
     							'$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']),
     							'$item_when' => relative_date($it['created'])
     						));
    @@ -318,7 +343,7 @@ function notifications_content(&$a) {
     						$notif_content .= replace_macros($tpl,array(
     							//'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
     							'$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
    -							'$item_image' => $it['author-avatar'],
    +							'$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO),
     							'$item_text' => $item_text,
     							'$item_when' => relative_date($it['created'])
     						));
    @@ -351,7 +376,7 @@ function notifications_content(&$a) {
     			foreach ($r as $it) {
     				$notif_content .= replace_macros($not_tpl,array(
     					'$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'],
    -					'$item_image' => $it['photo'],
    +					'$item_image' => proxy_url($it['photo'], false, PROXY_SIZE_MICRO),
     					'$item_text' => strip_tags(bbcode($it['msg'])),
     					'$item_when' => relative_date($it['date'])
     				));
    diff --git a/mod/photos.php b/mod/photos.php
    index 3d3b92a46d..5ca973d166 100644
    --- a/mod/photos.php
    +++ b/mod/photos.php
    @@ -1,5 +1,6 @@
     argc > 1) {
    @@ -30,6 +33,7 @@ function photos_init(&$a) {
     
     		$a->data['user'] = $r[0];
     		$a->profile_uid = $r[0]['uid'];
    +		$is_owner = (local_user() && (local_user() == $a->profile_uid));
     
     		$profilephoto = $a->get_cached_avatar_image($a->get_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg');
     
    @@ -62,6 +66,9 @@ function photos_init(&$a) {
     
     			$ret['albums'] = array();
     			foreach($albums as $k => $album) {
    +				//hide profile photos to others
    +				if((! $is_owner) && (! remote_user()) && ($album['album'] == t('Profile Photos')))
    +					continue;
     				$entry = array(
     					'text'      => $album['album'],
     					'total'     => $album['total'],
    @@ -194,6 +201,10 @@ function photos_post(&$a) {
     			goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
     		}
     
    +		/*
    +		 * RENAME photo album
    +		 */
    +
     		$newalbum = notags(trim($_POST['albumname']));
     		if($newalbum != $album) {
     			q("UPDATE `photo` SET `album` = '%s' WHERE `album` = '%s' AND `uid` = %d",
    @@ -206,6 +217,9 @@ function photos_post(&$a) {
     			return; // NOTREACHED
     		}
     
    +		/*
    +		 * DELETE photo album and all its photos
    +		 */
     
     		if($_POST['dropalbum'] == t('Delete Album')) {
     
    @@ -534,12 +548,12 @@ function photos_post(&$a) {
     							if(count($links)) {
     								foreach($links as $link) {
     									if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
    -        		            			$profile = $link['@attributes']['href'];
    +										$profile = $link['@attributes']['href'];
     									if($link['@attributes']['rel'] === 'salmon') {
     										$salmon = '$url:' . str_replace(',','%sc',$link['@attributes']['href']);
     										if(strlen($inform))
     											$inform .= ',';
    -                    					$inform .= $salmon;
    +							$inform .= $salmon;
     									}
     								}
     							}
    @@ -833,7 +847,7 @@ function photos_post(&$a) {
     		killme();
     	}
     
    -	$ph->orient($src);
    +	$exif = $ph->orient($src);
     	@unlink($src);
     
     	$max_length = get_config('system','max_image_length');
    @@ -874,8 +888,20 @@ function photos_post(&$a) {
     
     	// Create item container
     
    +	$lat = $lon = null;
    +
    +	if($exif && $exif['GPS']) {
    +		if(feature_enabled($channel_id,'photo_location')) {
    +			$lat = getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']);
    +			$lon = getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']);
    +		}
    +	}
    +
     	$arr = array();
     
    +	if($lat && $lon)
    +		$arr['coord'] = $lat . ' ' . $lon;
    +
     	$arr['uid']           = $page_owner_uid;
     	$arr['uri']           = $uri;
     	$arr['parent-uri']    = $uri;
    @@ -1059,13 +1085,12 @@ function photos_content(&$a) {
     	$o = "";
     
     	// tabs
    -	$_is_owner = (local_user() && (local_user() == $owner_uid));
    -	$o .= profile_tabs($a,$_is_owner, $a->data['user']['nickname']);
    -
    -	//
    -	// dispatch request
    -	//
    +	$is_owner = (local_user() && (local_user() == $owner_uid));
    +	$o .= profile_tabs($a,$is_owner, $a->data['user']['nickname']);
     
    +	/**
    +	 * Display upload form
    +	 */
     
     	if($datatype === 'upload') {
     		if(! ($can_post)) {
    @@ -1176,6 +1201,10 @@ function photos_content(&$a) {
     		return $o;
     	}
     
    +	/*
    +	 * Display a single photo album
    +	 */
    +
     	if($datatype === 'album') {
     
     		$album = hex2bin($datum);
    @@ -1203,6 +1232,7 @@ function photos_content(&$a) {
     			intval($a->pager['itemspage'])
     		);
     
    +		//edit album name
     		if($cmd === 'edit') {
     			if(($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) {
     				if($can_post) {
    @@ -1290,11 +1320,12 @@ function photos_content(&$a) {
     
     	}
     
    +	/** 
    +	 * Display one photo
    +	 */
     
     	if($datatype === 'image') {
     
    -
    -
     		//$o = '';
     		// fetch image, item containing image, then comments
     
    @@ -1418,6 +1449,9 @@ function photos_content(&$a) {
     		$linked_items = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1",
     			dbesc($datum)
     		);
    +
    +		$map = null;
    +
     		if(count($linked_items)) {
     			$link_item = $linked_items[0];
     			$r = q("SELECT COUNT(*) AS `total`
    @@ -1461,6 +1495,10 @@ function photos_content(&$a) {
     				);
     				update_thread($link_item['parent']);
     			}
    +
    +			if($link_item['coord']) {
    +				$map = generate_map($link_item['coord']);
    +			}
     		}
     
     		$tags=Null;
    @@ -1597,18 +1635,22 @@ function photos_content(&$a) {
     			$like = '';
     			$dislike = '';
     
    +			$conv_responses = array(
    +				'like' => array('title' => t('Likes','title')),'dislike' => array('title' => t('Dislikes','title')),
    +				'attendyes' => array('title' => t('Attending','title')), 'attendno' => array('title' => t('Not attending','title')), 'attendmaybe' => array('title' => t('Might attend','title'))
    +			);
    +
     
     
     			// display comments
     			if(count($r)) {
     
     				foreach($r as $item) {
    -					like_puller($a,$item,$alike,'like');
    -					like_puller($a,$item,$dlike,'dislike');
    +					builtin_activity_puller($item, $conv_responses);
     				}
     
    -				$like    = ((isset($alike[$link_item['id']])) ? format_like($alike[$link_item['id']],$alike[$link_item['id'] . '-l'],'like',$link_item['id']) : '');
    -				$dislike = ((isset($dlike[$link_item['id']])) ? format_like($dlike[$link_item['id']],$dlike[$link_item['id'] . '-l'],'dislike',$link_item['id']) : '');
    +				$like    = ((x($conv_responses['like'],$link_item['uri'])) ? format_like($conv_responses['like'][$link_item['uri']],$conv_responses['like'][$link_item['uri'] . '-l'],'like',$link_item['id']) : '');
    +				$dislike = ((x($conv_responses['dislike'],$link_item['uri'])) ? format_like($conv_responses['dislike'][$link_item['uri']],$conv_responses['dislike'][$link_item['uri'] . '-l'],'dislike',$link_item['id']) : '');
     
     
     
    @@ -1727,6 +1769,12 @@ function photos_content(&$a) {
     			$paginate = paginate($a);
     		}
     
    +
    +		$response_verbs = array('like');
    +		if(feature_enabled($owner_uid,'dislike'))
    +			$response_verbs[] = 'dislike';
    +		$responses = get_responses($conv_responses,$response_verbs,'',$link_item);
    +
     		$photo_tpl = get_markup_template('photo_view.tpl');
     
     		if($a->theme['template_engine'] === 'internal') {
    @@ -1753,9 +1801,12 @@ function photos_content(&$a) {
     			'$desc' => $ph[0]['desc'],
     			'$tags' => $tags_e,
     			'$edit' => $edit,
    +			'$map' => $map,
    +			'$map_text' => t('Map'),
     			'$likebuttons' => $likebuttons,
     			'$like' => $like_e,
     			'$dislike' => $dikslike_e,
    +			'responses' => $responses,
     			'$comments' => $comments,
     			'$paginate' => $paginate,
     		));
    @@ -1799,6 +1850,10 @@ function photos_content(&$a) {
     	if(count($r)) {
     		$twist = 'rotright';
     		foreach($r as $rr) {
    +			//hide profile photos to others
    +			if((! $is_owner) && (! remote_user()) && ($rr['album'] == t('Profile Photos')))
    +					continue;
    +			
     			if($twist == 'rotright')
     				$twist = 'rotleft';
     			else
    @@ -1815,8 +1870,8 @@ function photos_content(&$a) {
     			}
     
     			$photos[] = array(
    -				'id'       => $rr['id'],
    -				'twist'    => ' ' . $twist . rand(2,4),
    +				'id'		=> $rr['id'],
    +				'twist'		=> ' ' . $twist . rand(2,4),
     				'link'  	=> $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'],
     				'title' 	=> t('View Photo'),
     				'src'     	=> $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . ((($rr['scale']) == 6) ? 4 : $rr['scale']) . '.' . $ext,
    diff --git a/mod/ping.php b/mod/ping.php
    index e87ed98553..8cbfd308e6 100644
    --- a/mod/ping.php
    +++ b/mod/ping.php
    @@ -33,6 +33,7 @@ function ping_init(&$a) {
     
     		$home = 0;
     		$network = 0;
    +		$network_group = array();
     
     		$r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`,
     				`item`.`contact-id`, `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`,
    @@ -40,8 +41,9 @@ function ping_init(&$a) {
     				FROM `item` INNER JOIN `item` as `pitem` ON  `pitem`.`id`=`item`.`parent`
     				WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
     				 `item`.`deleted` = 0 AND `item`.`uid` = %d AND `pitem`.`parent` != 0
    +				AND `item`.`contact-id` != %d
     				ORDER BY `item`.`created` DESC",
    -			intval(local_user())
    +			intval(local_user()), intval(local_user())
     		);
     
     		if(count($r)) {
    @@ -84,6 +86,22 @@ function ping_init(&$a) {
     			}
     		}
     
    +		if ( $network )
    +		{
    +			# Find out how unseen network posts are spread across groups
    +			$sql = "SELECT g.id, g.name, count(i.id) count " .
    +				"FROM `group` g, group_member gm, item i " .
    +				"WHERE g.uid = %d " .
    +				"AND i.uid = %d " .
    +				"AND i.unseen AND i.visible " .
    +				"AND NOT i.deleted " .
    +				"AND i.`contact-id` = gm.`contact-id` " .
    +				"AND gm.gid = g.id GROUP BY g.id";
    +			#echo '' . $sql . '';
    +			$network_group = q($sql, intval(local_user()), intval(local_user()));
    +			#echo '';
    +		}
    +
     		$intros1 = q("SELECT  `intro`.`id`, `intro`.`datetime`,
     			`fcontact`.`name`, `fcontact`.`url`, `fcontact`.`photo`
     			FROM `intro` LEFT JOIN `fcontact` ON `intro`.`fid` = `fcontact`.`id`
    @@ -173,7 +191,7 @@ function ping_init(&$a) {
     		 *		'message' => notification message. "{0}" will be replaced by subject name
     		 **/
     		function xmlize($n){
    -			$n['photo'] = proxy_url($n['photo']);
    +			$n['photo'] = proxy_url($n['photo'], false, PROXY_SIZE_MICRO);
     
     			$n['message'] = html_entity_decode($n['message'], ENT_COMPAT | ENT_HTML401, "UTF-8");
     			$n['name'] = html_entity_decode($n['name'], ENT_COMPAT | ENT_HTML401, "UTF-8");
    @@ -186,8 +204,8 @@ function ping_init(&$a) {
     			if ($a->is_friendica_app() OR !$regularnotifications)
     				$n['message'] = str_replace("{0}", $n['name'], $n['message']);
     
    -			$local_time = datetime_convert('UTC',date_default_timezone_get(),$n['date']); 
    -				
    +			$local_time = datetime_convert('UTC',date_default_timezone_get(),$n['date']);
    +
     			call_hooks('ping_xmlize', $n);
     			$notsxml = '%s'."\n";
     			return sprintf ( $notsxml,
    @@ -202,6 +220,13 @@ function ping_init(&$a) {
     				$network
     				$home\r\n";
     		if ($register!=0) echo "$register";
    +		if ( count($network_group) ) {
    +			echo '';
    +			foreach ($network_group as $it) {
    +				echo '' . $it['count'] . "";
    +			}
    +			echo "";
    +		}
     
     		echo "$all_events
     			$all_events_today
    @@ -226,41 +251,41 @@ function ping_init(&$a) {
     				$n = array(
     					'href' => $a->get_baseurl().'/notifications/intros/'.$i['id'],
     					'name' => $i['name'],
    -					'url' => $i['url'], 
    +					'url' => $i['url'],
     					'photo' => $i['photo'],
     					'date' => $i['datetime'],
     					'seen' => false,
    -					'message' => t("{0} wants to be your friend"),				
    +					'message' => t("{0} wants to be your friend"),
     				);
     				$notifs[] = $n;
     			}
     		}
    -		
    +
     		if ($mail>0){
     			foreach ($mails as $i) {
     				$n = array(
     					'href' => $a->get_baseurl().'/message/'.$i['id'],
     					'name' => $i['from-name'],
    -					'url' => $i['from-url'], 
    +					'url' => $i['from-url'],
     					'photo' => $i['from-photo'],
     					'date' => $i['created'],
     					'seen' => false,
    -					'message' => t("{0} sent you a message"),				
    +					'message' => t("{0} sent you a message"),
     				);
     				$notifs[] = $n;
     			}
     		}
    -		
    +
     		if ($register>0){
     			foreach ($regs as $i) {
     				$n = array(
     					'href' => $a->get_baseurl().'/admin/users/',
     					'name' => $i['name'],
    -					'url' => $i['url'], 
    +					'url' => $i['url'],
     					'photo' => $i['micro'],
     					'date' => $i['created'],
     					'seen' => false,
    -					'message' => t("{0} requested registration"),				
    +					'message' => t("{0} requested registration"),
     				);
     				$notifs[] = $n;
     			}
    @@ -339,7 +364,7 @@ function ping_get_notifications($uid) {
     			$quit = true;
     		else
     			$offset += 50;
    -			
    +
     
     		foreach ($r AS $notification) {
     			if (is_null($notification["visible"]))
    @@ -362,7 +387,7 @@ function ping_get_notifications($uid) {
     				$notification["message"] = substr_replace($notification["message"],"{0}",$pos,strlen($notification["name"]));
     
     			$notification['href'] = $a->get_baseurl() . '/notify/view/' . $notification['id'];
    -				
    +
     			if ($notification["visible"] AND !$notification["spam"] AND
     				!$notification["deleted"] AND !is_array($result[$notification["parent"]])) {
     				$result[$notification["parent"]] = $notification;
    @@ -371,6 +396,6 @@ function ping_get_notifications($uid) {
     
     	} while ((count($result) < 50) AND !$quit);
     
    -	
    +
     	return($result);
     }
    diff --git a/mod/poco.php b/mod/poco.php
    index f84fc964d9..ae03aef2cd 100644
    --- a/mod/poco.php
    +++ b/mod/poco.php
    @@ -69,14 +69,8 @@ function poco_init(&$a) {
     			dbesc(NETWORK_OSTATUS)
     		);
     	} elseif($system_mode) {
    -		$r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s')
    -			AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`)
    -			AND `uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) ",
    -			dbesc(NETWORK_DFRN),
    -			dbesc(NETWORK_DIASPORA),
    -			dbesc(NETWORK_OSTATUS),
    -			dbesc(NETWORK_STATUSNET)
    -			);
    +		$r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1
    +			AND `uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) ");
     	} else {
     		$r = q("SELECT count(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
     			AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`)
    @@ -115,13 +109,8 @@ function poco_init(&$a) {
     		$r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender`,
     			`profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry`
     			FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid`
    -			WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s') AND `profile`.`is-default`
    -			AND ((`contact`.`success_update` >= `contact`.`failure_update`) OR (`contact`.`last-item` >= `contact`.`failure_update`))
    +			WHERE `self` = 1 AND `profile`.`is-default`
     			AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d",
    -			dbesc(NETWORK_DFRN),
    -			dbesc(NETWORK_DIASPORA),
    -			dbesc(NETWORK_OSTATUS),
    -			dbesc(NETWORK_STATUSNET),
     			intval($startIndex),
     			intval($itemsPerPage)
     		);
    @@ -226,6 +215,13 @@ function poco_init(&$a) {
     					Cache::set("about:".$rr['updated'].":".$rr['nurl'],$about);
     				}
     
    +				// Non connected persons can only see the keywords of a Diaspora account
    +				if ($rr['network'] == NETWORK_DIASPORA) {
    +					$rr['location'] = "";
    +					$about = "";
    +					$rr['gender'] = "";
    +				}
    +
     				$entry = array();
     				if($fields_ret['id'])
     					$entry['id'] = (int)$rr['id'];
    diff --git a/mod/poke.php b/mod/poke.php
    index db1c949636..45a577cda6 100644
    --- a/mod/poke.php
    +++ b/mod/poke.php
    @@ -1,4 +1,18 @@
    -get_baseurl();
     
    -	$a->page['htmlhead'] .= '';
    -	$a->page['htmlhead'] .= <<< EOT
    +	$head_tpl = get_markup_template('poke_head.tpl');
    +	$a->page['htmlhead'] .= replace_macros($head_tpl,array(
    +		'$baseurl' => $a->get_baseurl(true),
    +		'$base' => $base
    +	));
     
    -
    -EOT;
     
     	$parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0');
     
     
    -
     	$verbs = get_poke_verbs();
     
     	$shortlist = array();
    diff --git a/mod/profile.php b/mod/profile.php
    index 608971d08d..26bd395230 100644
    --- a/mod/profile.php
    +++ b/mod/profile.php
    @@ -221,8 +221,10 @@ function profile_content(&$a, $update = 0) {
     			FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
     			AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
     			WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND
    -			(`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."' OR item.verb = '" . ACTIVITY_DISLIKE . "')
    -			and `item`.`moderated` = 0 and `item`.`unseen` = 1
    +			(`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."'
    +			OR item.verb = '" . ACTIVITY_DISLIKE . "' OR item.verb = '" . ACTIVITY_ATTEND . "'
    +			OR item.verb = '" . ACTIVITY_ATTENDNO . "' OR item.verb = '" . ACTIVITY_ATTENDMAYBE . "')
    +			AND `item`.`moderated` = 0 and `item`.`unseen` = 1
     			AND `item`.`wall` = 1
     			$sql_extra
     			ORDER BY `item`.`created` DESC",
    @@ -266,10 +268,10 @@ function profile_content(&$a, $update = 0) {
     		//  accordingly
     		if ($a->is_mobile) {
     		    $itemspage_network = get_pconfig(local_user(),'system','itemspage_mobile_network');
    -		    $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
    +		    $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 10);
     		} else {
     		    $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
    -		    $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
    +		    $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
     		}
     		//  now that we have the user settings, see if the theme forces
     		//  a maximum item number which is lower then the user choice
    diff --git a/mod/profile_photo.php b/mod/profile_photo.php
    index aa88090597..4e8d279a97 100644
    --- a/mod/profile_photo.php
    +++ b/mod/profile_photo.php
    @@ -79,7 +79,7 @@ function profile_photo_post(&$a) {
     				$im->scaleImage(80);
     
     				$r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, $is_default_profile);
    -			
    +
     				if($r === false)
     					notice( sprintf(t('Image size reduction [%s] failed.'),"80") . EOL );
     
    @@ -97,11 +97,17 @@ function profile_photo_post(&$a) {
     						dbesc($base_image['resource-id']),
     						intval(local_user())
     					);
    -				}
    -				else {
    +
    +					$r = q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s'  WHERE `self` AND `uid` = %d",
    +						dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4.' . $im->getExt()),
    +						dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5.' . $im->getExt()),
    +						dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-6.' . $im->getExt()),
    +						intval(local_user())
    +					);
    +				} else {
     					$r = q("update profile set photo = '%s', thumb = '%s' where id = %d and uid = %d",
    -						dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4'),
    -						dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5'),
    +						dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-4.' . $im->getExt()),
    +						dbesc($a->get_baseurl() . '/photo/' . $base_image['resource-id'] . '-5.' . $im->getExt()),
     						intval($_REQUEST['profile']),
     						intval(local_user())
     					);
    diff --git a/mod/profiles.php b/mod/profiles.php
    index 6c1a82c7bb..3ba57c8831 100644
    --- a/mod/profiles.php
    +++ b/mod/profiles.php
    @@ -206,7 +206,7 @@ function profiles_post(&$a) {
     			if($ignore_year)
     				$dob = '0000-' . $dob;
     		}
    -                
    +
     		$name = notags(trim($_POST['name']));
     
     		if(! strlen($name)) {
    @@ -327,7 +327,7 @@ function profiles_post(&$a) {
     
     		$hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
     
    -
    +		set_pconfig(local_user(),'system','detailled_profile', (($_POST['detailled_profile'] == 1) ? 1: 0));
     
     		$changes = array();
     		$value = '';
    @@ -540,7 +540,7 @@ function profile_activity($changed, $value) {
     		return;
     
     	$arr = array();
    -	$arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user()); 
    +	$arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user());
     	$arr['uid'] = local_user();
     	$arr['contact-id'] = $self[0]['id'];
     	$arr['wall'] = 1;
    @@ -552,7 +552,7 @@ function profile_activity($changed, $value) {
     	$arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
     	$arr['verb'] = ACTIVITY_UPDATE;
     	$arr['object-type'] = ACTIVITY_OBJ_PROFILE;
    -				
    +
     	$A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
     
     
    @@ -570,7 +570,7 @@ function profile_activity($changed, $value) {
     		$changes .= $ch;
     	}
     
    -	$prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]';	
    +	$prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]';
     
     	if($t == 1 && strlen($value)) {
     		$message = sprintf( t('%1$s changed %2$s to “%3$s”'), $A, $changes, $value);
    @@ -578,9 +578,9 @@ function profile_activity($changed, $value) {
     	}
     	else
     		$message = 	sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes);
    - 
     
    -	$arr['body'] = $message;  
    +
    +	$arr['body'] = $message;
     
     	$arr['object'] = '' . ACTIVITY_OBJ_PROFILE . '' . $self[0]['name'] . ''
     	. '' . $self[0]['url'] . '/' . $self[0]['name'] . '';
    @@ -664,8 +664,10 @@ function profiles_content(&$a) {
     			'$no_selected' => (($r[0]['hide-friends'] == 0) ? " checked=\"checked\" " : "")
     		));
     
    +		$personal_account = !(in_array($a->user["page-flags"],
    +					array(PAGE_COMMUNITY, PAGE_PRVGROUP)));
     
    -
    +		$detailled_profile = (get_pconfig(local_user(),'system','detailled_profile') AND $personal_account);
     
     		$f = get_config('system','birthday_input_format');
     		if(! $f)
    @@ -674,6 +676,17 @@ function profiles_content(&$a) {
     		$is_default = (($r[0]['is-default']) ? 1 : 0);
     		$tpl = get_markup_template("profile_edit.tpl");
     		$o .= replace_macros($tpl,array(
    +			'$personal_account' => $personal_account,
    +			'$detailled_profile' => $detailled_profile,
    +
    +			'$details' => array(
    +                                'detailled_profile', //Name
    +                                t('Show more profile fields:'), //Label
    +                                $detailled_profile, //Value
    +                                '', //Help string
    +                                array(t('No'),t('Yes')) //Off - On strings
    +                        ),
    +
     			'$multi_profiles' => feature_enabled(local_user(),'multi_profiles'),
     			'$form_security_token' => get_form_security_token("profile_edit"),
     			'$form_security_token_photo' => get_form_security_token("profile_photo"),
    @@ -775,10 +788,10 @@ function profiles_content(&$a) {
     
     		return $o;
     	}
    -	
    +
     	//Profiles list.
     	else {
    -		
    +
     		//If we don't support multi profiles, don't display this list.
     		if(!feature_enabled(local_user(),'multi_profiles')){
     			$r = q(
    @@ -790,11 +803,11 @@ function profiles_content(&$a) {
     				goaway($a->get_baseurl(true) . '/profiles/'.$r[0]['id']);
     			}
     		}
    -		
    +
     		$r = q("SELECT * FROM `profile` WHERE `uid` = %d",
     			local_user());
     		if(count($r)) {
    -			
    +
     			$tpl_header = get_markup_template('profile_listing_header.tpl');
     			$o .= replace_macros($tpl_header,array(
     				'$header' => t('Edit/Manage Profiles'),
    @@ -802,17 +815,17 @@ function profiles_content(&$a) {
     				'$cr_new' => t('Create New Profile'),
     				'$cr_new_link' => 'profiles/new?t=' . get_form_security_token("profile_new")
     			));
    -			
    -			
    +
    +
     			$tpl = get_markup_template('profile_entry.tpl');
    -			
    +
     			foreach($r as $rr) {
     				$o .= replace_macros($tpl, array(
     					'$photo' => $a->get_cached_avatar_image($rr['thumb']),
     					'$id' => $rr['id'],
     					'$alt' => t('Profile Image'),
     					'$profile_name' => $rr['profile-name'],
    -					'$visible' => (($rr['is-default']) ? '' . t('visible to everybody') . '' 
    +					'$visible' => (($rr['is-default']) ? '' . t('visible to everybody') . ''
     						: '' . t('Edit visibility') . '')
     				));
     			}
    diff --git a/mod/proxy.php b/mod/proxy.php
    index d82d334cec..d26967dddf 100644
    --- a/mod/proxy.php
    +++ b/mod/proxy.php
    @@ -3,6 +3,12 @@
     
     define("PROXY_DEFAULT_TIME", 86400); // 1 Day
     
    +define("PROXY_SIZE_MICRO", "micro");
    +define("PROXY_SIZE_THUMB", "thumb");
    +define("PROXY_SIZE_SMALL", "small");
    +define("PROXY_SIZE_MEDIUM", "medium");
    +define("PROXY_SIZE_LARGE", "large");
    +
     require_once('include/security.php');
     require_once("include/Photo.php");
     
    @@ -37,6 +43,7 @@ function proxy_init() {
     
     	$thumb = false;
     	$size = 1024;
    +	$sizetype = "";
     
     	// If the cache path isn't there, try to create it
     	if (!is_dir($_SERVER["DOCUMENT_ROOT"]."/proxy"))
    @@ -59,14 +66,27 @@ function proxy_init() {
     			$size = 200;
     
     		// thumb, small, medium and large.
    -		if (substr($url, -6) == ":thumb")
    -			$size = 150;
    -		if (substr($url, -6) == ":small")
    -			$size = 340;
    -		if (substr($url, -7) == ":medium")
    +		if (substr($url, -6) == ":micro") {
    +			$size = 48;
    +			$sizetype = ":micro";
    +			$url = substr($url, 0, -6);
    +		} elseif (substr($url, -6) == ":thumb") {
    +			$size = 80;
    +			$sizetype = ":thumb";
    +			$url = substr($url, 0, -6);
    +		} elseif (substr($url, -6) == ":small") {
    +			$size = 175;
    +			$url = substr($url, 0, -6);
    +			$sizetype = ":small";
    +		} elseif (substr($url, -7) == ":medium") {
     			$size = 600;
    -		if (substr($url, -6) == ":large")
    +			$url = substr($url, 0, -7);
    +			$sizetype = ":medium";
    +		} elseif (substr($url, -6) == ":large") {
     			$size = 1024;
    +			$url = substr($url, 0, -6);
    +			$sizetype = ":large";
    +		}
     
     		$pos = strrpos($url, "=.");
     		if ($pos)
    @@ -176,6 +196,8 @@ function proxy_init() {
     		}
     	}
     
    +	$img_str_orig = $img_str;
    +
     	// reduce quality - if it isn't a GIF
     	if ($mime != "image/gif") {
     		$img = new Photo($img_str, $mime);
    @@ -188,10 +210,12 @@ function proxy_init() {
     	// If there is a real existing directory then put the cache file there
     	// advantage: real file access is really fast
     	// Otherwise write in cachefile
    -	if ($valid AND $direct_cache)
    -		file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true), $img_str);
    -	elseif ($cachefile != '')
    -		file_put_contents($cachefile, $img_str);
    +	if ($valid AND $direct_cache) {
    +		file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true), $img_str_orig);
    +		if ($sizetype <> '')
    +			file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true).$sizetype, $img_str);
    +	} elseif ($cachefile != '')
    +		file_put_contents($cachefile, $img_str_orig);
     
     	header("Content-type: $mime");
     
    @@ -208,7 +232,7 @@ function proxy_init() {
     	killme();
     }
     
    -function proxy_url($url, $writemode = false) {
    +function proxy_url($url, $writemode = false, $size = "") {
     	global $_SERVER;
     
     	$a = get_app();
    @@ -251,6 +275,9 @@ function proxy_url($url, $writemode = false) {
     
     	$proxypath = $a->get_baseurl()."/proxy/".$path;
     
    +	if ($size != "")
    +		$size = ":".$size;
    +
     	// Too long files aren't supported by Apache
     	// Writemode in combination with long files shouldn't be possible
     	if ((strlen($proxypath) > 250) AND $writemode)
    @@ -260,7 +287,7 @@ function proxy_url($url, $writemode = false) {
     	elseif ($writemode)
     		return ($path);
     	else
    -		return ($proxypath);
    +		return ($proxypath.$size);
     }
     
     /**
    diff --git a/mod/register.php b/mod/register.php
    index 1963bd7a60..4c4fcc2af1 100644
    --- a/mod/register.php
    +++ b/mod/register.php
    @@ -100,6 +100,9 @@ function register_post(&$a) {
     						 ). EOL
     				);
     			}
    +		} else {
    +			info( t('Registration successful.') . EOL ) ;
    +			goaway(z_root());
     		}
     	}
     	elseif($a->config['register_policy'] == REGISTER_APPROVE) {
    @@ -265,7 +268,7 @@ function register_content(&$a) {
     		'$fillext'   => $fillext,
     		'$oidlabel'  => $oidlabel,
     		'$openid'    => $openid_url,
    -		'$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '),
    +		'$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith, real or real-looking' . "\x29" . ': '),
     		'$addrlabel' => t('Your Email Address: '),
     		'$passwords' => $passwords,
     		'$password1' => array('password1', t('New Password:'), '', t('Leave empty for an auto generated password.')),
    diff --git a/mod/search.php b/mod/search.php
    index 251dd4778f..c15dfae3fe 100644
    --- a/mod/search.php
    +++ b/mod/search.php
    @@ -95,10 +95,29 @@ function search_content(&$a) {
     	}
     
     	if(get_config('system','local_search') AND !local_user()) {
    -		notice(t('Public access denied.').EOL);
    -		return;
    -		//http_status_exit(403);
    -		//killme();
    +		http_status_exit(403,
    +				array("title" => t("Public access denied."),
    +					"description" => t("Only logged in users are permitted to perform a search.")));
    +		killme();
    +		//notice(t('Public access denied.').EOL);
    +		//return;
    +	}
    +
    +	if (get_config('system','permit_crawling') AND !local_user()) {
    +		// To-Do:
    +		// - 10 requests are "free", after the 11th only a call per minute is allowed
    +
    +		$remote = $_SERVER["REMOTE_ADDR"];
    +		$result = Cache::get("remote_search:".$remote);
    +		if (!is_null($result)) {
    +			if ($result > (time() - 60)) {
    +				http_status_exit(429,
    +						array("title" => t("Too Many Requests"),
    +							"description" => t("Only one search per minute is permitted for not logged in users.")));
    +				killme();
    +			}
    +		}
    +		Cache::set("remote_search:".$remote, time(), CACHE_HOUR);
     	}
     
     	nav_set_selected('search');
    diff --git a/mod/settings.php b/mod/settings.php
    index 556fb63e8a..77a5755855 100644
    --- a/mod/settings.php
    +++ b/mod/settings.php
    @@ -284,6 +284,7 @@ function settings_post(&$a) {
     		$theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme']))  : $a->user['theme']);
     		$mobile_theme = ((x($_POST,'mobile_theme')) ? notags(trim($_POST['mobile_theme']))  : '');
     		$nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile'])  : 0);
    +		$first_day_of_week = ((x($_POST,'first_day_of_week')) ? intval($_POST['first_day_of_week'])  : 0);
     		$noinfo = ((x($_POST,'noinfo')) ? intval($_POST['noinfo'])  : 0);
     		$infinite_scroll = ((x($_POST,'infinite_scroll')) ? intval($_POST['infinite_scroll'])  : 0);
     		$no_auto_update = ((x($_POST,'no_auto_update')) ? intval($_POST['no_auto_update'])  : 0);
    @@ -308,6 +309,7 @@ function settings_post(&$a) {
     		set_pconfig(local_user(),'system','itemspage_network', $itemspage_network);
     		set_pconfig(local_user(),'system','itemspage_mobile_network', $itemspage_mobile_network);
     		set_pconfig(local_user(),'system','no_smilies',$nosmile);
    +		set_pconfig(local_user(),'system','first_day_of_week',$first_day_of_week);
     		set_pconfig(local_user(),'system','ignore_info',$noinfo);
     		set_pconfig(local_user(),'system','infinite_scroll',$infinite_scroll);
     		set_pconfig(local_user(),'system','no_auto_update',$no_auto_update);
    @@ -384,6 +386,8 @@ function settings_post(&$a) {
     	$username         = ((x($_POST,'username'))   ? notags(trim($_POST['username']))     : '');
     	$email            = ((x($_POST,'email'))      ? notags(trim($_POST['email']))        : '');
     	$timezone         = ((x($_POST,'timezone'))   ? notags(trim($_POST['timezone']))     : '');
    +	$language         = ((x($_POST,'language'))   ? notags(trim($_POST['language']))     : '');
    +
     	$defloc           = ((x($_POST,'defloc'))     ? notags(trim($_POST['defloc']))       : '');
     	$openid           = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url']))   : '');
     	$maxreq           = ((x($_POST,'maxreq'))     ? intval($_POST['maxreq'])             : 0);
    @@ -530,7 +534,15 @@ function settings_post(&$a) {
     		}
     	}
     
    -	$r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s',  `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `def_gid` = %d, `blockwall` = %d, `hidewall` = %d, `blocktags` = %d, `unkmail` = %d, `cntunkmail` = %d  WHERE `uid` = %d",
    +
    +	$r = q("UPDATE `user` SET `username` = '%s', `email` = '%s',
    +				`openid` = '%s', `timezone` = '%s',
    +				`allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s',
    +				`notify-flags` = %d, `page-flags` = %d, `default-location` = '%s',
    +				`allow_location` = %d, `maxreq` = %d, `expire` = %d, `openidserver` = '%s',
    +				`def_gid` = %d, `blockwall` = %d, `hidewall` = %d, `blocktags` = %d,
    +				`unkmail` = %d, `cntunkmail` = %d, `language` = '%s'
    +			WHERE `uid` = %d",
     			dbesc($username),
     			dbesc($email),
     			dbesc($openid),
    @@ -552,11 +564,15 @@ function settings_post(&$a) {
     			intval($blocktags),
     			intval($unkmail),
     			intval($cntunkmail),
    +			dbesc($language),
     			intval(local_user())
     	);
     	if($r)
     		info( t('Settings updated.') . EOL);
     
    +	// clear session language
    +	unset($_SESSION['language']);
    +
     	$r = q("UPDATE `profile`
     		SET `publish` = %d,
     		`name` = '%s',
    @@ -915,6 +931,10 @@ function settings_content(&$a) {
     		$nosmile = get_pconfig(local_user(),'system','no_smilies');
     		$nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0
     
    +		$first_day_of_week = get_pconfig(local_user(),'system','first_day_of_week');
    +		$first_day_of_week = (($first_day_of_week===false)? '0': $first_day_of_week); // default if not set: 0
    +		$weekdays = array(0 => t("Sunday"), 1 => t("Monday"));
    +
     		$noinfo = get_pconfig(local_user(),'system','ignore_info');
     		$noinfo = (($noinfo===false)? '0': $noinfo); // default if not set: 0
     
    @@ -944,6 +964,8 @@ function settings_content(&$a) {
     			'$itemspage_network'   => array('itemspage_network',  t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')),
     			'$itemspage_mobile_network'   => array('itemspage_mobile_network',  t("Number of items to display per page when viewed from mobile device:"), $itemspage_mobile_network, t('Maximum of 100 items')),
     			'$nosmile'	=> array('nosmile', t("Don't show emoticons"), $nosmile, ''),
    +			'$calendar_title' => t('Calendar'),
    +			'$first_day_of_week'	=> array('first_day_of_week', t('Beginning of week:'), $first_day_of_week, '', $weekdays, false),
     			'$noinfo'	=> array('noinfo', t("Don't show notices"), $noinfo, ''),
     			'$infinite_scroll'	=> array('infinite_scroll', t("Infinite scroll"), $infinite_scroll, ''),
     			'$no_auto_update'	=> array('no_auto_update', t("Automatic updates only at the top of the network page"), $no_auto_update, 'When disabled, the network page is updated all the time, which could be confusing while reading.'),
    @@ -977,6 +999,7 @@ function settings_content(&$a) {
     	$email      = $a->user['email'];
     	$nickname   = $a->user['nickname'];
     	$timezone   = $a->user['timezone'];
    +	$language   = $a->user['language'];
     	$notify     = $a->user['notify-flags'];
     	$defloc     = $a->user['default-location'];
     	$openid     = $a->user['openid'];
    @@ -1160,6 +1183,8 @@ function settings_content(&$a) {
     	else
     		$public_post_link = '&public=1';
     
    +	/* Installed langs */
    +	$lang_choices = get_avaiable_languages();
     
     	$o .= replace_macros($stpl, array(
     		'$ptitle' 	=> t('Account Settings'),
    @@ -1182,6 +1207,7 @@ function settings_content(&$a) {
     		'$username' => array('username',  t('Full Name:'), $username,''),
     		'$email' 	=> array('email', t('Email Address:'), $email, '', '', '', 'email'),
     		'$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
    +		'$language' => array('language', t('Your Language:'), $language, t('Set the language we use to show you friendica interface and to send you emails'), $lang_choices),
     		'$defloc'	=> array('defloc', t('Default Post Location:'), $defloc, ''),
     		'$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
     
    @@ -1237,7 +1263,7 @@ function settings_content(&$a) {
     		'$notify8'  => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''),
     
             '$desktop_notifications' => array('desktop_notifications', t('Activate desktop notifications') , false, t('Show desktop popup on new notifications')),
    -                
    +
     		'$email_textonly' => array('email_textonly', t('Text-only notification emails'),
     									get_pconfig(local_user(),'system','email_textonly'),
     									t('Send text only notification emails, without the html part')),
    diff --git a/mod/statistics_json.php b/mod/statistics_json.php
    index 9f97d6ac74..21a9a0521c 100644
    --- a/mod/statistics_json.php
    +++ b/mod/statistics_json.php
    @@ -1,5 +1,9 @@
     get_baseurl() . '/' . $a->cmd;
     
    -	$a->page['aside'] .= follow_widget();
     	$a->page['aside'] .= findpeople_widget();
    -
    -
    -	$o .= replace_macros(get_markup_template("section_title.tpl"),array(
    -		'$title' => t('Friend Suggestions')
    -	));
    +	$a->page['aside'] .= follow_widget();
     
     
     	$r = suggestion_query(local_user());
    @@ -77,25 +72,45 @@ function suggest_content(&$a) {
     		return $o;
     	}
     
    -	$tpl = get_markup_template('suggest_friends.tpl');
    +	require_once 'include/contact_selectors.php';
     
     	foreach($r as $rr) {
     
    -		$connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']);			
    +		$connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']);
    +		$ignlnk = $a->get_baseurl() . '/suggest?ignore=' . $rr['id'];
    +		$photo_menu = array(array(t("View Profile"), zrl($rr["url"])));
    +		$photo_menu[] = array(t("Connect/Follow"), $connlnk);
    +		$photo_menu[] = array(t('Ignore/Hide'), $ignlnk);
    +		$contact_details = get_contact_details_by_url($rr["url"], local_user());
     
    -		$o .= replace_macros($tpl,array(
    -			'$url' => zrl($rr['url']),
    -			'$name' => $rr['name'],
    -			'$photo' => proxy_url($rr['photo']),
    -			'$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'],
    -			'$ignid' => $rr['id'],
    -			'$conntxt' => t('Connect'),
    -			'$connlnk' => $connlnk,
    -			'$ignore' => t('Ignore/Hide')
    -		));
    +		$entry = array(
    +			'url' => zrl($rr['url']),
    +			'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
    +			'img_hover' => $rr['url'],
    +			'name' => $rr['name'],
    +			'thumb' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB),
    +			'details'       => $contact_details['location'],
    +                        'tags'          => $contact_details['keywords'],
    +                        'about'         => $contact_details['about'],
    +			'ignlnk' => $ignlnk,
    +			'ignid' => $rr['id'],
    +			'conntxt' => t('Connect'),
    +			'connlnk' => $connlnk,
    +			'photo_menu' => $photo_menu,
    +			'ignore' => t('Ignore/Hide'),
    +			'network' => network_to_name($rr['network'], $rr['url']),
    +			'id' => ++$id,
    +		);
    +		$entries[] = $entry;
     	}
     
    -	$o .= cleardiv();
    -//	$o .= paginate($a);
    +	$tpl = get_markup_template('viewcontact_template.tpl');
    +
    +	$o .= replace_macros($tpl,array(
    +		'$title' => t('Friend Suggestions'),
    +		'$contacts' => $entries,
    +		
    +	));
    +
     	return $o;
     }
    diff --git a/mod/uimport.php b/mod/uimport.php
    index f61eab0a1b..ffa4f3ed72 100644
    --- a/mod/uimport.php
    +++ b/mod/uimport.php
    @@ -57,8 +57,8 @@ function uimport_content(&$a) {
     		unset($_SESSION['theme']);
     	if(x($_SESSION,'mobile-theme'))
     		unset($_SESSION['mobile-theme']);
    -	
    -	
    +
    +
         $tpl = get_markup_template("uimport.tpl");
         return replace_macros($tpl, array(
             '$regbutt' => t('Import'),
    @@ -66,8 +66,8 @@ function uimport_content(&$a) {
                 'title' => t("Move account"),
     			'intro' => t("You can import an account from another Friendica server."),
     			'instruct' => t("You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."),
    -			'warn' => t("This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"),
    +			'warn' => t("This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"),
                 'field' => array('accountfile', t('Account file'),'', t('To export your account, go to "Settings->Export your personal data" and select "Export account"')),
    -        ),  
    +        ),
         ));
     }
    diff --git a/mod/videos.php b/mod/videos.php
    index df47262f1d..4f5d7cd22d 100644
    --- a/mod/videos.php
    +++ b/mod/videos.php
    @@ -15,6 +15,8 @@ function videos_init(&$a) {
     		return;
     	}
     
    +	nav_set_selected('home');
    +
     	$o = '';
     
     	if($a->argc > 1) {
    @@ -111,10 +113,10 @@ function videos_post(&$a) {
     			$a->page['content'] = replace_macros(get_markup_template('confirm.tpl'), array(
     				'$method' => 'post',
     				'$message' => t('Do you really want to delete this video?'),
    -				'$extra_inputs' => [
    -					['name'=>'id', 'value'=> $_POST['id']],
    -					['name'=>'delete', 'value'=>'x']
    -				],
    +				'$extra_inputs' => array(
    +					array('name'=>'id', 'value'=> $_POST['id']),
    +					array('name'=>'delete', 'value'=>'x')
    +				),
     				'$confirm' => t('Delete Video'),
     				'$confirm_url' => $drop_url,
     				'$confirm_name' => 'confirm', // Needed so that confirmation will bring us back into this if statement
    diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php
    index b84856701d..f199574c69 100644
    --- a/mod/viewcontacts.php
    +++ b/mod/viewcontacts.php
    @@ -1,4 +1,5 @@
     profile['uid']);
    +
     		$contacts[] = array(
     			'id' => $rr['id'],
     			'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']),
    -			'thumb' => proxy_url($rr['thumb']),
    -			'name' => substr($rr['name'],0,20),
    -			'username' => $rr['name'],
    +			'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB),
    +			'name' => htmlentities(substr($rr['name'],0,20)),
    +			'username' => htmlentities($rr['name']),
    +			'details'       => $contact_details['location'],
    +                        'tags'          => $contact_details['keywords'],
    +                        'about'         => $contact_details['about'],
     			'url' => $url,
     			'sparkle' => '',
    -			'itemurl' => $rr['url'],
    +			'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
     			'network' => network_to_name($rr['network'], $rr['url']),
     		);
     	}
    diff --git a/mod/wall_attach.php b/mod/wall_attach.php
    index e11d749a3d..68752a0e1f 100644
    --- a/mod/wall_attach.php
    +++ b/mod/wall_attach.php
    @@ -13,12 +13,18 @@ function wall_attach_post(&$a) {
     			dbesc($nick)
     		);
     		if(! count($r)){
    -			if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); }
    +			if ($r_json) {
    +                            echo json_encode(array('error'=>t('Invalid request.')));
    +                            killme();
    +                        }
     			return;
             }
     
     	} else {
    -		if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); }
    +		if ($r_json) {
    +                    echo json_encode(array('error'=>t('Invalid request.')));
    +                    killme();
    +                }
     		return;
         }
     
    @@ -57,13 +63,18 @@ function wall_attach_post(&$a) {
     		}
     	}
     	if(! $can_post) {
    -		if ($r_json) { echo json_encode(['error'=>t('Permission denied.')]); killme(); }
    +		if ($r_json) {
    +                    echo json_encode(array('error'=>t('Permission denied.')));
    +                    killme();
    +                }
     		notice( t('Permission denied.') . EOL );
     		killme();
     	}
     
     	if(! x($_FILES,'userfile')) {
    -		if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); }
    +		if ($r_json) {
    +                    echo json_encode(array('error'=>t('Invalid request.')));
    +                }
     		killme();
     	}
     
    @@ -82,7 +93,7 @@ function wall_attach_post(&$a) {
     	if($filesize <=0) {
     		$msg = t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(t('Or - did you try to upload an empty file?'));
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			notice( $msg. EOL );
     		}
    @@ -93,7 +104,7 @@ function wall_attach_post(&$a) {
     	if(($maxfilesize) && ($filesize > $maxfilesize)) {
     		$msg = sprintf(t('File exceeds size limit of %s'), formatBytes($maxfilesize));
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			echo  $msg. EOL ;
     		}
    @@ -110,7 +121,7 @@ function wall_attach_post(&$a) {
     	if(($limit !== false) && (($r[0]['total'] + strlen($imagedata)) > $limit)) {
     		$msg = upgrade_message(true);
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			echo  $msg. EOL ;
     		}
    @@ -144,7 +155,7 @@ function wall_attach_post(&$a) {
     	if(! $r) {
     		$msg =  t('File upload failed.');
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			echo  $msg. EOL ;
     		}
    @@ -160,14 +171,17 @@ function wall_attach_post(&$a) {
     	if(! count($r)) {
     		$msg = t('File upload failed.');
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			echo  $msg. EOL ;
     		}
     		killme();
     	}
     
    -	if ($r_json) { echo json_encode(['ok'=>true]); killme(); }
    +	if ($r_json) {
    +            echo json_encode(array('ok'=>true));
    +            killme();
    +        }
     
     	$lf = "\n";
     
    diff --git a/mod/wall_upload.php b/mod/wall_upload.php
    index fce28c47d4..8bf471d3d2 100644
    --- a/mod/wall_upload.php
    +++ b/mod/wall_upload.php
    @@ -16,7 +16,10 @@ function wall_upload_post(&$a, $desktopmode = true) {
     			);
     
     			if(! count($r)){
    -				if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); }
    +				if ($r_json) {
    +				    echo json_encode(array('error'=>t('Invalid request.')));
    +				    killme();
    +				}
     				return;
     			}
     		} else {
    @@ -26,7 +29,10 @@ function wall_upload_post(&$a, $desktopmode = true) {
     			);
     		}
     	} else {
    -		if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); }
    +		if ($r_json) {
    +		    echo json_encode(array('error'=>t('Invalid request.')));
    +		    killme();
    +		}
     		return;
     	}
     
    @@ -67,13 +73,18 @@ function wall_upload_post(&$a, $desktopmode = true) {
     
     
     	if(! $can_post) {
    -		if ($r_json) { echo json_encode(['error'=>t('Permission denied.')]); killme(); }
    +		if ($r_json) {
    +		    echo json_encode(array('error'=>t('Permission denied.')));
    +		    killme();
    +		}
     		notice( t('Permission denied.') . EOL );
     		killme();
     	}
     
     	if(! x($_FILES,'userfile') && ! x($_FILES,'media')){
    -		if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); }
    +		if ($r_json) {
    +		    echo json_encode(array('error'=>t('Invalid request.')));
    +		}
     		killme();
     	}
     
    @@ -107,7 +118,10 @@ function wall_upload_post(&$a, $desktopmode = true) {
     	}
     
     	if ($src=="") {
    -		if ($r_json) { echo json_encode(['error'=>t('Invalid request.')]); killme(); }
    +		if ($r_json) {
    +		    echo json_encode(array('error'=>t('Invalid request.')));
    +		    killme();
    +		}
     		notice(t('Invalid request.').EOL);
     		killme();
     	}
    @@ -136,7 +150,7 @@ function wall_upload_post(&$a, $desktopmode = true) {
     	if(($maximagesize) && ($filesize > $maximagesize)) {
     		$msg = sprintf( t('Image exceeds size limit of %s'), formatBytes($maximagesize));
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			echo  $msg. EOL;
     		}
    @@ -153,7 +167,7 @@ function wall_upload_post(&$a, $desktopmode = true) {
     	if(($limit !== false) && (($r[0]['total'] + strlen($imagedata)) > $limit)) {
     		$msg = upgrade_message(true);
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			echo  $msg. EOL;
     		}
    @@ -168,7 +182,7 @@ function wall_upload_post(&$a, $desktopmode = true) {
     	if(! $ph->is_valid()) {
     		$msg = t('Unable to process image.');
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			echo  $msg. EOL;
     		}
    @@ -201,7 +215,7 @@ function wall_upload_post(&$a, $desktopmode = true) {
     	if(! $r) {
     		$msg = t('Image upload failed.');
     		if ($r_json) {
    -			echo json_encode(['error'=>$msg]);
    +			echo json_encode(array('error'=>$msg));
     		} else {
     			echo  $msg. EOL;
     		}
    @@ -228,7 +242,10 @@ function wall_upload_post(&$a, $desktopmode = true) {
     
     		$r = q("SELECT `id`, `datasize`, `width`, `height`, `type` FROM `photo` WHERE `resource-id` = '%s' ORDER BY `width` DESC LIMIT 1", $hash);
     		if (!$r){
    -			if ($r_json) { echo json_encode(['error'=>'']); killme(); }
    +			if ($r_json) {
    +			    echo json_encode(array('error'=>''));
    +			    killme();
    +			}
     			return false;
     		}
     		$picture = array();
    @@ -242,11 +259,17 @@ function wall_upload_post(&$a, $desktopmode = true) {
     		$picture["picture"] = $a->get_baseurl()."/photo/{$hash}-0.".$ph->getExt();
     		$picture["preview"] = $a->get_baseurl()."/photo/{$hash}-{$smallest}.".$ph->getExt();
     
    -		if ($r_json) { echo json_encode(['picture'=>$picture]); killme(); }
    +		if ($r_json) {
    +		    echo json_encode(array('picture'=>$picture));
    +		    killme();
    +		}
     		return $picture;
     	}
     
    -	if ($r_json) { echo json_encode(['ok'=>true]); killme(); }
    +	if ($r_json) {
    +	    echo json_encode(array('ok'=>true));
    +	    killme();
    +	}
     
     /* mod Waitman Gobble NO WARRANTY */
     
    diff --git a/object/Conversation.php b/object/Conversation.php
    index fd1e282cab..94eed94d5f 100644
    --- a/object/Conversation.php
    +++ b/object/Conversation.php
    @@ -126,7 +126,7 @@ class Conversation extends BaseObject {
     	 *      _ The data requested on success
     	 *      _ false on failure
     	 */
    -	public function get_template_data($alike, $dlike) {
    +	public function get_template_data($conv_responses) {
     		global $a;
     		$result = array();
     
    @@ -136,7 +136,7 @@ class Conversation extends BaseObject {
     			if($item->get_data_value('network') === NETWORK_MAIL && local_user() != $item->get_data_value('uid'))
     				continue;
     
    -			$item_data = $item->get_template_data($alike, $dlike);
    +			$item_data = $item->get_template_data($conv_responses);
     
     			if(!$item_data) {
     				logger('[ERROR] Conversation::get_template_data : Failed to get item template data ('. $item->get_id() .').', LOGGER_DEBUG);
    diff --git a/object/Item.php b/object/Item.php
    index 8d364e6023..04c1a707e3 100644
    --- a/object/Item.php
    +++ b/object/Item.php
    @@ -81,7 +81,7 @@ class Item extends BaseObject {
     	 *      _ The data requested on success
     	 *      _ false on failure
     	 */
    -	public function get_template_data($alike, $dlike, $thread_level=1) {
    +	public function get_template_data($conv_responses, $thread_level=1) {
     		require_once("mod/proxy.php");
     
     		$result = array();
    @@ -117,9 +117,12 @@ class Item extends BaseObject {
     			? t('Private Message')
     			: false);
     		$shareable = ((($conv->get_profile_owner() == local_user()) && ($item['private'] != 1)) ? true : false);
    -		if(local_user() && link_compare($a->contact['url'],$item['author-link']))
    -			$edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit"));
    -		else
    +		if(local_user() && link_compare($a->contact['url'],$item['author-link'])) {
    +			if ($item["event-id"] != 0)
    +				$edpost = array($a->get_baseurl($ssl_state)."/events/event/".$item['event-id'], t("Edit"));
    +			else
    +				$edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit"));
    +		} else
     			$edpost = false;
     		if(($this->get_data_value('uid') == local_user()) || $this->is_visiting())
     			$dropping = true;
    @@ -134,7 +137,7 @@ class Item extends BaseObject {
     		$filer = (($conv->get_profile_owner() == local_user()) ? t("save to folder") : false);
     
     		$diff_author    = ((link_compare($item['url'],$item['author-link'])) ? false : true);
    -		$profile_name   = (((strlen($item['author-name']))   && $diff_author) ? $item['author-name']   : $item['name']);
    +		$profile_name   = htmlentities(((strlen($item['author-name']))   && $diff_author) ? $item['author-name']   : $item['name']);
     		if($item['author-link'] && (! $item['author-name']))
     			$profile_name = $item['author-link'];
     
    @@ -175,8 +178,26 @@ class Item extends BaseObject {
     			}
     		}*/
     
    -		$like    = ((x($alike,$item['uri'])) ? format_like($alike[$item['uri']],$alike[$item['uri'] . '-l'],'like',$item['uri']) : '');
    -		$dislike = ((x($dlike,$item['uri'])) ? format_like($dlike[$item['uri']],$dlike[$item['uri'] . '-l'],'dislike',$item['uri']) : '');
    +		// process action responses - e.g. like/dislike/attend/agree/whatever
    +		$response_verbs = array('like');
    +		if(feature_enabled($conv->get_profile_owner(),'dislike'))
    +			$response_verbs[] = 'dislike';
    +		if($item['object-type'] === ACTIVITY_OBJ_EVENT) {
    +			$response_verbs[] = 'attendyes';
    +			$response_verbs[] = 'attendno';
    +			$response_verbs[] = 'attendmaybe';
    +			if($conv->is_writable()) {
    +				$isevent = true;
    +				$attend = array( t('I will attend'), t('I will not attend'), t('I might attend'));
    +			}
    +		}
    +
    +		$responses = get_responses($conv_responses,$response_verbs,$this,$item);
    +
    +		foreach ($response_verbs as $value=>$verbs) {
    +			$responses[$verbs][output]  = ((x($conv_responses[$verbs],$item['uri'])) ? format_like($conv_responses[$verbs][$item['uri']],$conv_responses[$verbs][$item['uri'] . '-l'],$verbs,$item['uri']) : '');
    +
    +		}
     
     		/*
     		 * We should avoid doing this all the time, but it depends on the conversation mode
    @@ -235,6 +256,8 @@ class Item extends BaseObject {
     			if ($shareable) $buttons['share'] = array( t('Share this'), t('share'));
     		}
     
    +		$comment = $this->get_comment_box($indent);
    +
     		if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0){
     			$shiny = 'shiny';
     		}
    @@ -289,7 +312,7 @@ class Item extends BaseObject {
     
     		// Disable features that aren't available in several networks
     		if (($item["item_network"] != NETWORK_DFRN) AND isset($buttons["dislike"])) {
    -			unset($buttons["dislike"]);
    +			unset($buttons["dislike"],$isevent);
     			$tagger = '';
     		}
     
    @@ -304,6 +327,10 @@ class Item extends BaseObject {
     			!diaspora_is_redmatrix($item["owner-link"]) AND isset($buttons["like"]))
     			unset($buttons["like"]);
     
    +		// Diaspora doesn't has multithreaded comments
    +		if (($item["item_network"] == NETWORK_DIASPORA) AND ($indent == 'comment'))
    +			unset($comment);
    +
     		// Facebook can like comments - but it isn't programmed in the connector yet.
     		if (($item["item_network"] == NETWORK_FACEBOOK) AND ($indent == 'comment') AND isset($buttons["like"]))
     			unset($buttons["like"]);
    @@ -325,8 +352,10 @@ class Item extends BaseObject {
     			'text' => $text_e,
     			'id' => $this->get_id(),
     			'guid' => urlencode($item['guid']),
    +			'isevent' => $isevent,
    +			'attend' => $attend,
     			'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
    -			'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
    +			'olinktitle' => sprintf( t('View %s\'s profile @ %s'), htmlentities($this->get_owner_name()), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
     			'to' => t('to'),
     			'via' => t('via'),
     			'wall' => t('Wall-to-Wall'),
    @@ -334,7 +363,7 @@ class Item extends BaseObject {
     			'profile_url' => $profile_link,
     			'item_photo_menu' => item_photo_menu($item),
     			'name' => $name_e,
    -			'thumb' => proxy_url($profile_avatar),
    +			'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB),
     			'osparkle' => $osparkle,
     			'sparkle' => $sparkle,
     			'title' => $title_e,
    @@ -347,8 +376,8 @@ class Item extends BaseObject {
     			'indent' => $indent,
     			'shiny' => $shiny,
     			'owner_url' => $this->get_owner_url(),
    -			'owner_photo' => proxy_url($this->get_owner_photo()),
    -			'owner_name' => $owner_name_e,
    +			'owner_photo' => proxy_url($this->get_owner_photo(), false, PROXY_SIZE_THUMB),
    +			'owner_name' => htmlentities($owner_name_e),
     			'plink' => get_plink($item),
     			'edpost'    => ((feature_enabled($conv->get_profile_owner(),'edit_posts')) ? $edpost : ''),
     			'isstarred' => $isstarred,
    @@ -358,15 +387,16 @@ class Item extends BaseObject {
     			'filer'     => ((feature_enabled($conv->get_profile_owner(),'filing')) ? $filer : ''),
     			'drop' => $drop,
     			'vote' => $buttons,
    -			'like' => $like,
    -                        'dislike'   => $dislike,
    +			'like' => $responses['like']['output'],
    +			'dislike'   => $responses['dislike']['output'],
    +			'responses' => $responses,
     			'switchcomment' => t('Comment'),
    -			'comment' => $this->get_comment_box($indent),
    +			'comment' => $comment,
     			'previewing' => ($conv->is_preview() ? ' preview ' : ''),
     			'wait' => t('Please wait'),
     			'thread_level' => $thread_level,
    -                        'postopts' => $langstr,
    -                        'edited' => $edited,
    +			'postopts' => $langstr,
    +			'edited' => $edited,
     			'network' => $item["item_network"],
     			'network_name' => network_to_name($item['item_network'], $profile_link),
     		);
    @@ -381,7 +411,7 @@ class Item extends BaseObject {
     		$nb_children = count($children);
     		if($nb_children > 0) {
     			foreach($children as $child) {
    -				$result['children'][] = $child->get_template_data($alike, $dlike, $thread_level + 1);
    +				$result['children'][] = $child->get_template_data($conv_responses, $thread_level + 1);
     			}
     			// Collapse
     			if(($nb_children > 2) || ($thread_level > 1)) {
    @@ -523,7 +553,7 @@ class Item extends BaseObject {
     	 */
     	public function set_conversation($conv) {
     		$previous_mode = ($this->conversation ? $this->conversation->get_mode() : '');
    -		
    +
     		$this->conversation = $conv;
     
     		// Set it on our children too
    @@ -644,7 +674,7 @@ class Item extends BaseObject {
     		if(!$this->is_toplevel() && !(get_config('system','thread_allow') && $a->theme_thread_allow)) {
     			return '';
     		}
    -		
    +
     		$comment_box = '';
     		$conv = $this->get_conversation();
     		$template = get_markup_template($this->get_comment_box_template());
    diff --git a/update.php b/update.php
    index 761da7273d..caa167617c 100644
    --- a/update.php
    +++ b/update.php
    @@ -1,6 +1,6 @@
     config['system']['no_regfullname'] = true;
     
     // Location of the global directory
     $a->config['system']['directory'] = 'http://dir.friendi.ca';
    +
    +// turn on friendica's log
    +$a->config['system']['debugging'] = true;
    +$a->config['system']['logfile'] = 'logfile.out';
    +$a->config['system']['loglevel'] = LOGGER_DEBUG;
    +
    diff --git a/util/make_credits.py b/util/make_credits.py
    new file mode 100755
    index 0000000000..404b059133
    --- /dev/null
    +++ b/util/make_credits.py
    @@ -0,0 +1,104 @@
    +#!/usr/bin/env python3
    +# -*- coding: utf-8 -*-
    +
    +"""
    +This script will collect the contributors to friendica and its translations from
    +  * the git log of the friendica core and addons repositories
    +  * the translated messages.po from core and the addons.
    +The collected names will be saved in /util/credits.txt which is also parsed from
    +yourfriendica.tld/credits.
    +
    +The output is not perfect, so remember to open a fresh (re)created credits.txt file
    +in your fav editor to check for obvious mistakes and doubled entries.
    +
    +Initially written by Tobias Diekershoff for the Friendica Project. Released under
    +the terms of the AGPL version 3 or later, same as Friendica.
    +"""
    +
    +from sys import argv
    +import os, glob, subprocess
    +
    +#  a list of names to not include, those people get into the list by other names
    +#  but they use different names on different systems and automatical mapping does
    +#  not work in some cases.
    +dontinclude = ['root', 'friendica', 'bavatar', 'tony baldwin', 'Taek', 'silke m',
    +               'leberwurscht', 'abinoam', 'fabrixxm', 'FULL NAME', 'Hauke Zuehl',
    +               'Michal Supler', 'michal_s', 'Manuel Pérez']
    +
    +
    +#  this script is in the /util sub-directory of the friendica installation
    +#  so the friendica path is the 0th argument of calling this script but we
    +#  need to remove the name of the file and the name of the directory
    +path = os.path.abspath(argv[0].split('util/make_credits.py')[0])
    +print('> base directory is assumed to be: '+path)
    +#  a place to store contributors
    +contributors = ['Andi Stadler']
    +#  get the contributors
    +print('> getting contributors to the friendica core repository')
    +p = subprocess.Popen(['git', 'shortlog', '--no-merges', '-s'],
    +                         stdout=subprocess.PIPE,
    +                         stderr=subprocess.STDOUT)
    +c = iter(p.stdout.readline, b'')
    +for i in c:
    +    name = i.decode().split('\t')[1].split('\n')[0]
    +    if not name in contributors and name not in dontinclude:
    +        contributors.append(name)
    +n1 = len(contributors)
    +print('  > found %d contributors' % n1)
    +#  get the contributors to the addons
    +os.chdir(path+'/addon')
    +#  get the contributors
    +print('> getting contributors to the addons')
    +p = subprocess.Popen(['git', 'shortlog', '--no-merges', '-s'],
    +                         stdout=subprocess.PIPE,
    +                         stderr=subprocess.STDOUT)
    +c = iter(p.stdout.readline, b'')
    +for i in c:
    +    name = i.decode().split('\t')[1].split('\n')[0]
    +    if not name in contributors and name not in dontinclude:
    +        contributors.append(name)
    +n2 = len(contributors)
    +print('  > found %d new contributors' % (n2-n1))
    +print('> total of %d contributors to the repositories of friendica' % n2)
    +os.chdir(path)
    +#  get the translators
    +print('> getting translators')
    +intrans = False
    +for f in glob.glob(path+'/view/*/messages.po'):
    +    i = open(f, 'r')
    +    l = i.readlines()
    +    i.close()
    +    for ll in l:
    +        if intrans and ll.strip()=='':
    +            intrans = False;
    +        if intrans and ll[0]=='#':
    +            name = ll.split('# ')[1].split(',')[0].split(' <')[0]
    +            if not name in contributors and name not in dontinclude:
    +                contributors.append(name)
    +        if "# Translators:" in ll:
    +            intrans = True
    +#  get the translators from the addons
    +for f in glob.glob(path+'/addon/*/lang/*/messages.po'):
    +    i = open(f, 'r')
    +    l = i.readlines()
    +    i.close()
    +    for ll in l:
    +        if intrans and ll.strip()=='':
    +            intrans = False;
    +        if intrans and ll[0]=='#':
    +            name = ll.split('# ')[1].split(',')[0].split(' <')[0]
    +            if not name in contributors and name not in dontinclude:
    +                contributors.append(name)
    +        if "# Translators:" in ll:
    +            intrans = True
    +#  done with the translators
    +
    +n3 = len(contributors)
    +print('  > found %d translators' % (n3-n2))
    +print('> found a total of %d contributors and translators' % n3)
    +contributors.sort(key=str.lower)
    +
    +f = open(path+'/util/credits.txt', 'w')
    +f.write("\n".join(contributors))
    +f.close()
    +print('> list saved to util/credits.txt')
    diff --git a/util/messages.po b/util/messages.po
    index a6792943bd..5388b94daf 100644
    --- a/util/messages.po
    +++ b/util/messages.po
    @@ -6,9 +6,9 @@
     #, fuzzy
     msgid ""
     msgstr ""
    -"Project-Id-Version: 3.4.1\n"
    +"Project-Id-Version: \n"
     "Report-Msgid-Bugs-To: \n"
    -"POT-Creation-Date: 2015-09-22 09:58+0200\n"
    +"POT-Creation-Date: 2015-11-08 21:46+0100\n"
     "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
     "Last-Translator: FULL NAME \n"
     "Language-Team: LANGUAGE \n"
    @@ -18,3518 +18,513 @@ msgstr ""
     "Content-Transfer-Encoding: 8bit\n"
     
     
    -#: object/Item.php:95
    -msgid "This entry was edited"
    -msgstr ""
    -
    -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622
    -msgid "Private Message"
    -msgstr ""
    -
    -#: object/Item.php:121 mod/settings.php:694 mod/content.php:730
    -msgid "Edit"
    -msgstr ""
    -
    -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439
    -#: mod/content.php:742 include/conversation.php:612
    -msgid "Select"
    -msgstr ""
    -
    -#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673
    -#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171
    -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613
    -msgid "Delete"
    -msgstr ""
    -
    -#: object/Item.php:134 mod/content.php:765
    -msgid "save to folder"
    -msgstr ""
    -
    -#: object/Item.php:196 mod/content.php:755
    -msgid "add star"
    -msgstr ""
    -
    -#: object/Item.php:197 mod/content.php:756
    -msgid "remove star"
    -msgstr ""
    -
    -#: object/Item.php:198 mod/content.php:757
    -msgid "toggle star status"
    -msgstr ""
    -
    -#: object/Item.php:201 mod/content.php:760
    -msgid "starred"
    -msgstr ""
    -
    -#: object/Item.php:209
    -msgid "ignore thread"
    -msgstr ""
    -
    -#: object/Item.php:210
    -msgid "unignore thread"
    -msgstr ""
    -
    -#: object/Item.php:211
    -msgid "toggle ignore status"
    -msgstr ""
    -
    -#: object/Item.php:214 mod/ostatus_subscribe.php:69
    -msgid "ignored"
    -msgstr ""
    -
    -#: object/Item.php:221 mod/content.php:761
    -msgid "add tag"
    -msgstr ""
    -
    -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686
    -msgid "I like this (toggle)"
    -msgstr ""
    -
    -#: object/Item.php:232 mod/content.php:686
    -msgid "like"
    -msgstr ""
    -
    -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687
    -msgid "I don't like this (toggle)"
    -msgstr ""
    -
    -#: object/Item.php:233 mod/content.php:687
    -msgid "dislike"
    -msgstr ""
    -
    -#: object/Item.php:235 mod/content.php:689
    -msgid "Share this"
    -msgstr ""
    -
    -#: object/Item.php:235 mod/content.php:689
    -msgid "share"
    -msgstr ""
    -
    -#: object/Item.php:318 include/conversation.php:665
    -msgid "Categories:"
    -msgstr ""
    -
    -#: object/Item.php:319 include/conversation.php:666
    -msgid "Filed under:"
    -msgstr ""
    -
    -#: object/Item.php:328 object/Item.php:329 mod/content.php:473
    -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653
    -#, php-format
    -msgid "View %s's profile @ %s"
    -msgstr ""
    -
    -#: object/Item.php:330 mod/content.php:856
    -msgid "to"
    -msgstr ""
    -
    -#: object/Item.php:331
    -msgid "via"
    -msgstr ""
    -
    -#: object/Item.php:332 mod/content.php:857
    -msgid "Wall-to-Wall"
    -msgstr ""
    -
    -#: object/Item.php:333 mod/content.php:858
    -msgid "via Wall-To-Wall:"
    -msgstr ""
    -
    -#: object/Item.php:342 mod/content.php:483 mod/content.php:866
    -#: include/conversation.php:673
    -#, php-format
    -msgid "%s from %s"
    -msgstr ""
    -
    -#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583
    -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764
    -msgid "Comment"
    -msgstr ""
    -
    -#: object/Item.php:366 mod/message.php:335 mod/message.php:566
    -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564
    -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691
    -#: include/conversation.php:1074
    -msgid "Please wait"
    -msgstr ""
    -
    -#: object/Item.php:389 mod/content.php:605
    -#, php-format
    -msgid "%d comment"
    -msgid_plural "%d comments"
    -msgstr[0] ""
    -msgstr[1] ""
    -
    -#: object/Item.php:391 object/Item.php:404 mod/content.php:607
    -#: include/text.php:2038
    -msgid "comment"
    -msgid_plural "comments"
    -msgstr[0] ""
    -msgstr[1] ""
    -
    -#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147
    -#: include/contact_widgets.php:205
    -msgid "show more"
    -msgstr ""
    -
    -#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625
    -#: mod/photos.php:1713 mod/content.php:709
    -msgid "This is you"
    -msgstr ""
    -
    -#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336
    -#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104
    -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584
    -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596
    -#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199
    -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288
    -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191
    -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148
    -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70
    -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64
    -#: view/theme/cleanzero/config.php:80
    -msgid "Submit"
    -msgstr ""
    -
    -#: object/Item.php:681 mod/content.php:713
    -msgid "Bold"
    -msgstr ""
    -
    -#: object/Item.php:682 mod/content.php:714
    -msgid "Italic"
    -msgstr ""
    -
    -#: object/Item.php:683 mod/content.php:715
    -msgid "Underline"
    -msgstr ""
    -
    -#: object/Item.php:684 mod/content.php:716
    -msgid "Quote"
    -msgstr ""
    -
    -#: object/Item.php:685 mod/content.php:717
    -msgid "Code"
    -msgstr ""
    -
    -#: object/Item.php:686 mod/content.php:718
    -msgid "Image"
    -msgstr ""
    -
    -#: object/Item.php:687 mod/content.php:719
    -msgid "Link"
    -msgstr ""
    -
    -#: object/Item.php:688 mod/content.php:720
    -msgid "Video"
    -msgstr ""
    -
    -#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509
    -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717
    -#: mod/content.php:721 include/conversation.php:1089
    -msgid "Preview"
    -msgstr ""
    -
    -#: index.php:225 mod/apps.php:7
    -msgid "You must be logged in to use addons. "
    -msgstr ""
    -
    -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25
    -msgid "Not Found"
    -msgstr ""
    -
    -#: index.php:272 mod/help.php:45
    -msgid "Page not found."
    -msgstr ""
    -
    -#: index.php:381 mod/profperm.php:19 mod/group.php:72
    -msgid "Permission denied"
    -msgstr ""
    -
    -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170
    -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175
    -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164
    -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79
    -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70
    -#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156
    -#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33
    -#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83
    -#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15
    -#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116
    -#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165
    -#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61
    -#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96
    -#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20
    -#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19
    -#: mod/profile_photo.php:169 mod/profile_photo.php:180
    -#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110
    -#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4
    -#: mod/crepair.php:120 include/items.php:5036
    -msgid "Permission denied."
    -msgstr ""
    -
    -#: index.php:441
    -msgid "toggle mobile"
    -msgstr ""
    -
    -#: mod/update_notes.php:37 mod/update_profile.php:41
    -#: mod/update_community.php:18 mod/update_network.php:25
    -#: mod/update_display.php:22
    -msgid "[Embedded content - reload page to view]"
    -msgstr ""
    -
    -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120
    -#: mod/crepair.php:134
    -msgid "Contact not found."
    -msgstr ""
    -
    -#: mod/fsuggest.php:63
    -msgid "Friend suggestion sent."
    -msgstr ""
    -
    -#: mod/fsuggest.php:97
    -msgid "Suggest Friends"
    -msgstr ""
    -
    -#: mod/fsuggest.php:99
    -#, php-format
    -msgid "Suggest a friend for %s"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:95
    -msgid "This introduction has already been accepted."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518
    -msgid "Profile location is not valid or does not contain profile information."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523
    -msgid "Warning: profile location has no identifiable owner name."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525
    -msgid "Warning: profile location has no profile photo."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528
    -#, php-format
    -msgid "%d required parameter was not found at the given location"
    -msgid_plural "%d required parameters were not found at the given location"
    -msgstr[0] ""
    -msgstr[1] ""
    -
    -#: mod/dfrn_request.php:172
    -msgid "Introduction complete."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:214
    -msgid "Unrecoverable protocol error."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:242
    -msgid "Profile unavailable."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:267
    -#, php-format
    -msgid "%s has received too many connection requests today."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:268
    -msgid "Spam protection measures have been invoked."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:269
    -msgid "Friends are advised to please try again in 24 hours."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:331
    -msgid "Invalid locator"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:340
    -msgid "Invalid email address."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:367
    -msgid "This account has not been configured for email. Request failed."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:463
    -msgid "Unable to resolve your name at the provided location."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:476
    -msgid "You have already introduced yourself here."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:480
    -#, php-format
    -msgid "Apparently you are already friends with %s."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:501
    -msgid "Invalid profile URL."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:507 include/follow.php:70
    -msgid "Disallowed profile URL."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:576 mod/contacts.php:194
    -msgid "Failed to update contact record."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:597
    -msgid "Your introduction has been sent."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:650
    -msgid "Please login to confirm introduction."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:660
    -msgid ""
    -"Incorrect identity currently logged in. Please login to this profile."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691
    -msgid "Confirm"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:686
    -msgid "Hide this contact"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:689
    -#, php-format
    -msgid "Welcome home %s."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:690
    -#, php-format
    -msgid "Please confirm your introduction/connection request to %s."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250
    -msgid "[Name Withheld]"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187
    -#: mod/search.php:93 mod/search.php:98 mod/display.php:223
    -#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35
    -msgid "Public access denied."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:819
    -msgid ""
    -"Please enter your 'Identity Address' from one of the following supported "
    -"communications networks:"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:840
    -#, php-format
    -msgid ""
    -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:845
    -msgid "Friend/Connection Request"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:846
    -msgid ""
    -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
    -"testuser@identi.ca"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:847 mod/follow.php:58
    -msgid "Please answer the following:"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:848 mod/follow.php:59
    -#, php-format
    -msgid "Does %s know you?"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236
    -#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074
    -#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091
    -#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109
    -#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137
    -#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658
    -#: mod/profiles.php:662
    -msgid "No"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105
    -#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59
    -#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082
    -#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097
    -#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135
    -#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138
    -#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661
    -#: mod/suggest.php:29 include/items.php:4868
    -msgid "Yes"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:852 mod/follow.php:60
    -msgid "Add a personal note:"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:854 include/contact_selectors.php:76
    -msgid "Friendica"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:855
    -msgid "StatusNet/Federated Social Web"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:856 mod/settings.php:793
    -#: include/contact_selectors.php:80
    -msgid "Diaspora"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:857
    -#, php-format
    -msgid ""
    -" - please do not use this form.  Instead, enter %s into your Diaspora search "
    -"bar."
    -msgstr ""
    -
    -#: mod/dfrn_request.php:858 mod/follow.php:66
    -msgid "Your Identity Address:"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:861 mod/follow.php:69
    -msgid "Submit Request"
    -msgstr ""
    -
    -#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148
    -#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225
    -#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121
    -#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633
    -#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871
    -#: include/conversation.php:1093
    -msgid "Cancel"
    -msgstr ""
    -
    -#: mod/files.php:156 mod/videos.php:373 include/text.php:1460
    -msgid "View Video"
    -msgstr ""
    -
    -#: mod/profile.php:21 include/identity.php:77
    -msgid "Requested profile is not available."
    -msgstr ""
    -
    -#: mod/profile.php:155 mod/display.php:343
    -msgid "Access to this profile has been restricted."
    -msgstr ""
    -
    -#: mod/profile.php:179
    -msgid "Tips for New Members"
    -msgstr ""
    -
    -#: mod/notifications.php:26
    -msgid "Invalid request identifier."
    -msgstr ""
    -
    -#: mod/notifications.php:35 mod/notifications.php:175
    -#: mod/notifications.php:234
    -msgid "Discard"
    -msgstr ""
    -
    -#: mod/notifications.php:51 mod/notifications.php:174
    -#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623
    -#: mod/contacts.php:799
    -msgid "Ignore"
    -msgstr ""
    -
    -#: mod/notifications.php:78
    -msgid "System"
    -msgstr ""
    -
    -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153
    -msgid "Network"
    -msgstr ""
    -
    -#: mod/notifications.php:90 mod/network.php:375
    -msgid "Personal"
    -msgstr ""
    -
    -#: mod/notifications.php:96 view/theme/diabook/theme.php:123
    -#: include/nav.php:105 include/nav.php:156
    -msgid "Home"
    -msgstr ""
    -
    -#: mod/notifications.php:102 include/nav.php:161
    -msgid "Introductions"
    -msgstr ""
    -
    -#: mod/notifications.php:127
    -msgid "Show Ignored Requests"
    -msgstr ""
    -
    -#: mod/notifications.php:127
    -msgid "Hide Ignored Requests"
    -msgstr ""
    -
    -#: mod/notifications.php:159 mod/notifications.php:209
    -msgid "Notification type: "
    -msgstr ""
    -
    -#: mod/notifications.php:160
    -msgid "Friend Suggestion"
    -msgstr ""
    -
    -#: mod/notifications.php:162
    -#, php-format
    -msgid "suggested by %s"
    -msgstr ""
    -
    -#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629
    -msgid "Hide this contact from others"
    -msgstr ""
    -
    -#: mod/notifications.php:168 mod/notifications.php:228
    -msgid "Post a new friend activity"
    -msgstr ""
    -
    -#: mod/notifications.php:168 mod/notifications.php:228
    -msgid "if applicable"
    -msgstr ""
    -
    -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085
    -msgid "Approve"
    -msgstr ""
    -
    -#: mod/notifications.php:191
    -msgid "Claims to be known to you: "
    -msgstr ""
    -
    -#: mod/notifications.php:191
    -msgid "yes"
    -msgstr ""
    -
    -#: mod/notifications.php:191
    -msgid "no"
    -msgstr ""
    -
    -#: mod/notifications.php:192
    -msgid ""
    -"Shall your connection be bidirectional or not? \"Friend\" implies that you "
    -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
    -"you allow to read but you do not want to read theirs. Approve as: "
    -msgstr ""
    -
    -#: mod/notifications.php:195
    -msgid ""
    -"Shall your connection be bidirectional or not? \"Friend\" implies that you "
    -"allow to read and you subscribe to their posts. \"Sharer\" means that you "
    -"allow to read but you do not want to read theirs. Approve as: "
    -msgstr ""
    -
    -#: mod/notifications.php:203
    -msgid "Friend"
    -msgstr ""
    -
    -#: mod/notifications.php:204
    -msgid "Sharer"
    -msgstr ""
    -
    -#: mod/notifications.php:204
    -msgid "Fan/Admirer"
    -msgstr ""
    -
    -#: mod/notifications.php:210
    -msgid "Friend/Connect Request"
    -msgstr ""
    -
    -#: mod/notifications.php:210
    -msgid "New Follower"
    -msgstr ""
    -
    -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503
    -#: mod/directory.php:152 include/event.php:42 include/identity.php:268
    -#: include/bb2diaspora.php:170
    -msgid "Location:"
    -msgstr ""
    -
    -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277
    -#: include/identity.php:582
    -msgid "About:"
    -msgstr ""
    -
    -#: mod/notifications.php:224 include/identity.php:576
    -msgid "Tags:"
    -msgstr ""
    -
    -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270
    -#: include/identity.php:541
    -msgid "Gender:"
    -msgstr ""
    -
    -#: mod/notifications.php:240
    -msgid "No introductions."
    -msgstr ""
    -
    -#: mod/notifications.php:243 include/nav.php:164
    -msgid "Notifications"
    -msgstr ""
    -
    -#: mod/notifications.php:281 mod/notifications.php:410
    -#: mod/notifications.php:501
    -#, php-format
    -msgid "%s liked %s's post"
    -msgstr ""
    -
    -#: mod/notifications.php:291 mod/notifications.php:420
    -#: mod/notifications.php:511
    -#, php-format
    -msgid "%s disliked %s's post"
    -msgstr ""
    -
    -#: mod/notifications.php:306 mod/notifications.php:435
    -#: mod/notifications.php:526
    -#, php-format
    -msgid "%s is now friends with %s"
    -msgstr ""
    -
    -#: mod/notifications.php:313 mod/notifications.php:442
    -#, php-format
    -msgid "%s created a new post"
    -msgstr ""
    -
    -#: mod/notifications.php:314 mod/notifications.php:443
    -#: mod/notifications.php:536
    -#, php-format
    -msgid "%s commented on %s's post"
    -msgstr ""
    -
    -#: mod/notifications.php:329
    -msgid "No more network notifications."
    -msgstr ""
    -
    -#: mod/notifications.php:333
    -msgid "Network Notifications"
    -msgstr ""
    -
    -#: mod/notifications.php:359 mod/notify.php:72
    -msgid "No more system notifications."
    -msgstr ""
    -
    -#: mod/notifications.php:363 mod/notify.php:76
    -msgid "System Notifications"
    -msgstr ""
    -
    -#: mod/notifications.php:458
    -msgid "No more personal notifications."
    -msgstr ""
    -
    -#: mod/notifications.php:462
    -msgid "Personal Notifications"
    -msgstr ""
    -
    -#: mod/notifications.php:543
    -msgid "No more home notifications."
    -msgstr ""
    -
    -#: mod/notifications.php:547
    -msgid "Home Notifications"
    -msgstr ""
    -
    -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87
    -#: view/theme/diabook/theme.php:471 include/text.php:2034
    -#: include/diaspora.php:2134 include/conversation.php:126
    -#: include/conversation.php:253
    -msgid "photo"
    -msgstr ""
    -
    -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87
    -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
    -#: include/diaspora.php:2134 include/conversation.php:121
    -#: include/conversation.php:130 include/conversation.php:248
    -#: include/conversation.php:257
    -msgid "status"
    -msgstr ""
    -
    -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150
    -#: include/conversation.php:137
    -#, php-format
    -msgid "%1$s likes %2$s's %3$s"
    -msgstr ""
    -
    -#: mod/like.php:168 include/conversation.php:140
    -#, php-format
    -msgid "%1$s doesn't like %2$s's %3$s"
    -msgstr ""
    -
    -#: mod/openid.php:24
    -msgid "OpenID protocol error. No ID returned."
    -msgstr ""
    -
    -#: mod/openid.php:53
    -msgid ""
    -"Account not found and OpenID registration is not permitted on this site."
    -msgstr ""
    -
    -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175
    -msgid "Login failed."
    -msgstr ""
    -
    -#: mod/babel.php:17
    -msgid "Source (bbcode) text:"
    -msgstr ""
    -
    -#: mod/babel.php:23
    -msgid "Source (Diaspora) text to convert to BBcode:"
    -msgstr ""
    -
    -#: mod/babel.php:31
    -msgid "Source input: "
    -msgstr ""
    -
    -#: mod/babel.php:35
    -msgid "bb2html (raw HTML): "
    -msgstr ""
    -
    -#: mod/babel.php:39
    -msgid "bb2html: "
    -msgstr ""
    -
    -#: mod/babel.php:43
    -msgid "bb2html2bb: "
    -msgstr ""
    -
    -#: mod/babel.php:47
    -msgid "bb2md: "
    -msgstr ""
    -
    -#: mod/babel.php:51
    -msgid "bb2md2html: "
    -msgstr ""
    -
    -#: mod/babel.php:55
    -msgid "bb2dia2bb: "
    -msgstr ""
    -
    -#: mod/babel.php:59
    -msgid "bb2md2html2bb: "
    -msgstr ""
    -
    -#: mod/babel.php:69
    -msgid "Source input (Diaspora format): "
    -msgstr ""
    -
    -#: mod/babel.php:74
    -msgid "diaspora2bb: "
    -msgstr ""
    -
    -#: mod/admin.php:57
    -msgid "Theme settings updated."
    -msgstr ""
    -
    -#: mod/admin.php:104 mod/admin.php:687
    -msgid "Site"
    -msgstr ""
    -
    -#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093
    -msgid "Users"
    -msgstr ""
    -
    -#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66
    -msgid "Plugins"
    -msgstr ""
    -
    -#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444
    -msgid "Themes"
    -msgstr ""
    -
    -#: mod/admin.php:108
    -msgid "DB updates"
    -msgstr ""
    -
    -#: mod/admin.php:109 mod/admin.php:200
    -msgid "Inspect Queue"
    -msgstr ""
    -
    -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531
    -msgid "Logs"
    -msgstr ""
    -
    -#: mod/admin.php:125
    -msgid "probe address"
    -msgstr ""
    -
    -#: mod/admin.php:126
    -msgid "check webfinger"
    -msgstr ""
    -
    -#: mod/admin.php:131 include/nav.php:193
    -msgid "Admin"
    -msgstr ""
    -
    -#: mod/admin.php:132
    -msgid "Plugin Features"
    -msgstr ""
    -
    -#: mod/admin.php:134
    -msgid "diagnostics"
    -msgstr ""
    -
    -#: mod/admin.php:135
    -msgid "User registrations waiting for confirmation"
    -msgstr ""
    -
    -#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15
    -#: mod/display.php:82 mod/display.php:295 mod/display.php:512
    -#: mod/viewsrc.php:15 include/items.php:4827
    -msgid "Item not found."
    -msgstr ""
    -
    -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077
    -#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443
    -#: mod/admin.php:1530
    -msgid "Administration"
    -msgstr ""
    -
    -#: mod/admin.php:202
    -msgid "ID"
    -msgstr ""
    -
    -#: mod/admin.php:203
    -msgid "Recipient Name"
    -msgstr ""
    -
    -#: mod/admin.php:204
    -msgid "Recipient Profile"
    -msgstr ""
    -
    -#: mod/admin.php:206
    -msgid "Created"
    -msgstr ""
    -
    -#: mod/admin.php:207
    -msgid "Last Tried"
    -msgstr ""
    -
    -#: mod/admin.php:208
    -msgid ""
    -"This page lists the content of the queue for outgoing postings. These are "
    -"postings the initial delivery failed for. They will be resend later and "
    -"eventually deleted if the delivery fails permanently."
    -msgstr ""
    -
    -#: mod/admin.php:220 mod/admin.php:1031
    -msgid "Normal Account"
    -msgstr ""
    -
    -#: mod/admin.php:221 mod/admin.php:1032
    -msgid "Soapbox Account"
    -msgstr ""
    -
    -#: mod/admin.php:222 mod/admin.php:1033
    -msgid "Community/Celebrity Account"
    -msgstr ""
    -
    -#: mod/admin.php:223 mod/admin.php:1034
    -msgid "Automatic Friend Account"
    -msgstr ""
    -
    -#: mod/admin.php:224
    -msgid "Blog Account"
    -msgstr ""
    -
    -#: mod/admin.php:225
    -msgid "Private Forum"
    -msgstr ""
    -
    -#: mod/admin.php:244
    -msgid "Message queues"
    -msgstr ""
    -
    -#: mod/admin.php:250
    -msgid "Summary"
    -msgstr ""
    -
    -#: mod/admin.php:252
    -msgid "Registered users"
    -msgstr ""
    -
    -#: mod/admin.php:254
    -msgid "Pending registrations"
    -msgstr ""
    -
    -#: mod/admin.php:255
    -msgid "Version"
    -msgstr ""
    -
    -#: mod/admin.php:260
    -msgid "Active plugins"
    -msgstr ""
    -
    -#: mod/admin.php:283
    -msgid "Can not parse base url. Must have at least ://"
    -msgstr ""
    -
    -#: mod/admin.php:556
    -msgid "RINO2 needs mcrypt php extension to work."
    -msgstr ""
    -
    -#: mod/admin.php:564
    -msgid "Site settings updated."
    -msgstr ""
    -
    -#: mod/admin.php:599 mod/settings.php:885
    -msgid "No special theme for mobile devices"
    -msgstr ""
    -
    -#: mod/admin.php:616
    -msgid "No community page"
    -msgstr ""
    -
    -#: mod/admin.php:617
    -msgid "Public postings from users of this site"
    -msgstr ""
    -
    -#: mod/admin.php:618
    -msgid "Global community page"
    -msgstr ""
    -
    -#: mod/admin.php:623 mod/contacts.php:526
    -msgid "Never"
    -msgstr ""
    -
    -#: mod/admin.php:624
    -msgid "At post arrival"
    -msgstr ""
    -
    -#: mod/admin.php:625 include/contact_selectors.php:56
    -msgid "Frequently"
    -msgstr ""
    -
    -#: mod/admin.php:626 include/contact_selectors.php:57
    -msgid "Hourly"
    -msgstr ""
    -
    -#: mod/admin.php:627 include/contact_selectors.php:58
    -msgid "Twice daily"
    -msgstr ""
    -
    -#: mod/admin.php:628 include/contact_selectors.php:59
    -msgid "Daily"
    -msgstr ""
    -
    -#: mod/admin.php:632 mod/contacts.php:585
    -msgid "Disabled"
    -msgstr ""
    -
    -#: mod/admin.php:634
    -msgid "Users, Global Contacts"
    -msgstr ""
    -
    -#: mod/admin.php:635
    -msgid "Users, Global Contacts/fallback"
    -msgstr ""
    -
    -#: mod/admin.php:639
    -msgid "One month"
    -msgstr ""
    -
    -#: mod/admin.php:640
    -msgid "Three months"
    -msgstr ""
    -
    -#: mod/admin.php:641
    -msgid "Half a year"
    -msgstr ""
    -
    -#: mod/admin.php:642
    -msgid "One year"
    -msgstr ""
    -
    -#: mod/admin.php:647
    -msgid "Multi user instance"
    -msgstr ""
    -
    -#: mod/admin.php:670
    -msgid "Closed"
    -msgstr ""
    -
    -#: mod/admin.php:671
    -msgid "Requires approval"
    -msgstr ""
    -
    -#: mod/admin.php:672
    -msgid "Open"
    -msgstr ""
    -
    -#: mod/admin.php:676
    -msgid "No SSL policy, links will track page SSL state"
    -msgstr ""
    -
    -#: mod/admin.php:677
    -msgid "Force all links to use SSL"
    -msgstr ""
    -
    -#: mod/admin.php:678
    -msgid "Self-signed certificate, use SSL for local links only (discouraged)"
    -msgstr ""
    -
    -#: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532
    -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786
    -#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167
    -msgid "Save Settings"
    -msgstr ""
    -
    -#: mod/admin.php:689 mod/register.php:260
    -msgid "Registration"
    -msgstr ""
    -
    -#: mod/admin.php:690
    -msgid "File upload"
    -msgstr ""
    -
    -#: mod/admin.php:691
    -msgid "Policies"
    -msgstr ""
    -
    -#: mod/admin.php:692
    -msgid "Advanced"
    -msgstr ""
    -
    -#: mod/admin.php:693
    -msgid "Auto Discovered Contact Directory"
    -msgstr ""
    -
    -#: mod/admin.php:694
    -msgid "Performance"
    -msgstr ""
    -
    -#: mod/admin.php:695
    -msgid ""
    -"Relocate - WARNING: advanced function. Could make this server unreachable."
    -msgstr ""
    -
    -#: mod/admin.php:698
    -msgid "Site name"
    -msgstr ""
    -
    -#: mod/admin.php:699
    -msgid "Host name"
    -msgstr ""
    -
    -#: mod/admin.php:700
    -msgid "Sender Email"
    -msgstr ""
    -
    -#: mod/admin.php:700
    -msgid ""
    -"The email address your server shall use to send notification emails from."
    -msgstr ""
    -
    -#: mod/admin.php:701
    -msgid "Banner/Logo"
    -msgstr ""
    -
    -#: mod/admin.php:702
    -msgid "Shortcut icon"
    -msgstr ""
    -
    -#: mod/admin.php:702
    -msgid "Link to an icon that will be used for browsers."
    -msgstr ""
    -
    -#: mod/admin.php:703
    -msgid "Touch icon"
    -msgstr ""
    -
    -#: mod/admin.php:703
    -msgid "Link to an icon that will be used for tablets and mobiles."
    -msgstr ""
    -
    -#: mod/admin.php:704
    -msgid "Additional Info"
    -msgstr ""
    -
    -#: mod/admin.php:704
    -#, php-format
    -msgid ""
    -"For public servers: you can add additional information here that will be "
    -"listed at %s/siteinfo."
    -msgstr ""
    -
    -#: mod/admin.php:705
    -msgid "System language"
    -msgstr ""
    -
    -#: mod/admin.php:706
    -msgid "System theme"
    -msgstr ""
    -
    -#: mod/admin.php:706
    -msgid ""
    -"Default system theme - may be over-ridden by user profiles - change theme settings"
    -msgstr ""
    -
    -#: mod/admin.php:707
    -msgid "Mobile system theme"
    -msgstr ""
    -
    -#: mod/admin.php:707
    -msgid "Theme for mobile devices"
    -msgstr ""
    -
    -#: mod/admin.php:708
    -msgid "SSL link policy"
    -msgstr ""
    -
    -#: mod/admin.php:708
    -msgid "Determines whether generated links should be forced to use SSL"
    -msgstr ""
    -
    -#: mod/admin.php:709
    -msgid "Force SSL"
    -msgstr ""
    -
    -#: mod/admin.php:709
    -msgid ""
    -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
    -"to endless loops."
    -msgstr ""
    -
    -#: mod/admin.php:710
    -msgid "Old style 'Share'"
    -msgstr ""
    -
    -#: mod/admin.php:710
    -msgid "Deactivates the bbcode element 'share' for repeating items."
    -msgstr ""
    -
    -#: mod/admin.php:711
    -msgid "Hide help entry from navigation menu"
    -msgstr ""
    -
    -#: mod/admin.php:711
    -msgid ""
    -"Hides the menu entry for the Help pages from the navigation menu. You can "
    -"still access it calling /help directly."
    -msgstr ""
    -
    -#: mod/admin.php:712
    -msgid "Single user instance"
    -msgstr ""
    -
    -#: mod/admin.php:712
    -msgid "Make this instance multi-user or single-user for the named user"
    -msgstr ""
    -
    -#: mod/admin.php:713
    -msgid "Maximum image size"
    -msgstr ""
    -
    -#: mod/admin.php:713
    -msgid ""
    -"Maximum size in bytes of uploaded images. Default is 0, which means no "
    -"limits."
    -msgstr ""
    -
    -#: mod/admin.php:714
    -msgid "Maximum image length"
    -msgstr ""
    -
    -#: mod/admin.php:714
    -msgid ""
    -"Maximum length in pixels of the longest side of uploaded images. Default is "
    -"-1, which means no limits."
    -msgstr ""
    -
    -#: mod/admin.php:715
    -msgid "JPEG image quality"
    -msgstr ""
    -
    -#: mod/admin.php:715
    -msgid ""
    -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
    -"100, which is full quality."
    -msgstr ""
    -
    -#: mod/admin.php:717
    -msgid "Register policy"
    -msgstr ""
    -
    -#: mod/admin.php:718
    -msgid "Maximum Daily Registrations"
    -msgstr ""
    -
    -#: mod/admin.php:718
    -msgid ""
    -"If registration is permitted above, this sets the maximum number of new user "
    -"registrations to accept per day.  If register is set to closed, this setting "
    -"has no effect."
    -msgstr ""
    -
    -#: mod/admin.php:719
    -msgid "Register text"
    -msgstr ""
    -
    -#: mod/admin.php:719
    -msgid "Will be displayed prominently on the registration page."
    -msgstr ""
    -
    -#: mod/admin.php:720
    -msgid "Accounts abandoned after x days"
    -msgstr ""
    -
    -#: mod/admin.php:720
    -msgid ""
    -"Will not waste system resources polling external sites for abandonded "
    -"accounts. Enter 0 for no time limit."
    -msgstr ""
    -
    -#: mod/admin.php:721
    -msgid "Allowed friend domains"
    -msgstr ""
    -
    -#: mod/admin.php:721
    -msgid ""
    -"Comma separated list of domains which are allowed to establish friendships "
    -"with this site. Wildcards are accepted. Empty to allow any domains"
    -msgstr ""
    -
    -#: mod/admin.php:722
    -msgid "Allowed email domains"
    -msgstr ""
    -
    -#: mod/admin.php:722
    -msgid ""
    -"Comma separated list of domains which are allowed in email addresses for "
    -"registrations to this site. Wildcards are accepted. Empty to allow any "
    -"domains"
    -msgstr ""
    -
    -#: mod/admin.php:723
    -msgid "Block public"
    -msgstr ""
    -
    -#: mod/admin.php:723
    -msgid ""
    -"Check to block public access to all otherwise public personal pages on this "
    -"site unless you are currently logged in."
    -msgstr ""
    -
    -#: mod/admin.php:724
    -msgid "Force publish"
    -msgstr ""
    -
    -#: mod/admin.php:724
    -msgid ""
    -"Check to force all profiles on this site to be listed in the site directory."
    -msgstr ""
    -
    -#: mod/admin.php:725
    -msgid "Global directory URL"
    -msgstr ""
    -
    -#: mod/admin.php:725
    -msgid ""
    -"URL to the global directory. If this is not set, the global directory is "
    -"completely unavailable to the application."
    -msgstr ""
    -
    -#: mod/admin.php:726
    -msgid "Allow threaded items"
    -msgstr ""
    -
    -#: mod/admin.php:726
    -msgid "Allow infinite level threading for items on this site."
    -msgstr ""
    -
    -#: mod/admin.php:727
    -msgid "Private posts by default for new users"
    -msgstr ""
    -
    -#: mod/admin.php:727
    -msgid ""
    -"Set default post permissions for all new members to the default privacy "
    -"group rather than public."
    -msgstr ""
    -
    -#: mod/admin.php:728
    -msgid "Don't include post content in email notifications"
    -msgstr ""
    -
    -#: mod/admin.php:728
    -msgid ""
    -"Don't include the content of a post/comment/private message/etc. in the "
    -"email notifications that are sent out from this site, as a privacy measure."
    -msgstr ""
    -
    -#: mod/admin.php:729
    -msgid "Disallow public access to addons listed in the apps menu."
    -msgstr ""
    -
    -#: mod/admin.php:729
    -msgid ""
    -"Checking this box will restrict addons listed in the apps menu to members "
    -"only."
    -msgstr ""
    -
    -#: mod/admin.php:730
    -msgid "Don't embed private images in posts"
    -msgstr ""
    -
    -#: mod/admin.php:730
    -msgid ""
    -"Don't replace locally-hosted private photos in posts with an embedded copy "
    -"of the image. This means that contacts who receive posts containing private "
    -"photos will have to authenticate and load each image, which may take a while."
    -msgstr ""
    -
    -#: mod/admin.php:731
    -msgid "Allow Users to set remote_self"
    -msgstr ""
    -
    -#: mod/admin.php:731
    -msgid ""
    -"With checking this, every user is allowed to mark every contact as a "
    -"remote_self in the repair contact dialog. Setting this flag on a contact "
    -"causes mirroring every posting of that contact in the users stream."
    -msgstr ""
    -
    -#: mod/admin.php:732
    -msgid "Block multiple registrations"
    -msgstr ""
    -
    -#: mod/admin.php:732
    -msgid "Disallow users to register additional accounts for use as pages."
    -msgstr ""
    -
    -#: mod/admin.php:733
    -msgid "OpenID support"
    -msgstr ""
    -
    -#: mod/admin.php:733
    -msgid "OpenID support for registration and logins."
    -msgstr ""
    -
    -#: mod/admin.php:734
    -msgid "Fullname check"
    -msgstr ""
    -
    -#: mod/admin.php:734
    -msgid ""
    -"Force users to register with a space between firstname and lastname in Full "
    -"name, as an antispam measure"
    -msgstr ""
    -
    -#: mod/admin.php:735
    -msgid "UTF-8 Regular expressions"
    -msgstr ""
    -
    -#: mod/admin.php:735
    -msgid "Use PHP UTF8 regular expressions"
    -msgstr ""
    -
    -#: mod/admin.php:736
    -msgid "Community Page Style"
    -msgstr ""
    -
    -#: mod/admin.php:736
    -msgid ""
    -"Type of community page to show. 'Global community' shows every public "
    -"posting from an open distributed network that arrived on this server."
    -msgstr ""
    -
    -#: mod/admin.php:737
    -msgid "Posts per user on community page"
    -msgstr ""
    -
    -#: mod/admin.php:737
    -msgid ""
    -"The maximum number of posts per user on the community page. (Not valid for "
    -"'Global Community')"
    -msgstr ""
    -
    -#: mod/admin.php:738
    -msgid "Enable OStatus support"
    -msgstr ""
    -
    -#: mod/admin.php:738
    -msgid ""
    -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
    -"communications in OStatus are public, so privacy warnings will be "
    -"occasionally displayed."
    -msgstr ""
    -
    -#: mod/admin.php:739
    -msgid "OStatus conversation completion interval"
    -msgstr ""
    -
    -#: mod/admin.php:739
    -msgid ""
    -"How often shall the poller check for new entries in OStatus conversations? "
    -"This can be a very ressource task."
    -msgstr ""
    -
    -#: mod/admin.php:740
    -msgid "Enable Diaspora support"
    -msgstr ""
    -
    -#: mod/admin.php:740
    -msgid "Provide built-in Diaspora network compatibility."
    -msgstr ""
    -
    -#: mod/admin.php:741
    -msgid "Only allow Friendica contacts"
    -msgstr ""
    -
    -#: mod/admin.php:741
    -msgid ""
    -"All contacts must use Friendica protocols. All other built-in communication "
    -"protocols disabled."
    -msgstr ""
    -
    -#: mod/admin.php:742
    -msgid "Verify SSL"
    -msgstr ""
    -
    -#: mod/admin.php:742
    -msgid ""
    -"If you wish, you can turn on strict certificate checking. This will mean you "
    -"cannot connect (at all) to self-signed SSL sites."
    -msgstr ""
    -
    -#: mod/admin.php:743
    -msgid "Proxy user"
    -msgstr ""
    -
    -#: mod/admin.php:744
    -msgid "Proxy URL"
    -msgstr ""
    -
    -#: mod/admin.php:745
    -msgid "Network timeout"
    -msgstr ""
    -
    -#: mod/admin.php:745
    -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
    -msgstr ""
    -
    -#: mod/admin.php:746
    -msgid "Delivery interval"
    -msgstr ""
    -
    -#: mod/admin.php:746
    -msgid ""
    -"Delay background delivery processes by this many seconds to reduce system "
    -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
    -"for large dedicated servers."
    -msgstr ""
    -
    -#: mod/admin.php:747
    -msgid "Poll interval"
    -msgstr ""
    -
    -#: mod/admin.php:747
    -msgid ""
    -"Delay background polling processes by this many seconds to reduce system "
    -"load. If 0, use delivery interval."
    -msgstr ""
    -
    -#: mod/admin.php:748
    -msgid "Maximum Load Average"
    -msgstr ""
    -
    -#: mod/admin.php:748
    -msgid ""
    -"Maximum system load before delivery and poll processes are deferred - "
    -"default 50."
    -msgstr ""
    -
    -#: mod/admin.php:749
    -msgid "Maximum Load Average (Frontend)"
    -msgstr ""
    -
    -#: mod/admin.php:749
    -msgid "Maximum system load before the frontend quits service - default 50."
    -msgstr ""
    -
    -#: mod/admin.php:751
    -msgid "Periodical check of global contacts"
    -msgstr ""
    -
    -#: mod/admin.php:751
    -msgid ""
    -"If enabled, the global contacts are checked periodically for missing or "
    -"outdated data and the vitality of the contacts and servers."
    -msgstr ""
    -
    -#: mod/admin.php:752
    -msgid "Days between requery"
    -msgstr ""
    -
    -#: mod/admin.php:752
    -msgid "Number of days after which a server is requeried for his contacts."
    -msgstr ""
    -
    -#: mod/admin.php:753
    -msgid "Discover contacts from other servers"
    -msgstr ""
    -
    -#: mod/admin.php:753
    -msgid ""
    -"Periodically query other servers for contacts. You can choose between "
    -"'users': the users on the remote system, 'Global Contacts': active contacts "
    -"that are known on the system. The fallback is meant for Redmatrix servers "
    -"and older friendica servers, where global contacts weren't available. The "
    -"fallback increases the server load, so the recommened setting is 'Users, "
    -"Global Contacts'."
    -msgstr ""
    -
    -#: mod/admin.php:754
    -msgid "Timeframe for fetching global contacts"
    -msgstr ""
    -
    -#: mod/admin.php:754
    -msgid ""
    -"When the discovery is activated, this value defines the timeframe for the "
    -"activity of the global contacts that are fetched from other servers."
    -msgstr ""
    -
    -#: mod/admin.php:755
    -msgid "Search the local directory"
    -msgstr ""
    -
    -#: mod/admin.php:755
    -msgid ""
    -"Search the local directory instead of the global directory. When searching "
    -"locally, every search will be executed on the global directory in the "
    -"background. This improves the search results when the search is repeated."
    -msgstr ""
    -
    -#: mod/admin.php:757
    -msgid "Publish server information"
    -msgstr ""
    -
    -#: mod/admin.php:757
    -msgid ""
    -"If enabled, general server and usage data will be published. The data "
    -"contains the name and version of the server, number of users with public "
    -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."
    -msgstr ""
    -
    -#: mod/admin.php:759
    -msgid "Use MySQL full text engine"
    -msgstr ""
    -
    -#: mod/admin.php:759
    -msgid ""
    -"Activates the full text engine. Speeds up search - but can only search for "
    -"four and more characters."
    -msgstr ""
    -
    -#: mod/admin.php:760
    -msgid "Suppress Language"
    -msgstr ""
    -
    -#: mod/admin.php:760
    -msgid "Suppress language information in meta information about a posting."
    -msgstr ""
    -
    -#: mod/admin.php:761
    -msgid "Suppress Tags"
    -msgstr ""
    -
    -#: mod/admin.php:761
    -msgid "Suppress showing a list of hashtags at the end of the posting."
    -msgstr ""
    -
    -#: mod/admin.php:762
    -msgid "Path to item cache"
    -msgstr ""
    -
    -#: mod/admin.php:762
    -msgid "The item caches buffers generated bbcode and external images."
    -msgstr ""
    -
    -#: mod/admin.php:763
    -msgid "Cache duration in seconds"
    -msgstr ""
    -
    -#: mod/admin.php:763
    -msgid ""
    -"How long should the cache files be hold? Default value is 86400 seconds (One "
    -"day). To disable the item cache, set the value to -1."
    -msgstr ""
    -
    -#: mod/admin.php:764
    -msgid "Maximum numbers of comments per post"
    -msgstr ""
    -
    -#: mod/admin.php:764
    -msgid "How much comments should be shown for each post? Default value is 100."
    -msgstr ""
    -
    -#: mod/admin.php:765
    -msgid "Path for lock file"
    -msgstr ""
    -
    -#: mod/admin.php:765
    -msgid ""
    -"The lock file is used to avoid multiple pollers at one time. Only define a "
    -"folder here."
    -msgstr ""
    -
    -#: mod/admin.php:766
    -msgid "Temp path"
    -msgstr ""
    -
    -#: mod/admin.php:766
    -msgid ""
    -"If you have a restricted system where the webserver can't access the system "
    -"temp path, enter another path here."
    -msgstr ""
    -
    -#: mod/admin.php:767
    -msgid "Base path to installation"
    -msgstr ""
    -
    -#: mod/admin.php:767
    -msgid ""
    -"If the system cannot detect the correct path to your installation, enter the "
    -"correct path here. This setting should only be set if you are using a "
    -"restricted system and symbolic links to your webroot."
    -msgstr ""
    -
    -#: mod/admin.php:768
    -msgid "Disable picture proxy"
    -msgstr ""
    -
    -#: mod/admin.php:768
    -msgid ""
    -"The picture proxy increases performance and privacy. It shouldn't be used on "
    -"systems with very low bandwith."
    -msgstr ""
    -
    -#: mod/admin.php:769
    -msgid "Enable old style pager"
    -msgstr ""
    -
    -#: mod/admin.php:769
    -msgid ""
    -"The old style pager has page numbers but slows down massively the page speed."
    -msgstr ""
    -
    -#: mod/admin.php:770
    -msgid "Only search in tags"
    -msgstr ""
    -
    -#: mod/admin.php:770
    -msgid "On large systems the text search can slow down the system extremely."
    -msgstr ""
    -
    -#: mod/admin.php:772
    -msgid "New base url"
    -msgstr ""
    -
    -#: mod/admin.php:772
    -msgid ""
    -"Change base url for this server. Sends relocate message to all DFRN contacts "
    -"of all users."
    -msgstr ""
    -
    -#: mod/admin.php:774
    -msgid "RINO Encryption"
    -msgstr ""
    -
    -#: mod/admin.php:774
    -msgid "Encryption layer between nodes."
    -msgstr ""
    -
    -#: mod/admin.php:775
    -msgid "Embedly API key"
    -msgstr ""
    -
    -#: mod/admin.php:775
    -msgid ""
    -"Embedly is used to fetch additional data for "
    -"web pages. This is an optional parameter."
    -msgstr ""
    -
    -#: mod/admin.php:793
    -msgid "Update has been marked successful"
    -msgstr ""
    -
    -#: mod/admin.php:801
    -#, php-format
    -msgid "Database structure update %s was successfully applied."
    -msgstr ""
    -
    -#: mod/admin.php:804
    -#, php-format
    -msgid "Executing of database structure update %s failed with error: %s"
    -msgstr ""
    -
    -#: mod/admin.php:816
    -#, php-format
    -msgid "Executing %s failed with error: %s"
    -msgstr ""
    -
    -#: mod/admin.php:819
    -#, php-format
    -msgid "Update %s was successfully applied."
    -msgstr ""
    -
    -#: mod/admin.php:823
    -#, php-format
    -msgid "Update %s did not return a status. Unknown if it succeeded."
    -msgstr ""
    -
    -#: mod/admin.php:825
    -#, php-format
    -msgid "There was no additional update function %s that needed to be called."
    -msgstr ""
    -
    -#: mod/admin.php:844
    -msgid "No failed updates."
    -msgstr ""
    -
    -#: mod/admin.php:845
    -msgid "Check database structure"
    -msgstr ""
    -
    -#: mod/admin.php:850
    -msgid "Failed Updates"
    -msgstr ""
    -
    -#: mod/admin.php:851
    -msgid ""
    -"This does not include updates prior to 1139, which did not return a status."
    -msgstr ""
    -
    -#: mod/admin.php:852
    -msgid "Mark success (if update was manually applied)"
    -msgstr ""
    -
    -#: mod/admin.php:853
    -msgid "Attempt to execute this update step automatically"
    -msgstr ""
    -
    -#: mod/admin.php:885
    -#, php-format
    -msgid ""
    -"\n"
    -"\t\t\tDear %1$s,\n"
    -"\t\t\t\tthe administrator of %2$s has set up an account for you."
    -msgstr ""
    -
    -#: mod/admin.php:888
    -#, php-format
    -msgid ""
    -"\n"
    -"\t\t\tThe login details are as follows:\n"
    -"\n"
    -"\t\t\tSite Location:\t%1$s\n"
    -"\t\t\tLogin Name:\t\t%2$s\n"
    -"\t\t\tPassword:\t\t%3$s\n"
    -"\n"
    -"\t\t\tYou may change your password from your account \"Settings\" page after "
    -"logging\n"
    -"\t\t\tin.\n"
    -"\n"
    -"\t\t\tPlease take a few moments to review the other account settings on that "
    -"page.\n"
    -"\n"
    -"\t\t\tYou may also wish to add some basic information to your default "
    -"profile\n"
    -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
    -"\n"
    -"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
    -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
    -"and\n"
    -"\t\t\tperhaps what country you live in; if you do not wish to be more "
    -"specific\n"
    -"\t\t\tthan that.\n"
    -"\n"
    -"\t\t\tWe fully respect your right to privacy, and none of these items are "
    -"necessary.\n"
    -"\t\t\tIf you are new and do not know anybody here, they may help\n"
    -"\t\t\tyou to make some new and interesting friends.\n"
    -"\n"
    -"\t\t\tThank you and welcome to %4$s."
    -msgstr ""
    -
    -#: mod/admin.php:920 include/user.php:421
    -#, php-format
    -msgid "Registration details for %s"
    -msgstr ""
    -
    -#: mod/admin.php:932
    -#, php-format
    -msgid "%s user blocked/unblocked"
    -msgid_plural "%s users blocked/unblocked"
    -msgstr[0] ""
    -msgstr[1] ""
    -
    -#: mod/admin.php:939
    -#, php-format
    -msgid "%s user deleted"
    -msgid_plural "%s users deleted"
    -msgstr[0] ""
    -msgstr[1] ""
    -
    -#: mod/admin.php:978
    -#, php-format
    -msgid "User '%s' deleted"
    -msgstr ""
    -
    -#: mod/admin.php:986
    -#, php-format
    -msgid "User '%s' unblocked"
    -msgstr ""
    -
    -#: mod/admin.php:986
    -#, php-format
    -msgid "User '%s' blocked"
    -msgstr ""
    -
    -#: mod/admin.php:1079
    -msgid "Add User"
    -msgstr ""
    -
    -#: mod/admin.php:1080
    -msgid "select all"
    -msgstr ""
    -
    -#: mod/admin.php:1081
    -msgid "User registrations waiting for confirm"
    -msgstr ""
    -
    -#: mod/admin.php:1082
    -msgid "User waiting for permanent deletion"
    -msgstr ""
    -
    -#: mod/admin.php:1083
    -msgid "Request date"
    -msgstr ""
    -
    -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109
    -#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170
    -msgid "Name"
    -msgstr ""
    -
    -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111
    -#: include/contact_selectors.php:79 include/contact_selectors.php:86
    -msgid "Email"
    -msgstr ""
    -
    -#: mod/admin.php:1084
    -msgid "No registrations."
    -msgstr ""
    -
    -#: mod/admin.php:1086
    -msgid "Deny"
    -msgstr ""
    -
    -#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622
    -#: mod/contacts.php:798
    -msgid "Block"
    -msgstr ""
    -
    -#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622
    -#: mod/contacts.php:798
    -msgid "Unblock"
    -msgstr ""
    -
    -#: mod/admin.php:1090
    -msgid "Site admin"
    -msgstr ""
    -
    -#: mod/admin.php:1091
    -msgid "Account expired"
    -msgstr ""
    -
    -#: mod/admin.php:1094
    -msgid "New User"
    -msgstr ""
    -
    -#: mod/admin.php:1095 mod/admin.php:1096
    -msgid "Register date"
    -msgstr ""
    -
    -#: mod/admin.php:1095 mod/admin.php:1096
    -msgid "Last login"
    -msgstr ""
    -
    -#: mod/admin.php:1095 mod/admin.php:1096
    -msgid "Last item"
    -msgstr ""
    -
    -#: mod/admin.php:1095
    -msgid "Deleted since"
    -msgstr ""
    -
    -#: mod/admin.php:1096 mod/settings.php:41
    -msgid "Account"
    -msgstr ""
    -
    -#: mod/admin.php:1098
    -msgid ""
    -"Selected users will be deleted!\\n\\nEverything these users had posted on "
    -"this site will be permanently deleted!\\n\\nAre you sure?"
    -msgstr ""
    -
    -#: mod/admin.php:1099
    -msgid ""
    -"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
    -"site will be permanently deleted!\\n\\nAre you sure?"
    -msgstr ""
    -
    -#: mod/admin.php:1109
    -msgid "Name of the new user."
    -msgstr ""
    -
    -#: mod/admin.php:1110
    -msgid "Nickname"
    -msgstr ""
    -
    -#: mod/admin.php:1110
    -msgid "Nickname of the new user."
    -msgstr ""
    -
    -#: mod/admin.php:1111
    -msgid "Email address of the new user."
    -msgstr ""
    -
    -#: mod/admin.php:1144
    -#, php-format
    -msgid "Plugin %s disabled."
    -msgstr ""
    -
    -#: mod/admin.php:1148
    -#, php-format
    -msgid "Plugin %s enabled."
    -msgstr ""
    -
    -#: mod/admin.php:1158 mod/admin.php:1381
    -msgid "Disable"
    -msgstr ""
    -
    -#: mod/admin.php:1160 mod/admin.php:1383
    -msgid "Enable"
    -msgstr ""
    -
    -#: mod/admin.php:1183 mod/admin.php:1411
    -msgid "Toggle"
    -msgstr ""
    -
    -#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22
    -#: mod/settings.php:99 view/theme/diabook/theme.php:544
    -#: view/theme/diabook/theme.php:648 include/nav.php:181
    -msgid "Settings"
    -msgstr ""
    -
    -#: mod/admin.php:1191 mod/admin.php:1421
    -msgid "Author: "
    -msgstr ""
    -
    -#: mod/admin.php:1192 mod/admin.php:1422
    -msgid "Maintainer: "
    -msgstr ""
    -
    -#: mod/admin.php:1341
    -msgid "No themes found."
    -msgstr ""
    -
    -#: mod/admin.php:1403
    -msgid "Screenshot"
    -msgstr ""
    -
    -#: mod/admin.php:1449
    -msgid "[Experimental]"
    -msgstr ""
    -
    -#: mod/admin.php:1450
    -msgid "[Unsupported]"
    -msgstr ""
    -
    -#: mod/admin.php:1477
    -msgid "Log settings updated."
    -msgstr ""
    -
    -#: mod/admin.php:1533
    -msgid "Clear"
    -msgstr ""
    -
    -#: mod/admin.php:1539
    -msgid "Enable Debugging"
    -msgstr ""
    -
    -#: mod/admin.php:1540
    -msgid "Log file"
    -msgstr ""
    -
    -#: mod/admin.php:1540
    -msgid ""
    -"Must be writable by web server. Relative to your Friendica top-level "
    -"directory."
    -msgstr ""
    -
    -#: mod/admin.php:1541
    -msgid "Log level"
    -msgstr ""
    -
    -#: mod/admin.php:1590 mod/contacts.php:619
    -msgid "Update now"
    -msgstr ""
    -
    -#: mod/admin.php:1591 include/acl_selectors.php:347
    -msgid "Close"
    -msgstr ""
    -
    -#: mod/admin.php:1597
    -msgid "FTP Host"
    -msgstr ""
    -
    -#: mod/admin.php:1598
    -msgid "FTP Path"
    -msgstr ""
    -
    -#: mod/admin.php:1599
    -msgid "FTP User"
    -msgstr ""
    -
    -#: mod/admin.php:1600
    -msgid "FTP Password"
    -msgstr ""
    -
    -#: mod/message.php:9 include/nav.php:173
    -msgid "New Message"
    -msgstr ""
    -
    -#: mod/message.php:64 mod/wallmessage.php:56
    -msgid "No recipient selected."
    -msgstr ""
    -
    -#: mod/message.php:68
    -msgid "Unable to locate contact information."
    -msgstr ""
    -
    -#: mod/message.php:71 mod/wallmessage.php:62
    -msgid "Message could not be sent."
    -msgstr ""
    -
    -#: mod/message.php:74 mod/wallmessage.php:65
    -msgid "Message collection failure."
    -msgstr ""
    -
    -#: mod/message.php:77 mod/wallmessage.php:68
    -msgid "Message sent."
    -msgstr ""
    -
    -#: mod/message.php:183 include/nav.php:170
    -msgid "Messages"
    -msgstr ""
    -
    -#: mod/message.php:208
    -msgid "Do you really want to delete this message?"
    -msgstr ""
    -
    -#: mod/message.php:228
    -msgid "Message deleted."
    -msgstr ""
    -
    -#: mod/message.php:259
    -msgid "Conversation removed."
    -msgstr ""
    -
    -#: mod/message.php:284 mod/message.php:292 mod/message.php:467
    -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135
    -#: include/conversation.php:1001 include/conversation.php:1019
    -msgid "Please enter a link URL:"
    -msgstr ""
    -
    -#: mod/message.php:320 mod/wallmessage.php:142
    -msgid "Send Private Message"
    -msgstr ""
    -
    -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144
    -msgid "To:"
    -msgstr ""
    -
    -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145
    -msgid "Subject:"
    -msgstr ""
    -
    -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151
    -#: mod/invite.php:134
    -msgid "Your message:"
    -msgstr ""
    -
    -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110
    -#: mod/wallmessage.php:154 include/conversation.php:1056
    -msgid "Upload photo"
    -msgstr ""
    -
    -#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114
    -#: mod/wallmessage.php:155 include/conversation.php:1060
    -msgid "Insert web link"
    -msgstr ""
    -
    -#: mod/message.php:372
    -msgid "No messages."
    -msgstr ""
    -
    -#: mod/message.php:379
    -#, php-format
    -msgid "Unknown sender - %s"
    -msgstr ""
    -
    -#: mod/message.php:382
    -#, php-format
    -msgid "You and %s"
    -msgstr ""
    -
    -#: mod/message.php:385
    -#, php-format
    -msgid "%s and You"
    -msgstr ""
    -
    -#: mod/message.php:406 mod/message.php:547
    -msgid "Delete conversation"
    -msgstr ""
    -
    -#: mod/message.php:409
    -msgid "D, d M Y - g:i A"
    -msgstr ""
    -
    -#: mod/message.php:412
    -#, php-format
    -msgid "%d message"
    -msgid_plural "%d messages"
    -msgstr[0] ""
    -msgstr[1] ""
    -
    -#: mod/message.php:451
    -msgid "Message not available."
    -msgstr ""
    -
    -#: mod/message.php:521
    -msgid "Delete message"
    -msgstr ""
    -
    -#: mod/message.php:549
    -msgid ""
    -"No secure communications available. You may be able to "
    -"respond from the sender's profile page."
    -msgstr ""
    -
    -#: mod/message.php:553
    -msgid "Send Reply"
    -msgstr ""
    -
    -#: mod/editpost.php:17 mod/editpost.php:27
    -msgid "Item not found"
    -msgstr ""
    -
    -#: mod/editpost.php:40
    -msgid "Edit post"
    -msgstr ""
    -
    -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997
    -msgid "Save"
    -msgstr ""
    -
    -#: mod/editpost.php:111 include/conversation.php:1057
    -msgid "upload photo"
    -msgstr ""
    -
    -#: mod/editpost.php:112 include/conversation.php:1058
    -msgid "Attach file"
    -msgstr ""
    -
    -#: mod/editpost.php:113 include/conversation.php:1059
    -msgid "attach file"
    -msgstr ""
    -
    -#: mod/editpost.php:115 include/conversation.php:1061
    -msgid "web link"
    -msgstr ""
    -
    -#: mod/editpost.php:116 include/conversation.php:1062
    -msgid "Insert video link"
    -msgstr ""
    -
    -#: mod/editpost.php:117 include/conversation.php:1063
    -msgid "video link"
    -msgstr ""
    -
    -#: mod/editpost.php:118 include/conversation.php:1064
    -msgid "Insert audio link"
    -msgstr ""
    -
    -#: mod/editpost.php:119 include/conversation.php:1065
    -msgid "audio link"
    -msgstr ""
    -
    -#: mod/editpost.php:120 include/conversation.php:1066
    -msgid "Set your location"
    -msgstr ""
    -
    -#: mod/editpost.php:121 include/conversation.php:1067
    -msgid "set location"
    -msgstr ""
    -
    -#: mod/editpost.php:122 include/conversation.php:1068
    -msgid "Clear browser location"
    -msgstr ""
    -
    -#: mod/editpost.php:123 include/conversation.php:1069
    -msgid "clear location"
    -msgstr ""
    -
    -#: mod/editpost.php:125 include/conversation.php:1075
    -msgid "Permission settings"
    -msgstr ""
    -
    -#: mod/editpost.php:133 include/acl_selectors.php:343
    -msgid "CC: email addresses"
    -msgstr ""
    -
    -#: mod/editpost.php:134 include/conversation.php:1084
    -msgid "Public post"
    -msgstr ""
    -
    -#: mod/editpost.php:137 include/conversation.php:1071
    -msgid "Set title"
    -msgstr ""
    -
    -#: mod/editpost.php:139 include/conversation.php:1073
    -msgid "Categories (comma-separated list)"
    -msgstr ""
    -
    -#: mod/editpost.php:140 include/acl_selectors.php:344
    -msgid "Example: bob@example.com, mary@example.com"
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
    -#: mod/profiles.php:179 mod/profiles.php:627
    -msgid "Profile not found."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:121
    -msgid ""
    -"This may occasionally happen if contact was requested by both persons and it "
    -"has already been approved."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:240
    -msgid "Response from remote site was not understood."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
    -msgid "Unexpected response from remote site: "
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:263
    -msgid "Confirmation completed successfully."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
    -msgid "Remote site reported: "
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:277
    -msgid "Temporary failure. Please wait and try again."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:284
    -msgid "Introduction failed or was revoked."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:430
    -msgid "Unable to set contact photo."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:487 include/diaspora.php:633
    -#: include/conversation.php:172
    -#, php-format
    -msgid "%1$s is now friends with %2$s"
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:572
    -#, php-format
    -msgid "No user record found for '%s' "
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:582
    -msgid "Our site encryption key is apparently messed up."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:593
    -msgid "Empty site URL was provided or URL could not be decrypted by us."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:614
    -msgid "Contact record was not found for you on our site."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:628
    -#, php-format
    -msgid "Site public key not available in contact record for URL %s."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:648
    -msgid ""
    -"The ID provided by your system is a duplicate on our system. It should work "
    -"if you try again."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:659
    -msgid "Unable to set your contact credentials on our system."
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:726
    -msgid "Unable to update your contact profile details on our system"
    -msgstr ""
    -
    -#: mod/dfrn_confirm.php:798
    -#, php-format
    -msgid "%1$s has joined %2$s"
    -msgstr ""
    -
    -#: mod/events.php:71 mod/events.php:73
    -msgid "Event can not end before it has started."
    -msgstr ""
    -
    -#: mod/events.php:80 mod/events.php:82
    -msgid "Event title and start time are required."
    -msgstr ""
    -
    -#: mod/events.php:317
    -msgid "l, F j"
    -msgstr ""
    -
    -#: mod/events.php:339
    -msgid "Edit event"
    -msgstr ""
    -
    -#: mod/events.php:361 include/text.php:1716 include/text.php:1723
    -msgid "link to source"
    -msgstr ""
    -
    -#: mod/events.php:396 view/theme/diabook/theme.php:127
    -#: include/identity.php:668 include/nav.php:80
    -msgid "Events"
    -msgstr ""
    -
    -#: mod/events.php:397
    -msgid "Create New Event"
    -msgstr ""
    -
    -#: mod/events.php:398
    -msgid "Previous"
    -msgstr ""
    -
    -#: mod/events.php:399 mod/install.php:209
    -msgid "Next"
    -msgstr ""
    -
    -#: mod/events.php:491
    -msgid "Event details"
    -msgstr ""
    -
    -#: mod/events.php:492
    -msgid "Starting date and Title are required."
    -msgstr ""
    -
    -#: mod/events.php:493
    -msgid "Event Starts:"
    -msgstr ""
    -
    -#: mod/events.php:493 mod/events.php:505
    -msgid "Required"
    -msgstr ""
    -
    -#: mod/events.php:495
    -msgid "Finish date/time is not known or not relevant"
    -msgstr ""
    -
    -#: mod/events.php:497
    -msgid "Event Finishes:"
    -msgstr ""
    -
    -#: mod/events.php:499
    -msgid "Adjust for viewer timezone"
    -msgstr ""
    -
    -#: mod/events.php:501
    -msgid "Description:"
    -msgstr ""
    -
    -#: mod/events.php:505
    -msgid "Title:"
    -msgstr ""
    -
    -#: mod/events.php:507
    -msgid "Share this event"
    -msgstr ""
    -
    -#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126
    -#: include/identity.php:649 include/nav.php:78
    -msgid "Photos"
    -msgstr ""
    -
    -#: mod/fbrowser.php:122
    -msgid "Files"
    -msgstr ""
    -
    -#: mod/home.php:35
    -#, php-format
    -msgid "Welcome to %s"
    -msgstr ""
    -
    -#: mod/lockview.php:31 mod/lockview.php:39
    -msgid "Remote privacy information not available."
    -msgstr ""
    -
    -#: mod/lockview.php:48
    -msgid "Visible to:"
    -msgstr ""
    -
    -#: mod/wallmessage.php:42 mod/wallmessage.php:112
    -#, php-format
    -msgid "Number of daily wall messages for %s exceeded. Message failed."
    -msgstr ""
    -
    -#: mod/wallmessage.php:59
    -msgid "Unable to check your home location."
    -msgstr ""
    -
    -#: mod/wallmessage.php:86 mod/wallmessage.php:95
    -msgid "No recipient."
    -msgstr ""
    -
    -#: mod/wallmessage.php:143
    -#, php-format
    -msgid ""
    -"If you wish for %s to respond, please check that the privacy settings on "
    -"your site allow private mail from unknown senders."
    -msgstr ""
    -
    -#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838
    -#: mod/viewcontacts.php:64
    -#, php-format
    -msgid "Visit %s's profile [%s]"
    -msgstr ""
    -
    -#: mod/nogroup.php:41 mod/contacts.php:839
    -msgid "Edit contact"
    -msgstr ""
    -
    -#: mod/nogroup.php:59
    -msgid "Contacts who are not members of a group"
    -msgstr ""
    -
    -#: mod/friendica.php:59
    -msgid "This is Friendica, version"
    -msgstr ""
    -
    -#: mod/friendica.php:60
    -msgid "running at web location"
    -msgstr ""
    -
    -#: mod/friendica.php:62
    -msgid ""
    -"Please visit Friendica.com to learn "
    -"more about the Friendica project."
    -msgstr ""
    -
    -#: mod/friendica.php:64
    -msgid "Bug reports and issues: please visit"
    -msgstr ""
    -
    -#: mod/friendica.php:64
    -msgid "the bugtracker at github"
    -msgstr ""
    -
    -#: mod/friendica.php:65
    -msgid ""
    -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
    -"dot com"
    -msgstr ""
    -
    -#: mod/friendica.php:79
    -msgid "Installed plugins/addons/apps:"
    -msgstr ""
    -
    -#: mod/friendica.php:92
    -msgid "No installed plugins/addons/apps"
    -msgstr ""
    -
    -#: mod/removeme.php:46 mod/removeme.php:49
    -msgid "Remove My Account"
    -msgstr ""
    -
    -#: mod/removeme.php:47
    -msgid ""
    -"This will completely remove your account. Once this has been done it is not "
    -"recoverable."
    -msgstr ""
    -
    -#: mod/removeme.php:48
    -msgid "Please enter your password for verification:"
    -msgstr ""
    -
    -#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76
    -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16
    -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692
    -msgid "Invalid request."
    -msgstr ""
    -
    -#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144
    -#, php-format
    -msgid "Image exceeds size limit of %s"
    -msgstr ""
    -
    -#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153
    -msgid "Unable to process image."
    -msgstr ""
    -
    -#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220
    -#: mod/item.php:486 include/message.php:145 include/Photo.php:951
    -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995
    -msgid "Wall Photos"
    -msgstr ""
    -
    -#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301
    -msgid "Image upload failed."
    -msgstr ""
    -
    -#: mod/api.php:76 mod/api.php:102
    -msgid "Authorize application connection"
    -msgstr ""
    -
    -#: mod/api.php:77
    -msgid "Return to your app and insert this Securty Code:"
    -msgstr ""
    -
    -#: mod/api.php:89
    -msgid "Please login to continue."
    -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?"
    -msgstr ""
    -
    -#: mod/tagger.php:95 include/conversation.php:265
    -#, php-format
    -msgid "%1$s tagged %2$s's %3$s with %4$s"
    -msgstr ""
    -
    -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086
    -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779
    -#: mod/photos.php:1791 view/theme/diabook/theme.php:499
    -msgid "Contact Photos"
    -msgstr ""
    -
    -#: mod/photos.php:84 include/identity.php:652
    -msgid "Photo Albums"
    -msgstr ""
    -
    -#: mod/photos.php:85 mod/photos.php:1836
    -msgid "Recent Photos"
    -msgstr ""
    -
    -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838
    -msgid "Upload New Photos"
    -msgstr ""
    -
    -#: mod/photos.php:102 mod/settings.php:34
    -msgid "everybody"
    -msgstr ""
    -
    -#: mod/photos.php:166
    -msgid "Contact information unavailable"
    -msgstr ""
    -
    -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207
    -#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81
    -#: mod/profile_photo.php:88 mod/profile_photo.php:204
    -#: mod/profile_photo.php:296 mod/profile_photo.php:305
    -#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350
    -#: include/user.php:357
    -msgid "Profile Photos"
    -msgstr ""
    -
    -#: mod/photos.php:187
    -msgid "Album not found."
    -msgstr ""
    -
    -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224
    -msgid "Delete Album"
    -msgstr ""
    -
    -#: mod/photos.php:220
    -msgid "Do you really want to delete this photo album and all its photos?"
    -msgstr ""
    -
    -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534
    -msgid "Delete Photo"
    -msgstr ""
    -
    -#: mod/photos.php:309
    -msgid "Do you really want to delete this photo?"
    -msgstr ""
    -
    -#: mod/photos.php:684
    -#, php-format
    -msgid "%1$s was tagged in %2$s by %3$s"
    -msgstr ""
    -
    -#: mod/photos.php:684
    -msgid "a photo"
    -msgstr ""
    -
    -#: mod/photos.php:797
    -msgid "Image file is empty."
    -msgstr ""
    -
    -#: mod/photos.php:952
    -msgid "No photos selected"
    -msgstr ""
    -
    -#: mod/photos.php:1053 mod/videos.php:298
    -msgid "Access to this item is restricted."
    -msgstr ""
    -
    -#: mod/photos.php:1114
    -#, php-format
    -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
    -msgstr ""
    -
    -#: mod/photos.php:1149
    -msgid "Upload Photos"
    -msgstr ""
    -
    -#: mod/photos.php:1153 mod/photos.php:1219
    -msgid "New album name: "
    -msgstr ""
    -
    -#: mod/photos.php:1154
    -msgid "or existing album name: "
    -msgstr ""
    -
    -#: mod/photos.php:1155
    -msgid "Do not show a status post for this upload"
    -msgstr ""
    -
    -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346
    -msgid "Permissions"
    -msgstr ""
    -
    -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202
    -msgid "Show to Groups"
    -msgstr ""
    -
    -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203
    -msgid "Show to Contacts"
    -msgstr ""
    -
    -#: mod/photos.php:1168
    -msgid "Private Photo"
    -msgstr ""
    -
    -#: mod/photos.php:1169
    -msgid "Public Photo"
    -msgstr ""
    -
    -#: mod/photos.php:1232
    -msgid "Edit Album"
    -msgstr ""
    -
    -#: mod/photos.php:1238
    -msgid "Show Newest First"
    -msgstr ""
    -
    -#: mod/photos.php:1240
    -msgid "Show Oldest First"
    -msgstr ""
    -
    -#: mod/photos.php:1268 mod/photos.php:1821
    -msgid "View Photo"
    -msgstr ""
    -
    -#: mod/photos.php:1314
    -msgid "Permission denied. Access to this item may be restricted."
    -msgstr ""
    -
    -#: mod/photos.php:1316
    -msgid "Photo not available"
    -msgstr ""
    -
    -#: mod/photos.php:1372
    -msgid "View photo"
    -msgstr ""
    -
    -#: mod/photos.php:1372
    -msgid "Edit photo"
    -msgstr ""
    -
    -#: mod/photos.php:1373
    -msgid "Use as profile photo"
    -msgstr ""
    -
    -#: mod/photos.php:1398
    -msgid "View Full Size"
    -msgstr ""
    -
    -#: mod/photos.php:1477
    -msgid "Tags: "
    -msgstr ""
    -
    -#: mod/photos.php:1480
    -msgid "[Remove any tag]"
    -msgstr ""
    -
    -#: mod/photos.php:1520
    -msgid "New album name"
    -msgstr ""
    -
    -#: mod/photos.php:1521
    -msgid "Caption"
    -msgstr ""
    -
    -#: mod/photos.php:1522
    -msgid "Add a Tag"
    -msgstr ""
    -
    -#: mod/photos.php:1522
    -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
    -msgstr ""
    -
    -#: mod/photos.php:1523
    -msgid "Do not rotate"
    -msgstr ""
    -
    -#: mod/photos.php:1524
    -msgid "Rotate CW (right)"
    -msgstr ""
    -
    -#: mod/photos.php:1525
    -msgid "Rotate CCW (left)"
    -msgstr ""
    -
    -#: mod/photos.php:1540
    -msgid "Private photo"
    -msgstr ""
    -
    -#: mod/photos.php:1541
    -msgid "Public photo"
    -msgstr ""
    -
    -#: mod/photos.php:1563 include/conversation.php:1055
    -msgid "Share"
    -msgstr ""
    -
    -#: mod/photos.php:1827 mod/videos.php:380
    -msgid "View Album"
    -msgstr ""
    -
    -#: mod/hcard.php:10
    -msgid "No profile"
    -msgstr ""
    -
    -#: mod/register.php:92
    -msgid ""
    -"Registration successful. Please check your email for further instructions."
    -msgstr ""
    -
    -#: mod/register.php:97
    -#, php-format
    -msgid ""
    -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "" - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: mod/register.php:188 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "" - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "" - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "" - -#: mod/register.php:271 mod/settings.php:1174 -msgid "New Password:" -msgstr "" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:272 mod/settings.php:1175 -msgid "Confirm:" -msgstr "" - -#: mod/register.php:273 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." -msgstr "" - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "" - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "" - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the " -"verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "" - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately " -"to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "" - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "" - -#: mod/help.php:31 -msgid "Help:" -msgstr "" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "" - -#: mod/contacts.php:114 +#: mod/contacts.php:118 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "" msgstr[1] "" -#: mod/contacts.php:145 mod/contacts.php:368 +#: mod/contacts.php:149 mod/contacts.php:372 msgid "Could not access contact record." msgstr "" -#: mod/contacts.php:159 +#: mod/contacts.php:163 msgid "Could not locate selected profile." msgstr "" -#: mod/contacts.php:192 +#: mod/contacts.php:196 msgid "Contact updated." msgstr "" -#: mod/contacts.php:389 +#: mod/contacts.php:198 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "" + +#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/ostatus_subscribe.php:9 mod/follow.php:10 +#: mod/follow.php:72 mod/follow.php:137 mod/item.php:169 mod/item.php:185 +#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 +#: mod/wall_upload.php:77 mod/wall_upload.php:80 mod/viewcontacts.php:24 +#: mod/notifications.php:69 mod/message.php:45 mod/message.php:181 +#: mod/crepair.php:120 mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:11 mod/events.php:165 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 mod/api.php:26 +#: mod/api.php:31 mod/notes.php:22 mod/poke.php:149 mod/repair_ostatus.php:9 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:163 mod/photos.php:1097 +#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 +#: include/items.php:5103 index.php:382 +msgid "Permission denied." +msgstr "" + +#: mod/contacts.php:393 msgid "Contact has been blocked" msgstr "" -#: mod/contacts.php:389 +#: mod/contacts.php:393 msgid "Contact has been unblocked" msgstr "" -#: mod/contacts.php:400 +#: mod/contacts.php:404 msgid "Contact has been ignored" msgstr "" -#: mod/contacts.php:400 +#: mod/contacts.php:404 msgid "Contact has been unignored" msgstr "" -#: mod/contacts.php:412 +#: mod/contacts.php:416 msgid "Contact has been archived" msgstr "" -#: mod/contacts.php:412 +#: mod/contacts.php:416 msgid "Contact has been unarchived" msgstr "" -#: mod/contacts.php:439 mod/contacts.php:795 +#: mod/contacts.php:443 mod/contacts.php:816 msgid "Do you really want to delete this contact?" msgstr "" -#: mod/contacts.php:456 -msgid "Contact has been removed." +#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 +#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 +#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 +#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 +#: mod/settings.php:1162 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4935 +msgid "Yes" msgstr "" -#: mod/contacts.php:494 -#, php-format -msgid "You are mutual friends with %s" +#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:147 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 +#: include/items.php:4938 +msgid "Cancel" +msgstr "" + +#: mod/contacts.php:460 +msgid "Contact has been removed." msgstr "" #: mod/contacts.php:498 #, php-format +msgid "You are mutual friends with %s" +msgstr "" + +#: mod/contacts.php:502 +#, php-format msgid "You are sharing with %s" msgstr "" -#: mod/contacts.php:503 +#: mod/contacts.php:507 #, php-format msgid "%s is sharing with you" msgstr "" -#: mod/contacts.php:523 +#: mod/contacts.php:527 msgid "Private communications are not available for this contact." msgstr "" -#: mod/contacts.php:530 +#: mod/contacts.php:530 mod/admin.php:643 +msgid "Never" +msgstr "" + +#: mod/contacts.php:534 msgid "(Update was successful)" msgstr "" -#: mod/contacts.php:530 +#: mod/contacts.php:534 msgid "(Update was not successful)" msgstr "" -#: mod/contacts.php:532 +#: mod/contacts.php:536 msgid "Suggest friends" msgstr "" -#: mod/contacts.php:536 +#: mod/contacts.php:540 #, php-format msgid "Network type: %s" msgstr "" -#: mod/contacts.php:539 include/contact_widgets.php:200 +#: mod/contacts.php:543 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: mod/contacts.php:544 +#: mod/contacts.php:548 msgid "View all contacts" msgstr "" -#: mod/contacts.php:552 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820 +#: mod/admin.php:1114 +msgid "Unblock" +msgstr "" + +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820 +#: mod/admin.php:1113 +msgid "Block" +msgstr "" + +#: mod/contacts.php:556 msgid "Toggle Blocked status" msgstr "" -#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821 msgid "Unignore" msgstr "" -#: mod/contacts.php:559 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821 +#: mod/notifications.php:54 mod/notifications.php:179 mod/notifications.php:259 +msgid "Ignore" +msgstr "" + +#: mod/contacts.php:564 msgid "Toggle Ignored status" msgstr "" -#: mod/contacts.php:564 mod/contacts.php:800 +#: mod/contacts.php:570 mod/contacts.php:822 msgid "Unarchive" msgstr "" -#: mod/contacts.php:564 mod/contacts.php:800 +#: mod/contacts.php:570 mod/contacts.php:822 msgid "Archive" msgstr "" -#: mod/contacts.php:567 +#: mod/contacts.php:573 msgid "Toggle Archive status" msgstr "" -#: mod/contacts.php:571 +#: mod/contacts.php:578 msgid "Repair" msgstr "" -#: mod/contacts.php:574 +#: mod/contacts.php:581 msgid "Advanced Contact Settings" msgstr "" -#: mod/contacts.php:581 +#: mod/contacts.php:589 msgid "Communications lost with this contact!" msgstr "" -#: mod/contacts.php:584 +#: mod/contacts.php:592 msgid "Fetch further information for feeds" msgstr "" -#: mod/contacts.php:585 +#: mod/contacts.php:593 mod/admin.php:652 +msgid "Disabled" +msgstr "" + +#: mod/contacts.php:593 msgid "Fetch information" msgstr "" -#: mod/contacts.php:585 +#: mod/contacts.php:593 msgid "Fetch information and keywords" msgstr "" -#: mod/contacts.php:594 +#: mod/contacts.php:606 msgid "Contact Editor" msgstr "" -#: mod/contacts.php:597 +#: mod/contacts.php:608 mod/manage.php:124 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/events.php:574 mod/content.php:712 mod/install.php:253 +#: mod/install.php:291 mod/mood.php:137 mod/profiles.php:696 +#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 mod/photos.php:1129 +#: mod/photos.php:1253 mod/photos.php:1571 mod/photos.php:1622 +#: mod/photos.php:1670 mod/photos.php:1758 object/Item.php:710 +#: view/theme/cleanzero/config.php:80 view/theme/dispy/config.php:70 +#: view/theme/quattro/config.php:64 view/theme/diabook/config.php:148 +#: view/theme/diabook/theme.php:633 view/theme/vier/config.php:107 +#: view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "" + +#: mod/contacts.php:609 msgid "Profile Visibility" msgstr "" -#: mod/contacts.php:598 +#: mod/contacts.php:610 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: mod/contacts.php:599 +#: mod/contacts.php:611 msgid "Contact Information / Notes" msgstr "" -#: mod/contacts.php:600 +#: mod/contacts.php:612 msgid "Edit contact notes" msgstr "" -#: mod/contacts.php:606 +#: mod/contacts.php:617 mod/contacts.php:860 mod/viewcontacts.php:66 +#: mod/nogroup.php:41 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: mod/contacts.php:618 msgid "Block/Unblock contact" msgstr "" -#: mod/contacts.php:607 +#: mod/contacts.php:619 msgid "Ignore contact" msgstr "" -#: mod/contacts.php:608 +#: mod/contacts.php:620 msgid "Repair URL settings" msgstr "" -#: mod/contacts.php:609 +#: mod/contacts.php:621 msgid "View conversations" msgstr "" -#: mod/contacts.php:611 +#: mod/contacts.php:623 msgid "Delete contact" msgstr "" -#: mod/contacts.php:615 +#: mod/contacts.php:627 msgid "Last update:" msgstr "" -#: mod/contacts.php:617 +#: mod/contacts.php:629 msgid "Update public posts" msgstr "" -#: mod/contacts.php:626 +#: mod/contacts.php:631 mod/admin.php:1650 +msgid "Update now" +msgstr "" + +#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 +#: include/conversation.php:924 +msgid "Connect/Follow" +msgstr "" + +#: mod/contacts.php:640 msgid "Currently blocked" msgstr "" -#: mod/contacts.php:627 +#: mod/contacts.php:641 msgid "Currently ignored" msgstr "" -#: mod/contacts.php:628 +#: mod/contacts.php:642 msgid "Currently archived" msgstr "" -#: mod/contacts.php:629 +#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "" + +#: mod/contacts.php:643 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: mod/contacts.php:630 +#: mod/contacts.php:644 msgid "Notification for new posts" msgstr "" -#: mod/contacts.php:630 +#: mod/contacts.php:644 msgid "Send a notification of every new post of this contact" msgstr "" -#: mod/contacts.php:633 +#: mod/contacts.php:647 msgid "Blacklisted keywords" msgstr "" -#: mod/contacts.php:633 +#: mod/contacts.php:647 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: mod/contacts.php:640 +#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "" -#: mod/contacts.php:686 +#: mod/contacts.php:700 msgid "Suggestions" msgstr "" -#: mod/contacts.php:689 +#: mod/contacts.php:703 msgid "Suggest potential friends" msgstr "" -#: mod/contacts.php:693 mod/group.php:192 +#: mod/contacts.php:708 mod/group.php:192 msgid "All Contacts" msgstr "" -#: mod/contacts.php:696 +#: mod/contacts.php:711 msgid "Show all contacts" msgstr "" -#: mod/contacts.php:700 +#: mod/contacts.php:716 msgid "Unblocked" msgstr "" -#: mod/contacts.php:703 +#: mod/contacts.php:719 msgid "Only show unblocked contacts" msgstr "" -#: mod/contacts.php:708 +#: mod/contacts.php:725 msgid "Blocked" msgstr "" -#: mod/contacts.php:711 +#: mod/contacts.php:728 msgid "Only show blocked contacts" msgstr "" -#: mod/contacts.php:716 +#: mod/contacts.php:734 msgid "Ignored" msgstr "" -#: mod/contacts.php:719 +#: mod/contacts.php:737 msgid "Only show ignored contacts" msgstr "" -#: mod/contacts.php:724 +#: mod/contacts.php:743 msgid "Archived" msgstr "" -#: mod/contacts.php:727 +#: mod/contacts.php:746 msgid "Only show archived contacts" msgstr "" -#: mod/contacts.php:732 +#: mod/contacts.php:752 msgid "Hidden" msgstr "" -#: mod/contacts.php:735 +#: mod/contacts.php:755 msgid "Only show hidden contacts" msgstr "" -#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 -#: include/nav.php:124 include/nav.php:186 +#: mod/contacts.php:807 include/text.php:1005 include/nav.php:123 +#: include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "" -#: mod/contacts.php:790 +#: mod/contacts.php:811 msgid "Search your contacts" msgstr "" -#: mod/contacts.php:791 mod/directory.php:63 +#: mod/contacts.php:812 msgid "Finding: " msgstr "" -#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:813 mod/directory.php:202 include/contact_widgets.php:34 msgid "Find" msgstr "" -#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:819 mod/settings.php:146 mod/settings.php:674 msgid "Update" msgstr "" -#: mod/contacts.php:814 +#: mod/contacts.php:823 mod/group.php:171 mod/admin.php:1112 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 +#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 +msgid "Delete" +msgstr "" + +#: mod/contacts.php:836 msgid "Mutual Friendship" msgstr "" -#: mod/contacts.php:818 +#: mod/contacts.php:840 msgid "is a fan of yours" msgstr "" -#: mod/contacts.php:822 +#: mod/contacts.php:844 msgid "you are a fan of" msgstr "" -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" +#: mod/contacts.php:861 mod/nogroup.php:42 +msgid "Edit contact" msgstr "" -#: mod/videos.php:118 -msgid "Delete Video" +#: mod/hcard.php:10 +msgid "No profile" msgstr "" -#: mod/videos.php:197 -msgid "No videos selected" +#: mod/manage.php:120 +msgid "Manage Identities and/or Pages" msgstr "" -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "" - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "" - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:68 +#: mod/manage.php:121 msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also " -"to inform your friends that you moved here." +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" msgstr "" -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" +#: mod/manage.php:122 +msgid "Select an identity to manage: " msgstr "" -#: mod/uimport.php:70 -msgid "Account file" +#: mod/oexchange.php:25 +msgid "Post successful." msgstr "" -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" +#: mod/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" msgstr "" -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." msgstr "" -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" msgstr "" -#: mod/allfriends.php:44 -msgid "No friends to display." +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:530 +#: include/identity.php:611 include/identity.php:641 include/nav.php:76 +#: view/theme/diabook/theme.php:124 +msgid "Profile" msgstr "" -#: mod/tagrm.php:41 -msgid "Tag removed" +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." msgstr "" -#: mod/tagrm.php:79 -msgid "Remove Item Tag" +#: mod/profperm.php:115 +msgid "Visible To" msgstr "" -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" msgstr "" -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1157 mod/admin.php:1378 +#: mod/notice.php:15 include/items.php:4894 +msgid "Item not found." +msgstr "" + +#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 +msgid "Public access denied." +msgstr "" + +#: mod/display.php:331 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "" + +#: mod/display.php:493 +msgid "Item has been removed." msgstr "" #: mod/newmember.php:6 @@ -3563,6 +558,12 @@ msgid "" "join." msgstr "" +#: mod/newmember.php:22 mod/admin.php:1209 mod/admin.php:1454 +#: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "" + #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "" @@ -3582,13 +583,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:530 include/identity.php:611 include/identity.php:641 -#: include/nav.php:77 -msgid "Profile" -msgstr "" - -#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:709 msgid "Upload Profile Photo" msgstr "" @@ -3687,7 +682,7 @@ msgid "" "hours." msgstr "" -#: mod/newmember.php:66 include/group.php:270 +#: mod/newmember.php:66 include/group.php:272 msgid "Groups" msgstr "" @@ -3727,32 +722,5053 @@ msgid "" "features and resources." msgstr "" -#: mod/search.php:25 mod/network.php:187 +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:70 mod/photos.php:184 +#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1854 include/user.php:343 include/user.php:350 +#: include/user.php:357 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "" + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "" + +#: mod/profile_photo.php:144 mod/wall_upload.php:151 mod/photos.php:803 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:153 mod/wall_upload.php:183 mod/photos.php:843 +msgid "Unable to process image." +msgstr "" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:245 +msgid "Upload" +msgstr "" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "" + +#: mod/profile_photo.php:301 mod/wall_upload.php:216 mod/photos.php:870 +msgid "Image upload failed." +msgstr "" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 +#: include/text.php:1988 include/diaspora.php:2140 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 +#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "" + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 object/Item.php:235 +msgid "ignored" +msgstr "" + +#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "" + +#: mod/filer.php:30 include/conversation.php:1133 include/conversation.php:1151 +msgid "Save to Folder:" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "" + +#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:997 +msgid "Save" +msgstr "" + +#: mod/follow.php:18 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "" + +#: mod/follow.php:29 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:38 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:45 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:52 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:104 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "" + +#: mod/follow.php:105 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "" + +#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 +#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 +#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 +#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/profiles.php:687 mod/api.php:106 +msgid "No" +msgstr "" + +#: mod/follow.php:106 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "" + +#: mod/follow.php:112 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "" + +#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 +#: mod/directory.php:139 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "" + +#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 +#: include/identity.php:277 include/identity.php:582 +msgid "About:" +msgstr "" + +#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:576 +msgid "Tags:" +msgstr "" + +#: mod/follow.php:162 +msgid "Contact added" +msgstr "" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "" + +#: mod/item.php:322 +msgid "Empty post discarded." +msgstr "" + +#: mod/item.php:461 mod/wall_upload.php:213 mod/wall_upload.php:227 +#: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 +msgid "Wall Photos" +msgstr "" + +#: mod/item.php:835 +msgid "System error. Post not saved." +msgstr "" + +#: mod/item.php:964 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social network." +msgstr "" + +#: mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: mod/item.php:967 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: mod/item.php:971 +#, php-format +msgid "%s posted an update." +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "" + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "" + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "" + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "" + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "" + +#: mod/group.php:94 mod/group.php:178 include/group.php:275 +msgid "Group Name: " +msgstr "" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "" + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "" + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "" + +#: mod/group.php:190 +msgid "Members" +msgstr "" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "" + +#: mod/apps.php:11 +msgid "Applications" +msgstr "" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "" + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "" + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "" + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "" + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "" + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "" + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "" + +#: mod/dfrn_confirm.php:487 include/conversation.php:185 +#: include/diaspora.php:636 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4313 +msgid "[Name Withheld]" +msgstr "" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "" + +#: mod/videos.php:115 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:120 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:199 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:300 mod/photos.php:1079 +msgid "Access to this item is restricted." +msgstr "" + +#: mod/videos.php:375 include/text.php:1458 +msgid "View Video" +msgstr "" + +#: mod/videos.php:382 mod/photos.php:1882 +msgid "View Album" +msgstr "" + +#: mod/videos.php:391 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:393 +msgid "Upload New Videos" +msgstr "" + +#: mod/tagger.php:95 include/conversation.php:278 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "" + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "" + +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1702 +msgid "Invalid request." +msgstr "" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "" + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the " +"verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: mod/lostpass.php:109 boot.php:1295 +msgid "Password Reset" +msgstr "" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "" + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately " +"to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "" + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\t\t\t" +msgstr "" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "" + +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:1986 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: mod/like.php:189 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: mod/ping.php:257 +msgid "{0} wants to be your friend" +msgstr "" + +#: mod/ping.php:272 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:287 +msgid "{0} requested registration" +msgstr "" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "" + +#: mod/viewcontacts.php:83 include/text.php:917 +msgid "View Contacts" +msgstr "" + +#: mod/notifications.php:29 +msgid "Invalid request identifier." +msgstr "" + +#: mod/notifications.php:38 mod/notifications.php:180 mod/notifications.php:260 +msgid "Discard" +msgstr "" + +#: mod/notifications.php:81 +msgid "System" +msgstr "" + +#: mod/notifications.php:87 mod/admin.php:228 include/nav.php:154 +msgid "Network" +msgstr "" + +#: mod/notifications.php:93 mod/network.php:385 +msgid "Personal" +msgstr "" + +#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "" + +#: mod/notifications.php:105 include/nav.php:162 +msgid "Introductions" +msgstr "" + +#: mod/notifications.php:130 +msgid "Show Ignored Requests" +msgstr "" + +#: mod/notifications.php:130 +msgid "Hide Ignored Requests" +msgstr "" + +#: mod/notifications.php:164 mod/notifications.php:234 +msgid "Notification type: " +msgstr "" + +#: mod/notifications.php:165 +msgid "Friend Suggestion" +msgstr "" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "Post a new friend activity" +msgstr "" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "if applicable" +msgstr "" + +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1110 +msgid "Approve" +msgstr "" + +#: mod/notifications.php:196 +msgid "Claims to be known to you: " +msgstr "" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "" + +#: mod/notifications.php:196 +msgid "no" +msgstr "" + +#: mod/notifications.php:197 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:200 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:208 +msgid "Friend" +msgstr "" + +#: mod/notifications.php:209 +msgid "Sharer" +msgstr "" + +#: mod/notifications.php:209 +msgid "Fan/Admirer" +msgstr "" + +#: mod/notifications.php:235 +msgid "Friend/Connect Request" +msgstr "" + +#: mod/notifications.php:235 +msgid "New Follower" +msgstr "" + +#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "" + +#: mod/notifications.php:266 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:269 include/nav.php:165 +msgid "Notifications" +msgstr "" + +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 +#, php-format +msgid "%s liked %s's post" +msgstr "" + +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 +#, php-format +msgid "%s disliked %s's post" +msgstr "" + +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 +#, php-format +msgid "%s is now friends with %s" +msgstr "" + +#: mod/notifications.php:339 mod/notifications.php:468 +#, php-format +msgid "%s created a new post" +msgstr "" + +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 +#, php-format +msgid "%s commented on %s's post" +msgstr "" + +#: mod/notifications.php:355 +msgid "No more network notifications." +msgstr "" + +#: mod/notifications.php:359 +msgid "Network Notifications" +msgstr "" + +#: mod/notifications.php:385 mod/notify.php:72 +msgid "No more system notifications." +msgstr "" + +#: mod/notifications.php:389 mod/notify.php:76 +msgid "System Notifications" +msgstr "" + +#: mod/notifications.php:484 +msgid "No more personal notifications." +msgstr "" + +#: mod/notifications.php:488 +msgid "Personal Notifications" +msgstr "" + +#: mod/notifications.php:569 +msgid "No more home notifications." +msgstr "" + +#: mod/notifications.php:573 +msgid "Home Notifications" +msgstr "" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "" + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "" + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "" + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "" + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "" + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "" + +#: mod/navigation.php:19 include/nav.php:33 +msgid "Nothing new here" +msgstr "" + +#: mod/navigation.php:23 include/nav.php:37 +msgid "Clear notifications" +msgstr "" + +#: mod/message.php:15 include/nav.php:174 +msgid "New Message" +msgstr "" + +#: mod/message.php:70 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "" + +#: mod/message.php:74 +msgid "Unable to locate contact information." +msgstr "" + +#: mod/message.php:77 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "" + +#: mod/message.php:80 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "" + +#: mod/message.php:83 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "" + +#: mod/message.php:189 include/nav.php:171 +msgid "Messages" +msgstr "" + +#: mod/message.php:214 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:234 +msgid "Message deleted." +msgstr "" + +#: mod/message.php:265 +msgid "Conversation removed." +msgstr "" + +#: mod/message.php:290 mod/message.php:298 mod/message.php:427 +#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1129 include/conversation.php:1147 +msgid "Please enter a link URL:" +msgstr "" + +#: mod/message.php:326 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "" + +#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144 +msgid "To:" +msgstr "" + +#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "" + +#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "" + +#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 +#: mod/editpost.php:109 include/conversation.php:1184 +msgid "Upload photo" +msgstr "" + +#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 +#: mod/editpost.php:113 include/conversation.php:1188 +msgid "Insert web link" +msgstr "" + +#: mod/message.php:341 mod/message.php:526 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 +#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: include/conversation.php:1202 +msgid "Please wait" +msgstr "" + +#: mod/message.php:368 +msgid "No messages." +msgstr "" + +#: mod/message.php:411 +msgid "Message not available." +msgstr "" + +#: mod/message.php:481 +msgid "Delete message" +msgstr "" + +#: mod/message.php:507 mod/message.php:582 +msgid "Delete conversation" +msgstr "" + +#: mod/message.php:509 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:513 +msgid "Send Reply" +msgstr "" + +#: mod/message.php:555 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:558 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:561 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:585 +msgid "D, d M Y - g:i A" +msgstr "" + +#: mod/message.php:588 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "" + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "" + +#: mod/crepair.php:140 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:141 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "" + +#: mod/crepair.php:154 mod/crepair.php:156 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:154 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:154 mod/crepair.php:156 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:162 +msgid "Repair Contact Settings" +msgstr "" + +#: mod/crepair.php:166 +msgid "Return to contact editor" +msgstr "" + +#: mod/crepair.php:168 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:169 mod/admin.php:1108 mod/admin.php:1120 mod/admin.php:1121 +#: mod/admin.php:1134 mod/settings.php:650 mod/settings.php:676 +msgid "Name" +msgstr "" + +#: mod/crepair.php:170 +msgid "Account Nickname" +msgstr "" + +#: mod/crepair.php:171 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: mod/crepair.php:172 +msgid "Account URL" +msgstr "" + +#: mod/crepair.php:173 +msgid "Friend Request URL" +msgstr "" + +#: mod/crepair.php:174 +msgid "Friend Confirm URL" +msgstr "" + +#: mod/crepair.php:175 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:176 +msgid "Poll/Feed URL" +msgstr "" + +#: mod/crepair.php:177 +msgid "New photo from this URL" +msgstr "" + +#: mod/crepair.php:178 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:183 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 +msgid "Login" +msgstr "" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" + +#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:84 +#: mod/suggest.php:97 include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "" + +#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 +#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:335 +#: include/conversation.php:912 include/conversation.php:926 +msgid "View Profile" +msgstr "" + +#: mod/dirfind.php:217 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:224 mod/match.php:104 +msgid "No matches" +msgstr "" + +#: mod/fbrowser.php:32 include/identity.php:649 include/nav.php:77 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "" + +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 mod/photos.php:184 +#: mod/photos.php:1111 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1830 mod/photos.php:1842 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "" + +#: mod/fbrowser.php:125 +msgid "Files" +msgstr "" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "" + +#: mod/admin.php:80 +msgid "Theme settings updated." +msgstr "" + +#: mod/admin.php:127 mod/admin.php:709 +msgid "Site" +msgstr "" + +#: mod/admin.php:128 mod/admin.php:653 mod/admin.php:1103 mod/admin.php:1118 +msgid "Users" +msgstr "" + +#: mod/admin.php:129 mod/admin.php:1207 mod/admin.php:1267 mod/settings.php:66 +msgid "Plugins" +msgstr "" + +#: mod/admin.php:130 mod/admin.php:1452 mod/admin.php:1503 +msgid "Themes" +msgstr "" + +#: mod/admin.php:131 +msgid "DB updates" +msgstr "" + +#: mod/admin.php:132 mod/admin.php:223 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1591 +msgid "Logs" +msgstr "" + +#: mod/admin.php:148 +msgid "probe address" +msgstr "" + +#: mod/admin.php:149 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:154 include/nav.php:194 +msgid "Admin" +msgstr "" + +#: mod/admin.php:155 +msgid "Plugin Features" +msgstr "" + +#: mod/admin.php:157 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:158 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:708 mod/admin.php:1102 +#: mod/admin.php:1206 mod/admin.php:1266 mod/admin.php:1451 mod/admin.php:1502 +#: mod/admin.php:1590 +msgid "Administration" +msgstr "" + +#: mod/admin.php:225 +msgid "ID" +msgstr "" + +#: mod/admin.php:226 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:227 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:229 +msgid "Created" +msgstr "" + +#: mod/admin.php:230 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:231 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:243 mod/admin.php:1056 +msgid "Normal Account" +msgstr "" + +#: mod/admin.php:244 mod/admin.php:1057 +msgid "Soapbox Account" +msgstr "" + +#: mod/admin.php:245 mod/admin.php:1058 +msgid "Community/Celebrity Account" +msgstr "" + +#: mod/admin.php:246 mod/admin.php:1059 +msgid "Automatic Friend Account" +msgstr "" + +#: mod/admin.php:247 +msgid "Blog Account" +msgstr "" + +#: mod/admin.php:248 +msgid "Private Forum" +msgstr "" + +#: mod/admin.php:267 +msgid "Message queues" +msgstr "" + +#: mod/admin.php:273 +msgid "Summary" +msgstr "" + +#: mod/admin.php:275 +msgid "Registered users" +msgstr "" + +#: mod/admin.php:277 +msgid "Pending registrations" +msgstr "" + +#: mod/admin.php:278 +msgid "Version" +msgstr "" + +#: mod/admin.php:283 +msgid "Active plugins" +msgstr "" + +#: mod/admin.php:306 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:585 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:593 +msgid "Site settings updated." +msgstr "" + +#: mod/admin.php:617 mod/settings.php:901 +msgid "No special theme for mobile devices" +msgstr "" + +#: mod/admin.php:636 +msgid "No community page" +msgstr "" + +#: mod/admin.php:637 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:638 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:644 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:645 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "" + +#: mod/admin.php:646 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "" + +#: mod/admin.php:647 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "" + +#: mod/admin.php:648 include/contact_selectors.php:59 +msgid "Daily" +msgstr "" + +#: mod/admin.php:654 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:655 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:659 +msgid "One month" +msgstr "" + +#: mod/admin.php:660 +msgid "Three months" +msgstr "" + +#: mod/admin.php:661 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:662 +msgid "One year" +msgstr "" + +#: mod/admin.php:667 +msgid "Multi user instance" +msgstr "" + +#: mod/admin.php:690 +msgid "Closed" +msgstr "" + +#: mod/admin.php:691 +msgid "Requires approval" +msgstr "" + +#: mod/admin.php:692 +msgid "Open" +msgstr "" + +#: mod/admin.php:696 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: mod/admin.php:697 +msgid "Force all links to use SSL" +msgstr "" + +#: mod/admin.php:698 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: mod/admin.php:710 mod/admin.php:1268 mod/admin.php:1504 mod/admin.php:1592 +#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 +#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 +msgid "Save Settings" +msgstr "" + +#: mod/admin.php:711 mod/register.php:260 +msgid "Registration" +msgstr "" + +#: mod/admin.php:712 +msgid "File upload" +msgstr "" + +#: mod/admin.php:713 +msgid "Policies" +msgstr "" + +#: mod/admin.php:714 +msgid "Advanced" +msgstr "" + +#: mod/admin.php:715 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:716 +msgid "Performance" +msgstr "" + +#: mod/admin.php:717 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:720 +msgid "Site name" +msgstr "" + +#: mod/admin.php:721 +msgid "Host name" +msgstr "" + +#: mod/admin.php:722 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:722 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:723 +msgid "Banner/Logo" +msgstr "" + +#: mod/admin.php:724 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:724 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:725 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:725 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:726 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:726 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:727 +msgid "System language" +msgstr "" + +#: mod/admin.php:728 +msgid "System theme" +msgstr "" + +#: mod/admin.php:728 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: mod/admin.php:729 +msgid "Mobile system theme" +msgstr "" + +#: mod/admin.php:729 +msgid "Theme for mobile devices" +msgstr "" + +#: mod/admin.php:730 +msgid "SSL link policy" +msgstr "" + +#: mod/admin.php:730 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: mod/admin.php:731 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:731 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " +"to endless loops." +msgstr "" + +#: mod/admin.php:732 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:732 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:733 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: mod/admin.php:733 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: mod/admin.php:734 +msgid "Single user instance" +msgstr "" + +#: mod/admin.php:734 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: mod/admin.php:735 +msgid "Maximum image size" +msgstr "" + +#: mod/admin.php:735 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: mod/admin.php:736 +msgid "Maximum image length" +msgstr "" + +#: mod/admin.php:736 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: mod/admin.php:737 +msgid "JPEG image quality" +msgstr "" + +#: mod/admin.php:737 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: mod/admin.php:739 +msgid "Register policy" +msgstr "" + +#: mod/admin.php:740 +msgid "Maximum Daily Registrations" +msgstr "" + +#: mod/admin.php:740 +msgid "" +"If registration is permitted above, this sets the maximum number of new user " +"registrations to accept per day. If register is set to closed, this setting " +"has no effect." +msgstr "" + +#: mod/admin.php:741 +msgid "Register text" +msgstr "" + +#: mod/admin.php:741 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: mod/admin.php:742 +msgid "Accounts abandoned after x days" +msgstr "" + +#: mod/admin.php:742 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: mod/admin.php:743 +msgid "Allowed friend domains" +msgstr "" + +#: mod/admin.php:743 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: mod/admin.php:744 +msgid "Allowed email domains" +msgstr "" + +#: mod/admin.php:744 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: mod/admin.php:745 +msgid "Block public" +msgstr "" + +#: mod/admin.php:745 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: mod/admin.php:746 +msgid "Force publish" +msgstr "" + +#: mod/admin.php:746 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: mod/admin.php:747 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:747 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:748 +msgid "Allow threaded items" +msgstr "" + +#: mod/admin.php:748 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: mod/admin.php:749 +msgid "Private posts by default for new users" +msgstr "" + +#: mod/admin.php:749 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: mod/admin.php:750 +msgid "Don't include post content in email notifications" +msgstr "" + +#: mod/admin.php:750 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: mod/admin.php:751 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:751 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:752 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:752 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a while." +msgstr "" + +#: mod/admin.php:753 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:753 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:754 +msgid "Block multiple registrations" +msgstr "" + +#: mod/admin.php:754 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: mod/admin.php:755 +msgid "OpenID support" +msgstr "" + +#: mod/admin.php:755 +msgid "OpenID support for registration and logins." +msgstr "" + +#: mod/admin.php:756 +msgid "Fullname check" +msgstr "" + +#: mod/admin.php:756 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: mod/admin.php:757 +msgid "UTF-8 Regular expressions" +msgstr "" + +#: mod/admin.php:757 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: mod/admin.php:758 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:758 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:759 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:759 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:760 +msgid "Enable OStatus support" +msgstr "" + +#: mod/admin.php:760 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:761 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:761 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:762 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:764 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub " +"directory." +msgstr "" + +#: mod/admin.php:765 +msgid "Enable Diaspora support" +msgstr "" + +#: mod/admin.php:765 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: mod/admin.php:766 +msgid "Only allow Friendica contacts" +msgstr "" + +#: mod/admin.php:766 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: mod/admin.php:767 +msgid "Verify SSL" +msgstr "" + +#: mod/admin.php:767 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you " +"cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: mod/admin.php:768 +msgid "Proxy user" +msgstr "" + +#: mod/admin.php:769 +msgid "Proxy URL" +msgstr "" + +#: mod/admin.php:770 +msgid "Network timeout" +msgstr "" + +#: mod/admin.php:770 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: mod/admin.php:771 +msgid "Delivery interval" +msgstr "" + +#: mod/admin.php:771 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: mod/admin.php:772 +msgid "Poll interval" +msgstr "" + +#: mod/admin.php:772 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: mod/admin.php:773 +msgid "Maximum Load Average" +msgstr "" + +#: mod/admin.php:773 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: mod/admin.php:774 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:774 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:776 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:776 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:777 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:777 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:778 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:778 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:779 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:779 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:780 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:780 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:782 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:782 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:784 +msgid "Use MySQL full text engine" +msgstr "" + +#: mod/admin.php:784 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: mod/admin.php:785 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:785 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:786 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:786 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:787 +msgid "Path to item cache" +msgstr "" + +#: mod/admin.php:787 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:788 +msgid "Cache duration in seconds" +msgstr "" + +#: mod/admin.php:788 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One " +"day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:789 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:789 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:790 +msgid "Path for lock file" +msgstr "" + +#: mod/admin.php:790 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:791 +msgid "Temp path" +msgstr "" + +#: mod/admin.php:791 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:792 +msgid "Base path to installation" +msgstr "" + +#: mod/admin.php:792 +msgid "" +"If the system cannot detect the correct path to your installation, enter the " +"correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:793 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:793 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on " +"systems with very low bandwith." +msgstr "" + +#: mod/admin.php:794 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:794 +msgid "" +"The old style pager has page numbers but slows down massively the page speed." +msgstr "" + +#: mod/admin.php:795 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:795 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:797 +msgid "New base url" +msgstr "" + +#: mod/admin.php:797 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts " +"of all users." +msgstr "" + +#: mod/admin.php:799 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:799 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:800 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:800 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:818 +msgid "Update has been marked successful" +msgstr "" + +#: mod/admin.php:826 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:829 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:841 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:844 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: mod/admin.php:848 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: mod/admin.php:850 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:869 +msgid "No failed updates." +msgstr "" + +#: mod/admin.php:870 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:875 +msgid "Failed Updates" +msgstr "" + +#: mod/admin.php:876 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: mod/admin.php:877 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: mod/admin.php:878 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: mod/admin.php:910 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:913 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default " +"profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" + +#: mod/admin.php:945 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: mod/admin.php:957 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:964 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: mod/admin.php:1003 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: mod/admin.php:1011 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: mod/admin.php:1011 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: mod/admin.php:1104 +msgid "Add User" +msgstr "" + +#: mod/admin.php:1105 +msgid "select all" +msgstr "" + +#: mod/admin.php:1106 +msgid "User registrations waiting for confirm" +msgstr "" + +#: mod/admin.php:1107 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1108 +msgid "Request date" +msgstr "" + +#: mod/admin.php:1108 mod/admin.php:1120 mod/admin.php:1121 mod/admin.php:1136 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "" + +#: mod/admin.php:1109 +msgid "No registrations." +msgstr "" + +#: mod/admin.php:1111 +msgid "Deny" +msgstr "" + +#: mod/admin.php:1115 +msgid "Site admin" +msgstr "" + +#: mod/admin.php:1116 +msgid "Account expired" +msgstr "" + +#: mod/admin.php:1119 +msgid "New User" +msgstr "" + +#: mod/admin.php:1120 mod/admin.php:1121 +msgid "Register date" +msgstr "" + +#: mod/admin.php:1120 mod/admin.php:1121 +msgid "Last login" +msgstr "" + +#: mod/admin.php:1120 mod/admin.php:1121 +msgid "Last item" +msgstr "" + +#: mod/admin.php:1120 +msgid "Deleted since" +msgstr "" + +#: mod/admin.php:1121 mod/settings.php:41 +msgid "Account" +msgstr "" + +#: mod/admin.php:1123 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1124 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: mod/admin.php:1134 +msgid "Name of the new user." +msgstr "" + +#: mod/admin.php:1135 +msgid "Nickname" +msgstr "" + +#: mod/admin.php:1135 +msgid "Nickname of the new user." +msgstr "" + +#: mod/admin.php:1136 +msgid "Email address of the new user." +msgstr "" + +#: mod/admin.php:1169 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: mod/admin.php:1173 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: mod/admin.php:1183 mod/admin.php:1407 +msgid "Disable" +msgstr "" + +#: mod/admin.php:1185 mod/admin.php:1409 +msgid "Enable" +msgstr "" + +#: mod/admin.php:1208 mod/admin.php:1453 +msgid "Toggle" +msgstr "" + +#: mod/admin.php:1216 mod/admin.php:1463 +msgid "Author: " +msgstr "" + +#: mod/admin.php:1217 mod/admin.php:1464 +msgid "Maintainer: " +msgstr "" + +#: mod/admin.php:1269 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1367 +msgid "No themes found." +msgstr "" + +#: mod/admin.php:1445 +msgid "Screenshot" +msgstr "" + +#: mod/admin.php:1505 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1509 +msgid "[Experimental]" +msgstr "" + +#: mod/admin.php:1510 +msgid "[Unsupported]" +msgstr "" + +#: mod/admin.php:1537 +msgid "Log settings updated." +msgstr "" + +#: mod/admin.php:1593 +msgid "Clear" +msgstr "" + +#: mod/admin.php:1599 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1600 +msgid "Log file" +msgstr "" + +#: mod/admin.php:1600 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: mod/admin.php:1601 +msgid "Log level" +msgstr "" + +#: mod/admin.php:1651 include/acl_selectors.php:347 +msgid "Close" +msgstr "" + +#: mod/admin.php:1657 +msgid "FTP Host" +msgstr "" + +#: mod/admin.php:1658 +msgid "FTP Path" +msgstr "" + +#: mod/admin.php:1659 +msgid "FTP User" +msgstr "" + +#: mod/admin.php:1660 +msgid "FTP Password" +msgstr "" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "" + +#: mod/network.php:195 mod/search.php:25 msgid "Remove term" msgstr "" -#: mod/search.php:34 mod/network.php:196 include/features.php:42 +#: mod/network.php:204 mod/search.php:34 include/features.php:43 msgid "Saved Searches" msgstr "" -#: mod/search.php:107 include/text.php:996 include/nav.php:119 -msgid "Search" +#: mod/network.php:205 include/group.php:279 +msgid "add" msgstr "" -#: mod/search.php:199 mod/community.php:62 mod/community.php:71 +#: mod/network.php:366 +msgid "Commented Order" +msgstr "" + +#: mod/network.php:369 +msgid "Sort by Comment Date" +msgstr "" + +#: mod/network.php:374 +msgid "Posted Order" +msgstr "" + +#: mod/network.php:377 +msgid "Sort by Post Date" +msgstr "" + +#: mod/network.php:388 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:396 +msgid "New" +msgstr "" + +#: mod/network.php:399 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:407 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:410 +msgid "Interesting Links" +msgstr "" + +#: mod/network.php:418 +msgid "Starred" +msgstr "" + +#: mod/network.php:421 +msgid "Favourite Posts" +msgstr "" + +#: mod/network.php:480 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "" +msgstr[1] "" + +#: mod/network.php:483 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "" + +#: mod/network.php:550 mod/content.php:119 +msgid "No such group" +msgstr "" + +#: mod/network.php:567 mod/content.php:130 +msgid "Group is empty" +msgstr "" + +#: mod/network.php:578 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/network.php:596 +#, php-format +msgid "Contact: %s" +msgstr "" + +#: mod/network.php:600 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "" + +#: mod/network.php:605 +msgid "Invalid contact." +msgstr "" + +#: mod/allfriends.php:45 +msgid "No friends to display." +msgstr "" + +#: mod/allfriends.php:79 mod/common.php:122 +msgid "Forum" +msgstr "" + +#: mod/allfriends.php:92 +#, php-format +msgid "Friends of %s" +msgstr "" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "" + +#: mod/events.php:201 +msgid "Sun" +msgstr "" + +#: mod/events.php:202 +msgid "Mon" +msgstr "" + +#: mod/events.php:203 +msgid "Tue" +msgstr "" + +#: mod/events.php:204 +msgid "Wed" +msgstr "" + +#: mod/events.php:205 +msgid "Thu" +msgstr "" + +#: mod/events.php:206 +msgid "Fri" +msgstr "" + +#: mod/events.php:207 +msgid "Sat" +msgstr "" + +#: mod/events.php:208 mod/settings.php:936 include/text.php:1267 +msgid "Sunday" +msgstr "" + +#: mod/events.php:209 mod/settings.php:936 include/text.php:1267 +msgid "Monday" +msgstr "" + +#: mod/events.php:210 include/text.php:1267 +msgid "Tuesday" +msgstr "" + +#: mod/events.php:211 include/text.php:1267 +msgid "Wednesday" +msgstr "" + +#: mod/events.php:212 include/text.php:1267 +msgid "Thursday" +msgstr "" + +#: mod/events.php:213 include/text.php:1267 +msgid "Friday" +msgstr "" + +#: mod/events.php:214 include/text.php:1267 +msgid "Saturday" +msgstr "" + +#: mod/events.php:215 +msgid "Jan" +msgstr "" + +#: mod/events.php:216 +msgid "Feb" +msgstr "" + +#: mod/events.php:217 +msgid "Mar" +msgstr "" + +#: mod/events.php:218 +msgid "Apr" +msgstr "" + +#: mod/events.php:219 mod/events.php:231 include/text.php:1271 +msgid "May" +msgstr "" + +#: mod/events.php:220 +msgid "Jun" +msgstr "" + +#: mod/events.php:221 +msgid "Jul" +msgstr "" + +#: mod/events.php:222 +msgid "Aug" +msgstr "" + +#: mod/events.php:223 +msgid "Sept" +msgstr "" + +#: mod/events.php:224 +msgid "Oct" +msgstr "" + +#: mod/events.php:225 +msgid "Nov" +msgstr "" + +#: mod/events.php:226 +msgid "Dec" +msgstr "" + +#: mod/events.php:227 include/text.php:1271 +msgid "January" +msgstr "" + +#: mod/events.php:228 include/text.php:1271 +msgid "February" +msgstr "" + +#: mod/events.php:229 include/text.php:1271 +msgid "March" +msgstr "" + +#: mod/events.php:230 include/text.php:1271 +msgid "April" +msgstr "" + +#: mod/events.php:232 include/text.php:1271 +msgid "June" +msgstr "" + +#: mod/events.php:233 include/text.php:1271 +msgid "July" +msgstr "" + +#: mod/events.php:234 include/text.php:1271 +msgid "August" +msgstr "" + +#: mod/events.php:235 include/text.php:1271 +msgid "September" +msgstr "" + +#: mod/events.php:236 include/text.php:1271 +msgid "October" +msgstr "" + +#: mod/events.php:237 include/text.php:1271 +msgid "November" +msgstr "" + +#: mod/events.php:238 include/text.php:1271 +msgid "December" +msgstr "" + +#: mod/events.php:239 +msgid "today" +msgstr "" + +#: mod/events.php:240 include/datetime.php:288 +msgid "month" +msgstr "" + +#: mod/events.php:241 include/datetime.php:289 +msgid "week" +msgstr "" + +#: mod/events.php:242 include/datetime.php:290 +msgid "day" +msgstr "" + +#: mod/events.php:377 +msgid "l, F j" +msgstr "" + +#: mod/events.php:399 +msgid "Edit event" +msgstr "" + +#: mod/events.php:421 include/text.php:1714 include/text.php:1721 +msgid "link to source" +msgstr "" + +#: mod/events.php:456 include/identity.php:669 include/nav.php:79 +#: include/nav.php:140 view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "" + +#: mod/events.php:457 +msgid "Create New Event" +msgstr "" + +#: mod/events.php:458 +msgid "Previous" +msgstr "" + +#: mod/events.php:459 mod/install.php:212 +msgid "Next" +msgstr "" + +#: mod/events.php:554 +msgid "Event details" +msgstr "" + +#: mod/events.php:555 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:556 +msgid "Event Starts:" +msgstr "" + +#: mod/events.php:556 mod/events.php:568 +msgid "Required" +msgstr "" + +#: mod/events.php:558 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: mod/events.php:560 +msgid "Event Finishes:" +msgstr "" + +#: mod/events.php:562 +msgid "Adjust for viewer timezone" +msgstr "" + +#: mod/events.php:564 +msgid "Description:" +msgstr "" + +#: mod/events.php:568 +msgid "Title:" +msgstr "" + +#: mod/events.php:570 +msgid "Share this event" +msgstr "" + +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 +#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: object/Item.php:719 include/conversation.php:1217 +msgid "Preview" +msgstr "" + +#: mod/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: object/Item.php:133 include/conversation.php:634 +msgid "Select" +msgstr "" + +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:357 object/Item.php:358 include/conversation.php:675 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: mod/content.php:483 mod/content.php:866 object/Item.php:371 +#: include/conversation.php:695 +#, php-format +msgid "%s from %s" +msgstr "" + +#: mod/content.php:499 include/conversation.php:711 +msgid "View in context" +msgstr "" + +#: mod/content.php:605 object/Item.php:419 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:607 object/Item.php:421 object/Item.php:434 +#: include/text.php:1992 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: include/contact_widgets.php:205 include/items.php:5214 +msgid "show more" +msgstr "" + +#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +msgid "Private Message" +msgstr "" + +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 +msgid "I like this (toggle)" +msgstr "" + +#: mod/content.php:686 object/Item.php:253 +msgid "like" +msgstr "" + +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 +msgid "I don't like this (toggle)" +msgstr "" + +#: mod/content.php:687 object/Item.php:254 +msgid "dislike" +msgstr "" + +#: mod/content.php:689 object/Item.php:256 +msgid "Share this" +msgstr "" + +#: mod/content.php:689 object/Item.php:256 +msgid "share" +msgstr "" + +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 +#: mod/photos.php:1755 object/Item.php:707 +msgid "This is you" +msgstr "" + +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 +#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 +msgid "Comment" +msgstr "" + +#: mod/content.php:713 object/Item.php:711 +msgid "Bold" +msgstr "" + +#: mod/content.php:714 object/Item.php:712 +msgid "Italic" +msgstr "" + +#: mod/content.php:715 object/Item.php:713 +msgid "Underline" +msgstr "" + +#: mod/content.php:716 object/Item.php:714 +msgid "Quote" +msgstr "" + +#: mod/content.php:717 object/Item.php:715 +msgid "Code" +msgstr "" + +#: mod/content.php:718 object/Item.php:716 +msgid "Image" +msgstr "" + +#: mod/content.php:719 object/Item.php:717 +msgid "Link" +msgstr "" + +#: mod/content.php:720 object/Item.php:718 +msgid "Video" +msgstr "" + +#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "" + +#: mod/content.php:755 object/Item.php:217 +msgid "add star" +msgstr "" + +#: mod/content.php:756 object/Item.php:218 +msgid "remove star" +msgstr "" + +#: mod/content.php:757 object/Item.php:219 +msgid "toggle star status" +msgstr "" + +#: mod/content.php:760 object/Item.php:222 +msgid "starred" +msgstr "" + +#: mod/content.php:761 object/Item.php:242 +msgid "add tag" +msgstr "" + +#: mod/content.php:765 object/Item.php:137 +msgid "save to folder" +msgstr "" + +#: mod/content.php:856 object/Item.php:359 +msgid "to" +msgstr "" + +#: mod/content.php:857 object/Item.php:361 +msgid "Wall-to-Wall" +msgstr "" + +#: mod/content.php:858 object/Item.php:362 +msgid "via Wall-To-Wall:" +msgstr "" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "" + +#: mod/install.php:120 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:126 +msgid "Could not connect to database." +msgstr "" + +#: mod/install.php:130 +msgid "Could not create table." +msgstr "" + +#: mod/install.php:136 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: mod/install.php:141 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: mod/install.php:142 mod/install.php:211 mod/install.php:569 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: mod/install.php:154 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:208 +msgid "System check" +msgstr "" + +#: mod/install.php:213 +msgid "Check again" +msgstr "" + +#: mod/install.php:232 +msgid "Database connection" +msgstr "" + +#: mod/install.php:233 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "" + +#: mod/install.php:234 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: mod/install.php:235 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: mod/install.php:239 +msgid "Database Server Name" +msgstr "" + +#: mod/install.php:240 +msgid "Database Login Name" +msgstr "" + +#: mod/install.php:241 +msgid "Database Login Password" +msgstr "" + +#: mod/install.php:242 +msgid "Database Name" +msgstr "" + +#: mod/install.php:243 mod/install.php:282 +msgid "Site administrator email address" +msgstr "" + +#: mod/install.php:243 mod/install.php:282 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: mod/install.php:247 mod/install.php:285 +msgid "Please select a default timezone for your website" +msgstr "" + +#: mod/install.php:272 +msgid "Site settings" +msgstr "" + +#: mod/install.php:326 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: mod/install.php:327 +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. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:331 +msgid "PHP executable path" +msgstr "" + +#: mod/install.php:331 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: mod/install.php:336 +msgid "Command line PHP" +msgstr "" + +#: mod/install.php:345 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:346 +msgid "Found PHP version: " +msgstr "" + +#: mod/install.php:348 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:359 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: mod/install.php:360 +msgid "This is required for message delivery to work." +msgstr "" + +#: mod/install.php:362 +msgid "PHP register_argc_argv" +msgstr "" + +#: mod/install.php:383 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:384 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: mod/install.php:386 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:393 +msgid "libCurl PHP module" +msgstr "" + +#: mod/install.php:394 +msgid "GD graphics PHP module" +msgstr "" + +#: mod/install.php:395 +msgid "OpenSSL PHP module" +msgstr "" + +#: mod/install.php:396 +msgid "mysqli PHP module" +msgstr "" + +#: mod/install.php:397 +msgid "mb_string PHP module" +msgstr "" + +#: mod/install.php:398 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:403 mod/install.php:405 +msgid "Apache mod_rewrite module" +msgstr "" + +#: mod/install.php:403 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: mod/install.php:411 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: mod/install.php:415 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: mod/install.php:419 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: mod/install.php:423 +msgid "Error: mysqli PHP module required but not installed." +msgstr "" + +#: mod/install.php:427 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: mod/install.php:431 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:443 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:445 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:461 +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/install.php:462 +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/install.php:463 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: mod/install.php:464 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: mod/install.php:467 +msgid ".htconfig.php is writable" +msgstr "" + +#: mod/install.php:477 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: mod/install.php:478 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: mod/install.php:479 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: mod/install.php:480 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: mod/install.php:483 +msgid "view/smarty3 is writable" +msgstr "" + +#: mod/install.php:499 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:501 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:518 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:520 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:528 +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/install.php:567 +msgid "

    What next

    " +msgstr "" + +#: mod/install.php:568 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: mod/help.php:31 +msgid "Help:" +msgstr "" + +#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:273 +msgid "Help" +msgstr "" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "" + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: mod/match.php:83 +msgid "is interested in:" +msgstr "" + +#: mod/match.php:97 +msgid "Profile Match" +msgstr "" + +#: mod/share.php:38 +msgid "link" +msgstr "" + +#: mod/community.php:23 +msgid "Not available." +msgstr "" + +#: mod/community.php:32 include/nav.php:136 include/nav.php:138 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "" + +#: mod/community.php:62 mod/community.php:71 mod/search.php:218 msgid "No results." msgstr "" -#: mod/search.php:205 +#: mod/settings.php:34 mod/photos.php:109 +msgid "everybody" +msgstr "" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "" + +#: mod/settings.php:53 +msgid "Display" +msgstr "" + +#: mod/settings.php:60 mod/settings.php:853 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:72 include/nav.php:180 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:341 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:355 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: mod/settings.php:360 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: mod/settings.php:368 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:379 +msgid "Password changed." +msgstr "" + +#: mod/settings.php:381 +msgid "Password update failed. Please try again." +msgstr "" + +#: mod/settings.php:450 +msgid " Please use a shorter name." +msgstr "" + +#: mod/settings.php:452 +msgid " Name too short." +msgstr "" + +#: mod/settings.php:461 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:466 +msgid " Not valid email." +msgstr "" + +#: mod/settings.php:472 +msgid " Cannot change to that email." +msgstr "" + +#: mod/settings.php:528 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:532 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:571 +msgid "Settings updated." +msgstr "" + +#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 +msgid "Add application" +msgstr "" + +#: mod/settings.php:651 mod/settings.php:677 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:652 mod/settings.php:678 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:653 mod/settings.php:679 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:654 mod/settings.php:680 +msgid "Icon url" +msgstr "" + +#: mod/settings.php:665 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:708 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:712 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:713 +msgid "No name" +msgstr "" + +#: mod/settings.php:714 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:726 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:734 +msgid "Plugin Settings" +msgstr "" + +#: mod/settings.php:748 +msgid "Off" +msgstr "" + +#: mod/settings.php:748 +msgid "On" +msgstr "" + +#: mod/settings.php:756 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:766 mod/settings.php:770 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:776 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:778 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the " +"original friendica post." +msgstr "" + +#: mod/settings.php:784 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:786 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:795 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:797 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:800 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:809 mod/settings.php:810 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:809 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "" + +#: mod/settings.php:809 mod/settings.php:810 +msgid "enabled" +msgstr "" + +#: mod/settings.php:809 mod/settings.php:810 +msgid "disabled" +msgstr "" + +#: mod/settings.php:810 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:846 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:858 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:859 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: mod/settings.php:860 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:862 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:863 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:864 +msgid "Security:" +msgstr "" + +#: mod/settings.php:864 mod/settings.php:869 +msgid "None" +msgstr "" + +#: mod/settings.php:865 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:866 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:867 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:868 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:869 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:869 +msgid "Mark as seen" +msgstr "" + +#: mod/settings.php:869 +msgid "Move to folder" +msgstr "" + +#: mod/settings.php:870 +msgid "Move to folder:" +msgstr "" + +#: mod/settings.php:955 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:961 mod/settings.php:979 +msgid "Display Theme:" +msgstr "" + +#: mod/settings.php:962 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:963 +msgid "Update browser every xx seconds" +msgstr "" + +#: mod/settings.php:963 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: mod/settings.php:964 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:964 mod/settings.php:965 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:965 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:966 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:967 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:968 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:969 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:970 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:971 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:973 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1050 +msgid "User Types" +msgstr "" + +#: mod/settings.php:1051 +msgid "Community Types" +msgstr "" + +#: mod/settings.php:1052 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:1053 +msgid "This account is a normal personal profile" +msgstr "" + +#: mod/settings.php:1056 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1057 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "" + +#: mod/settings.php:1060 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: mod/settings.php:1061 +msgid "Automatically approve all connection/friend requests as read-write fans" +msgstr "" + +#: mod/settings.php:1064 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1065 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "" + +#: mod/settings.php:1068 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1069 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1081 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1081 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1091 +msgid "Publish your default profile in your local site directory?" +msgstr "" + +#: mod/settings.php:1097 +msgid "Publish your default profile in the global social directory?" +msgstr "" + +#: mod/settings.php:1105 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: mod/settings.php:1109 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "" + +#: mod/settings.php:1109 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1114 +msgid "Allow friends to post to your profile page?" +msgstr "" + +#: mod/settings.php:1120 +msgid "Allow friends to tag your posts?" +msgstr "" + +#: mod/settings.php:1126 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1132 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1140 +msgid "Profile is not published." +msgstr "" + +#: mod/settings.php:1148 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1155 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1155 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "" + +#: mod/settings.php:1156 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1157 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1158 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1159 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1160 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1161 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1162 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1190 +msgid "Account Settings" +msgstr "" + +#: mod/settings.php:1198 +msgid "Password Settings" +msgstr "" + +#: mod/settings.php:1199 mod/register.php:271 +msgid "New Password:" +msgstr "" + +#: mod/settings.php:1200 mod/register.php:272 +msgid "Confirm:" +msgstr "" + +#: mod/settings.php:1200 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: mod/settings.php:1201 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1201 mod/settings.php:1202 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1202 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1206 +msgid "Basic Settings" +msgstr "" + +#: mod/settings.php:1207 include/identity.php:539 +msgid "Full Name:" +msgstr "" + +#: mod/settings.php:1208 +msgid "Email Address:" +msgstr "" + +#: mod/settings.php:1209 +msgid "Your Timezone:" +msgstr "" + +#: mod/settings.php:1210 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1210 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1211 +msgid "Default Post Location:" +msgstr "" + +#: mod/settings.php:1212 +msgid "Use Browser Location:" +msgstr "" + +#: mod/settings.php:1215 +msgid "Security and Privacy Settings" +msgstr "" + +#: mod/settings.php:1217 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: mod/settings.php:1217 mod/settings.php:1247 +msgid "(to prevent spam abuse)" +msgstr "" + +#: mod/settings.php:1218 +msgid "Default Post Permissions" +msgstr "" + +#: mod/settings.php:1219 +msgid "(click to open/close)" +msgstr "" + +#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 +msgid "Show to Groups" +msgstr "" + +#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 +msgid "Show to Contacts" +msgstr "" + +#: mod/settings.php:1230 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1231 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1235 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1247 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1250 +msgid "Notification Settings" +msgstr "" + +#: mod/settings.php:1251 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1252 +msgid "accepting a friend request" +msgstr "" + +#: mod/settings.php:1253 +msgid "joining a forum/community" +msgstr "" + +#: mod/settings.php:1254 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1255 +msgid "Send a notification email when:" +msgstr "" + +#: mod/settings.php:1256 +msgid "You receive an introduction" +msgstr "" + +#: mod/settings.php:1257 +msgid "Your introductions are confirmed" +msgstr "" + +#: mod/settings.php:1258 +msgid "Someone writes on your profile wall" +msgstr "" + +#: mod/settings.php:1259 +msgid "Someone writes a followup comment" +msgstr "" + +#: mod/settings.php:1260 +msgid "You receive a private message" +msgstr "" + +#: mod/settings.php:1261 +msgid "You receive a friend suggestion" +msgstr "" + +#: mod/settings.php:1262 +msgid "You are tagged in a post" +msgstr "" + +#: mod/settings.php:1263 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1265 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1265 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1267 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1269 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1271 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1272 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1275 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1276 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1277 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "" + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "" + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "" + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "" + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "" + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "" + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "" + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "" + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "" + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "" + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "" + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "" + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "" + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "" + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "" + +#: mod/dfrn_request.php:507 include/follow.php:72 +msgid "Disallowed profile URL." +msgstr "" + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "" + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "" + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to this profile." +msgstr "" + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "" + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "" + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: mod/dfrn_request.php:840 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today." +msgstr "" + +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "" + +#: mod/dfrn_request.php:846 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "" + +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "" + +#: mod/dfrn_request.php:857 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." +msgstr "" + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "" + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "" + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." +msgstr "" + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "" + +#: mod/register.php:277 boot.php:1256 include/nav.php:108 +msgid "Register" +msgstr "" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:115 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:116 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:126 include/text.php:996 include/nav.php:118 +msgid "Search" +msgstr "" + +#: mod/search.php:224 #, php-format msgid "Items tagged with: %s" msgstr "" -#: mod/search.php:207 +#: mod/search.php:226 #, php-format msgid "Search results for: %s" msgstr "" +#: mod/directory.php:116 mod/profiles.php:760 +msgid "Age: " +msgstr "" + +#: mod/directory.php:119 +msgid "Gender: " +msgstr "" + +#: mod/directory.php:143 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "" + +#: mod/directory.php:145 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "" + +#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:191 +msgid "Global Directory" +msgstr "" + +#: mod/directory.php:197 +msgid "Find on this site" +msgstr "" + +#: mod/directory.php:199 +msgid "Finding:" +msgstr "" + +#: mod/directory.php:201 +msgid "Site Directory" +msgstr "" + +#: mod/directory.php:208 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "" + +#: mod/delegate.php:130 include/nav.php:180 +msgid "Delegate Page Management" +msgstr "" + +#: mod/delegate.php:132 +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/delegate.php:133 +msgid "Existing Page Managers" +msgstr "" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "" + +#: mod/common.php:85 +msgid "No contacts in common." +msgstr "" + +#: mod/common.php:133 +msgid "Common Friends" +msgstr "" + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "" + +#: mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: mod/mood.php:62 include/conversation.php:239 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: mod/suggest.php:83 mod/suggest.php:100 +msgid "Ignore/Hide" +msgstr "" + +#: mod/suggest.php:110 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:193 +msgid "Friend Suggestions" +msgstr "" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "" + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "" + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "" + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "" + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 +msgid "Likes" +msgstr "" + +#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 +msgid "Dislikes" +msgstr "" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "" + +#: mod/profiles.php:375 mod/profiles.php:708 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "" + +#: mod/profiles.php:386 mod/profiles.php:704 +msgid "Location" +msgstr "" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "" + +#: mod/profiles.php:565 +msgid " and " +msgstr "" + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:580 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:660 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: mod/profiles.php:684 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:695 +msgid "Edit Profile Details" +msgstr "" + +#: mod/profiles.php:697 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:698 +msgid "View this profile" +msgstr "" + +#: mod/profiles.php:699 +msgid "Create a new profile using these settings" +msgstr "" + +#: mod/profiles.php:700 +msgid "Clone this profile" +msgstr "" + +#: mod/profiles.php:701 +msgid "Delete this profile" +msgstr "" + +#: mod/profiles.php:702 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:703 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:705 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:706 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:707 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:710 +msgid "Profile Name:" +msgstr "" + +#: mod/profiles.php:711 +msgid "Your Full Name:" +msgstr "" + +#: mod/profiles.php:712 +msgid "Title/Description:" +msgstr "" + +#: mod/profiles.php:713 +msgid "Your Gender:" +msgstr "" + +#: mod/profiles.php:714 +msgid "Birthday :" +msgstr "" + +#: mod/profiles.php:715 +msgid "Street Address:" +msgstr "" + +#: mod/profiles.php:716 +msgid "Locality/City:" +msgstr "" + +#: mod/profiles.php:717 +msgid "Postal/Zip Code:" +msgstr "" + +#: mod/profiles.php:718 +msgid "Country:" +msgstr "" + +#: mod/profiles.php:719 +msgid "Region/State:" +msgstr "" + +#: mod/profiles.php:720 +msgid " Marital Status:" +msgstr "" + +#: mod/profiles.php:721 +msgid "Who: (if applicable)" +msgstr "" + +#: mod/profiles.php:722 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: mod/profiles.php:723 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:724 include/identity.php:570 +msgid "Sexual Preference:" +msgstr "" + +#: mod/profiles.php:725 +msgid "Homepage URL:" +msgstr "" + +#: mod/profiles.php:726 include/identity.php:574 +msgid "Hometown:" +msgstr "" + +#: mod/profiles.php:727 include/identity.php:578 +msgid "Political Views:" +msgstr "" + +#: mod/profiles.php:728 +msgid "Religious Views:" +msgstr "" + +#: mod/profiles.php:729 +msgid "Public Keywords:" +msgstr "" + +#: mod/profiles.php:730 +msgid "Private Keywords:" +msgstr "" + +#: mod/profiles.php:731 include/identity.php:586 +msgid "Likes:" +msgstr "" + +#: mod/profiles.php:732 include/identity.php:588 +msgid "Dislikes:" +msgstr "" + +#: mod/profiles.php:733 +msgid "Example: fishing photography software" +msgstr "" + +#: mod/profiles.php:734 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: mod/profiles.php:735 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: mod/profiles.php:736 +msgid "Tell us about yourself..." +msgstr "" + +#: mod/profiles.php:737 +msgid "Hobbies/Interests" +msgstr "" + +#: mod/profiles.php:738 +msgid "Contact information and Social Networks" +msgstr "" + +#: mod/profiles.php:739 +msgid "Musical interests" +msgstr "" + +#: mod/profiles.php:740 +msgid "Books, literature" +msgstr "" + +#: mod/profiles.php:741 +msgid "Television" +msgstr "" + +#: mod/profiles.php:742 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: mod/profiles.php:743 +msgid "Love/romance" +msgstr "" + +#: mod/profiles.php:744 +msgid "Work/employment" +msgstr "" + +#: mod/profiles.php:745 +msgid "School/education" +msgstr "" + +#: mod/profiles.php:750 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:813 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/profiles.php:814 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "" + +#: mod/profiles.php:815 include/identity.php:232 +msgid "Create New Profile" +msgstr "" + +#: mod/profiles.php:826 include/identity.php:242 +msgid "Profile Image" +msgstr "" + +#: mod/profiles.php:828 include/identity.php:245 +msgid "visible to everybody" +msgstr "" + +#: mod/profiles.php:829 include/identity.php:246 +msgid "Edit visibility" +msgstr "" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "" + +#: mod/editpost.php:110 include/conversation.php:1185 +msgid "upload photo" +msgstr "" + +#: mod/editpost.php:111 include/conversation.php:1186 +msgid "Attach file" +msgstr "" + +#: mod/editpost.php:112 include/conversation.php:1187 +msgid "attach file" +msgstr "" + +#: mod/editpost.php:114 include/conversation.php:1189 +msgid "web link" +msgstr "" + +#: mod/editpost.php:115 include/conversation.php:1190 +msgid "Insert video link" +msgstr "" + +#: mod/editpost.php:116 include/conversation.php:1191 +msgid "video link" +msgstr "" + +#: mod/editpost.php:117 include/conversation.php:1192 +msgid "Insert audio link" +msgstr "" + +#: mod/editpost.php:118 include/conversation.php:1193 +msgid "audio link" +msgstr "" + +#: mod/editpost.php:119 include/conversation.php:1194 +msgid "Set your location" +msgstr "" + +#: mod/editpost.php:120 include/conversation.php:1195 +msgid "set location" +msgstr "" + +#: mod/editpost.php:121 include/conversation.php:1196 +msgid "Clear browser location" +msgstr "" + +#: mod/editpost.php:122 include/conversation.php:1197 +msgid "clear location" +msgstr "" + +#: mod/editpost.php:124 include/conversation.php:1203 +msgid "Permission settings" +msgstr "" + +#: mod/editpost.php:132 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "" + +#: mod/editpost.php:133 include/conversation.php:1212 +msgid "Public post" +msgstr "" + +#: mod/editpost.php:136 include/conversation.php:1199 +msgid "Set title" +msgstr "" + +#: mod/editpost.php:138 include/conversation.php:1201 +msgid "Categories (comma-separated list)" +msgstr "" + +#: mod/editpost.php:139 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: mod/api.php:89 +msgid "Please login to continue." +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?" +msgstr "" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "" + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "" + +#: mod/notes.php:46 include/identity.php:677 +msgid "Personal Notes" +msgstr "" + +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "" + +#: mod/poke.php:191 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:192 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:193 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:194 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:197 +msgid "Make this post private" +msgstr "" + +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + #: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "" @@ -3845,1752 +5861,203 @@ msgid "" "important, please visit http://friendica.com" msgstr "" -#: mod/settings.php:47 -msgid "Additional features" +#: mod/photos.php:91 include/identity.php:652 +msgid "Photo Albums" msgstr "" -#: mod/settings.php:53 -msgid "Display" +#: mod/photos.php:92 mod/photos.php:1891 +msgid "Recent Photos" msgstr "" -#: mod/settings.php:60 mod/settings.php:837 -msgid "Social Networks" +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 +msgid "Upload New Photos" msgstr "" -#: mod/settings.php:72 include/nav.php:179 -msgid "Delegations" +#: mod/photos.php:173 +msgid "Contact information unavailable" msgstr "" -#: mod/settings.php:78 -msgid "Connected apps" +#: mod/photos.php:194 +msgid "Album not found." msgstr "" -#: mod/settings.php:84 mod/uexport.php:85 -msgid "Export personal data" +#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +msgid "Delete Album" msgstr "" -#: mod/settings.php:90 -msgid "Remove account" +#: mod/photos.php:234 +msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/settings.php:143 -msgid "Missing some important data!" +#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +msgid "Delete Photo" msgstr "" -#: mod/settings.php:256 -msgid "Failed to connect with email account using the settings provided." +#: mod/photos.php:323 +msgid "Do you really want to delete this photo?" msgstr "" -#: mod/settings.php:261 -msgid "Email settings updated." -msgstr "" - -#: mod/settings.php:276 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:339 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:353 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: mod/settings.php:358 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: mod/settings.php:366 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:377 -msgid "Password changed." -msgstr "" - -#: mod/settings.php:379 -msgid "Password update failed. Please try again." -msgstr "" - -#: mod/settings.php:446 -msgid " Please use a shorter name." -msgstr "" - -#: mod/settings.php:448 -msgid " Name too short." -msgstr "" - -#: mod/settings.php:457 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:462 -msgid " Not valid email." -msgstr "" - -#: mod/settings.php:468 -msgid " Cannot change to that email." -msgstr "" - -#: mod/settings.php:524 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:528 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:558 -msgid "Settings updated." -msgstr "" - -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 -msgid "Add application" -msgstr "" - -#: mod/settings.php:635 mod/settings.php:661 -msgid "Consumer Key" -msgstr "" - -#: mod/settings.php:636 mod/settings.php:662 -msgid "Consumer Secret" -msgstr "" - -#: mod/settings.php:637 mod/settings.php:663 -msgid "Redirect" -msgstr "" - -#: mod/settings.php:638 mod/settings.php:664 -msgid "Icon url" -msgstr "" - -#: mod/settings.php:649 -msgid "You can't edit this application." -msgstr "" - -#: mod/settings.php:692 -msgid "Connected Apps" -msgstr "" - -#: mod/settings.php:696 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:697 -msgid "No name" -msgstr "" - -#: mod/settings.php:698 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:710 -msgid "No Plugin settings configured" -msgstr "" - -#: mod/settings.php:718 -msgid "Plugin Settings" -msgstr "" - -#: mod/settings.php:732 -msgid "Off" -msgstr "" - -#: mod/settings.php:732 -msgid "On" -msgstr "" - -#: mod/settings.php:740 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:750 mod/settings.php:754 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:760 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:762 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the " -"original friendica post." -msgstr "" - -#: mod/settings.php:768 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:770 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:779 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:781 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:784 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 +#: mod/photos.php:698 #, php-format -msgid "Built-in support for %s connectivity is %s" +msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/settings.php:793 mod/settings.php:794 -msgid "enabled" +#: mod/photos.php:698 +msgid "a photo" msgstr "" -#: mod/settings.php:793 mod/settings.php:794 -msgid "disabled" +#: mod/photos.php:811 +msgid "Image file is empty." msgstr "" -#: mod/settings.php:794 -msgid "GNU Social (OStatus)" +#: mod/photos.php:978 +msgid "No photos selected" msgstr "" -#: mod/settings.php:830 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:842 -msgid "Email/Mailbox Setup" -msgstr "" - -#: mod/settings.php:843 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" - -#: mod/settings.php:844 -msgid "Last successful email check:" -msgstr "" - -#: mod/settings.php:846 -msgid "IMAP server name:" -msgstr "" - -#: mod/settings.php:847 -msgid "IMAP port:" -msgstr "" - -#: mod/settings.php:848 -msgid "Security:" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:853 -msgid "None" -msgstr "" - -#: mod/settings.php:849 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:850 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:851 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:852 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:853 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:853 -msgid "Mark as seen" -msgstr "" - -#: mod/settings.php:853 -msgid "Move to folder" -msgstr "" - -#: mod/settings.php:854 -msgid "Move to folder:" -msgstr "" - -#: mod/settings.php:935 -msgid "Display Settings" -msgstr "" - -#: mod/settings.php:941 mod/settings.php:957 -msgid "Display Theme:" -msgstr "" - -#: mod/settings.php:942 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:943 -msgid "Update browser every xx seconds" -msgstr "" - -#: mod/settings.php:943 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: mod/settings.php:944 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:944 mod/settings.php:945 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:945 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:946 -msgid "Don't show emoticons" -msgstr "" - -#: mod/settings.php:947 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:948 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:949 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:951 view/theme/diabook/config.php:150 -#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 -#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 -#: view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "" - -#: mod/settings.php:1027 -msgid "User Types" -msgstr "" - -#: mod/settings.php:1028 -msgid "Community Types" -msgstr "" - -#: mod/settings.php:1029 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:1030 -msgid "This account is a normal personal profile" -msgstr "" - -#: mod/settings.php:1033 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1034 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" - -#: mod/settings.php:1037 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: mod/settings.php:1038 -msgid "Automatically approve all connection/friend requests as read-write fans" -msgstr "" - -#: mod/settings.php:1041 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1042 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" - -#: mod/settings.php:1045 -msgid "Private Forum [Experimental]" -msgstr "" - -#: mod/settings.php:1046 -msgid "Private forum - approved members only" -msgstr "" - -#: mod/settings.php:1058 -msgid "OpenID:" -msgstr "" - -#: mod/settings.php:1058 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1068 -msgid "Publish your default profile in your local site directory?" -msgstr "" - -#: mod/settings.php:1074 -msgid "Publish your default profile in the global social directory?" -msgstr "" - -#: mod/settings.php:1082 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: mod/settings.php:1086 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "" - -#: mod/settings.php:1086 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1091 -msgid "Allow friends to post to your profile page?" -msgstr "" - -#: mod/settings.php:1097 -msgid "Allow friends to tag your posts?" -msgstr "" - -#: mod/settings.php:1103 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1109 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1117 -msgid "Profile is not published." -msgstr "" - -#: mod/settings.php:1125 +#: mod/photos.php:1139 #, php-format -msgid "Your Identity Address is '%s' or '%s'." +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: mod/settings.php:1132 -msgid "Automatically expire posts after this many days:" +#: mod/photos.php:1174 +msgid "Upload Photos" msgstr "" -#: mod/settings.php:1132 -msgid "If empty, posts will not expire. Expired posts will be deleted" +#: mod/photos.php:1178 mod/photos.php:1249 +msgid "New album name: " msgstr "" -#: mod/settings.php:1133 -msgid "Advanced expiration settings" +#: mod/photos.php:1179 +msgid "or existing album name: " msgstr "" -#: mod/settings.php:1134 -msgid "Advanced Expiration" +#: mod/photos.php:1180 +msgid "Do not show a status post for this upload" msgstr "" -#: mod/settings.php:1135 -msgid "Expire posts:" +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:346 +msgid "Permissions" msgstr "" -#: mod/settings.php:1136 -msgid "Expire personal notes:" +#: mod/photos.php:1193 +msgid "Private Photo" msgstr "" -#: mod/settings.php:1137 -msgid "Expire starred posts:" +#: mod/photos.php:1194 +msgid "Public Photo" msgstr "" -#: mod/settings.php:1138 -msgid "Expire photos:" +#: mod/photos.php:1262 +msgid "Edit Album" msgstr "" -#: mod/settings.php:1139 -msgid "Only expire posts by others:" +#: mod/photos.php:1268 +msgid "Show Newest First" msgstr "" -#: mod/settings.php:1165 -msgid "Account Settings" +#: mod/photos.php:1270 +msgid "Show Oldest First" msgstr "" -#: mod/settings.php:1173 -msgid "Password Settings" +#: mod/photos.php:1298 mod/photos.php:1876 +msgid "View Photo" msgstr "" -#: mod/settings.php:1175 -msgid "Leave password fields blank unless changing" +#: mod/photos.php:1345 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: mod/settings.php:1176 -msgid "Current Password:" +#: mod/photos.php:1347 +msgid "Photo not available" msgstr "" -#: mod/settings.php:1176 mod/settings.php:1177 -msgid "Your current password to confirm the changes" +#: mod/photos.php:1403 +msgid "View photo" msgstr "" -#: mod/settings.php:1177 -msgid "Password:" +#: mod/photos.php:1403 +msgid "Edit photo" msgstr "" -#: mod/settings.php:1181 -msgid "Basic Settings" +#: mod/photos.php:1404 +msgid "Use as profile photo" msgstr "" -#: mod/settings.php:1182 include/identity.php:539 -msgid "Full Name:" +#: mod/photos.php:1429 +msgid "View Full Size" msgstr "" -#: mod/settings.php:1183 -msgid "Email Address:" +#: mod/photos.php:1515 +msgid "Tags: " msgstr "" -#: mod/settings.php:1184 -msgid "Your Timezone:" +#: mod/photos.php:1518 +msgid "[Remove any tag]" msgstr "" -#: mod/settings.php:1185 -msgid "Default Post Location:" +#: mod/photos.php:1558 +msgid "New album name" msgstr "" -#: mod/settings.php:1186 -msgid "Use Browser Location:" +#: mod/photos.php:1559 +msgid "Caption" msgstr "" -#: mod/settings.php:1189 -msgid "Security and Privacy Settings" +#: mod/photos.php:1560 +msgid "Add a Tag" msgstr "" -#: mod/settings.php:1191 -msgid "Maximum Friend Requests/Day:" +#: mod/photos.php:1560 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: mod/settings.php:1191 mod/settings.php:1221 -msgid "(to prevent spam abuse)" +#: mod/photos.php:1561 +msgid "Do not rotate" msgstr "" -#: mod/settings.php:1192 -msgid "Default Post Permissions" +#: mod/photos.php:1562 +msgid "Rotate CW (right)" msgstr "" -#: mod/settings.php:1193 -msgid "(click to open/close)" +#: mod/photos.php:1563 +msgid "Rotate CCW (left)" msgstr "" -#: mod/settings.php:1204 -msgid "Default Private Post" +#: mod/photos.php:1578 +msgid "Private photo" msgstr "" -#: mod/settings.php:1205 -msgid "Default Public Post" +#: mod/photos.php:1579 +msgid "Public photo" msgstr "" -#: mod/settings.php:1209 -msgid "Default Permissions for New Posts" +#: mod/photos.php:1601 include/conversation.php:1183 +msgid "Share" msgstr "" -#: mod/settings.php:1221 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1224 -msgid "Notification Settings" -msgstr "" - -#: mod/settings.php:1225 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1226 -msgid "accepting a friend request" -msgstr "" - -#: mod/settings.php:1227 -msgid "joining a forum/community" -msgstr "" - -#: mod/settings.php:1228 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1229 -msgid "Send a notification email when:" -msgstr "" - -#: mod/settings.php:1230 -msgid "You receive an introduction" -msgstr "" - -#: mod/settings.php:1231 -msgid "Your introductions are confirmed" -msgstr "" - -#: mod/settings.php:1232 -msgid "Someone writes on your profile wall" -msgstr "" - -#: mod/settings.php:1233 -msgid "Someone writes a followup comment" -msgstr "" - -#: mod/settings.php:1234 -msgid "You receive a private message" -msgstr "" - -#: mod/settings.php:1235 -msgid "You receive a friend suggestion" -msgstr "" - -#: mod/settings.php:1236 -msgid "You are tagged in a post" -msgstr "" - -#: mod/settings.php:1237 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1239 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1239 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1241 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1243 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1245 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1246 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1249 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1250 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "" - -#: mod/settings.php:1251 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "" - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 -#: include/identity.php:188 include/contact_widgets.php:10 -msgid "Connect" -msgstr "" - -#: mod/dirfind.php:141 mod/match.php:77 -msgid "No matches" -msgstr "" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "" - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "" - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "" - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "" - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "" - -#: mod/profiles.php:565 -msgid " and " -msgstr "" - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: mod/profiles.php:580 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:655 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:660 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: mod/profiles.php:682 -msgid "Edit Profile Details" -msgstr "" - -#: mod/profiles.php:684 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:685 -msgid "View this profile" -msgstr "" - -#: mod/profiles.php:686 -msgid "Create a new profile using these settings" -msgstr "" - -#: mod/profiles.php:687 -msgid "Clone this profile" -msgstr "" - -#: mod/profiles.php:688 -msgid "Delete this profile" -msgstr "" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:697 -msgid "Profile Name:" -msgstr "" - -#: mod/profiles.php:698 -msgid "Your Full Name:" -msgstr "" - -#: mod/profiles.php:699 -msgid "Title/Description:" -msgstr "" - -#: mod/profiles.php:700 -msgid "Your Gender:" -msgstr "" - -#: mod/profiles.php:701 -msgid "Birthday :" -msgstr "" - -#: mod/profiles.php:702 -msgid "Street Address:" -msgstr "" - -#: mod/profiles.php:703 -msgid "Locality/City:" -msgstr "" - -#: mod/profiles.php:704 -msgid "Postal/Zip Code:" -msgstr "" - -#: mod/profiles.php:705 -msgid "Country:" -msgstr "" - -#: mod/profiles.php:706 -msgid "Region/State:" -msgstr "" - -#: mod/profiles.php:707 -msgid " Marital Status:" -msgstr "" - -#: mod/profiles.php:708 -msgid "Who: (if applicable)" -msgstr "" - -#: mod/profiles.php:709 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: mod/profiles.php:710 -msgid "Since [date]:" -msgstr "" - -#: mod/profiles.php:711 include/identity.php:570 -msgid "Sexual Preference:" -msgstr "" - -#: mod/profiles.php:712 -msgid "Homepage URL:" -msgstr "" - -#: mod/profiles.php:713 include/identity.php:574 -msgid "Hometown:" -msgstr "" - -#: mod/profiles.php:714 include/identity.php:578 -msgid "Political Views:" -msgstr "" - -#: mod/profiles.php:715 -msgid "Religious Views:" -msgstr "" - -#: mod/profiles.php:716 -msgid "Public Keywords:" -msgstr "" - -#: mod/profiles.php:717 -msgid "Private Keywords:" -msgstr "" - -#: mod/profiles.php:718 include/identity.php:586 -msgid "Likes:" -msgstr "" - -#: mod/profiles.php:719 include/identity.php:588 -msgid "Dislikes:" -msgstr "" - -#: mod/profiles.php:720 -msgid "Example: fishing photography software" -msgstr "" - -#: mod/profiles.php:721 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" - -#: mod/profiles.php:722 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" - -#: mod/profiles.php:723 -msgid "Tell us about yourself..." -msgstr "" - -#: mod/profiles.php:724 -msgid "Hobbies/Interests" -msgstr "" - -#: mod/profiles.php:725 -msgid "Contact information and Social Networks" -msgstr "" - -#: mod/profiles.php:726 -msgid "Musical interests" -msgstr "" - -#: mod/profiles.php:727 -msgid "Books, literature" -msgstr "" - -#: mod/profiles.php:728 -msgid "Television" -msgstr "" - -#: mod/profiles.php:729 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: mod/profiles.php:730 -msgid "Love/romance" -msgstr "" - -#: mod/profiles.php:731 -msgid "Work/employment" -msgstr "" - -#: mod/profiles.php:732 -msgid "School/education" -msgstr "" - -#: mod/profiles.php:737 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:747 mod/directory.php:129 -msgid "Age: " -msgstr "" - -#: mod/profiles.php:800 -msgid "Edit/Manage Profiles" -msgstr "" - -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "" - -#: mod/profiles.php:802 include/identity.php:232 -msgid "Create New Profile" -msgstr "" - -#: mod/profiles.php:813 include/identity.php:242 -msgid "Profile Image" -msgstr "" - -#: mod/profiles.php:815 include/identity.php:245 -msgid "visible to everybody" -msgstr "" - -#: mod/profiles.php:816 include/identity.php:246 -msgid "Edit visibility" -msgstr "" - -#: mod/share.php:38 -msgid "link" -msgstr "" - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "" - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "" - -#: mod/community.php:23 -msgid "Not available." -msgstr "" - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 -#: include/nav.php:139 -msgid "Community" -msgstr "" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "" - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "" - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "" - -#: mod/repair_ostatus.php:14 -msgid "Resubsribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "" - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "" - -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "" - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "" - -#: mod/delegate.php:132 -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/delegate.php:133 -msgid "Existing Page Managers" -msgstr "" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "" - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "" - -#: mod/notes.php:44 include/identity.php:676 -msgid "Personal Notes" -msgstr "" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 -msgid "Status:" -msgstr "" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 -msgid "Homepage:" -msgstr "" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: mod/ostatus_subscribe.php:14 -msgid "Subsribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "" - -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:245 -#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 -msgid "Upload" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "" - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr "" - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "" - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "" - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" - -#: mod/install.php:141 mod/install.php:208 mod/install.php:537 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "" - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:205 -msgid "System check" -msgstr "" - -#: mod/install.php:210 -msgid "Check again" -msgstr "" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "" - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: mod/install.php:324 -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. See 'Activating scheduled tasks'" -msgstr "" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "" - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "" - -#: mod/install.php:395 -msgid "mcrypt PHP module" -msgstr "" - -#: mod/install.php:400 mod/install.php:402 -msgid "Apache mod_rewrite module" -msgstr "" - -#: mod/install.php:400 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: mod/install.php:408 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: mod/install.php:412 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: mod/install.php:416 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: mod/install.php:420 -msgid "Error: mysqli PHP module required but not installed." -msgstr "" - -#: mod/install.php:424 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: mod/install.php:428 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: mod/install.php:447 -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/install.php:448 -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/install.php:449 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: mod/install.php:450 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: mod/install.php:453 -msgid ".htconfig.php is writable" -msgstr "" - -#: mod/install.php:463 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: mod/install.php:464 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "" - -#: mod/install.php:465 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: mod/install.php:466 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" - -#: mod/install.php:469 -msgid "view/smarty3 is writable" -msgstr "" - -#: mod/install.php:485 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:487 -msgid "Url rewrite is working" -msgstr "" +#: mod/photos.php:1640 include/conversation.php:509 +#: include/conversation.php:1405 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" -#: mod/install.php:496 -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/photos.php:1640 include/conversation.php:509 +msgid "Not attending" msgstr "" -#: mod/install.php:535 -msgid "

    What next

    " +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Might attend" msgstr "" -#: mod/install.php:536 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: mod/photos.php:1805 +msgid "Map" msgstr "" #: mod/p.php:9 msgid "Not Extended" msgstr "" -#: mod/group.php:29 -msgid "Group created." -msgstr "" - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "" - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "" - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "" - -#: mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "" - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "" - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "" - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "" - -#: mod/group.php:190 -msgid "Members" -msgstr "" - -#: mod/content.php:119 mod/network.php:532 -msgid "No such group" -msgstr "" - -#: mod/content.php:130 mod/network.php:549 -msgid "Group is empty" -msgstr "" - -#: mod/content.php:135 mod/network.php:560 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "" - #: mod/regmod.php:55 msgid "Account approved." msgstr "" @@ -5604,746 +6071,166 @@ msgstr "" msgid "Please login." msgstr "" -#: mod/match.php:18 -msgid "Profile Match" +#: mod/uimport.php:66 +msgid "Move account" msgstr "" -#: mod/match.php:27 -msgid "No keywords to match. Please add keywords to your default profile." +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." msgstr "" -#: mod/match.php:69 -msgid "is interested in:" -msgstr "" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "" - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "" - -#: mod/item.php:989 -#, php-format +#: mod/uimport.php:68 msgid "" -"This message was sent to you by %s, a member of the Friendica social network." +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also " +"to inform your friends that you moved here." msgstr "" -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "" - -#: mod/item.php:992 +#: mod/uimport.php:69 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." +#: mod/uimport.php:70 +msgid "Account file" msgstr "" -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "" - -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "" - -#: mod/network.php:385 -msgid "New" -msgstr "" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "" - -#: mod/network.php:405 -msgid "Starred" -msgstr "" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "" - -#: mod/network.php:466 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "" -msgstr[1] "" - -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "" - -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "" - -#: mod/network.php:582 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "" - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "" - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "" - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "" - -#: mod/crepair.php:142 +#: mod/uimport.php:70 msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" msgstr "" -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." +#: mod/attach.php:8 +msgid "Item not available." msgstr "" -#: mod/crepair.php:149 -msgid "Return to contact editor" +#: mod/attach.php:20 +msgid "Item was not found." msgstr "" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 -msgid "Your posts and conversations" -msgstr "" - -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "" - -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "" - -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "" - -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" -msgstr "" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "" - -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "" - -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "" - -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "" - -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "" - -#: view/theme/diabook/theme.php:463 include/text.php:2032 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "" - -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "" - -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "" - -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "" - -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "" - -#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" - -#: view/theme/duepuntozero/config.php:44 include/text.php:1768 -#: include/user.php:255 -msgid "default" -msgstr "" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "" - -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" - -#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 -msgid "Click here to download" -msgstr "" - -#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 -#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 -msgid "Create new pull request" -msgstr "" - -#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 -msgid "Reload active plugins" -msgstr "" - -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 -msgid "Public projects on this node" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 -#, php-format -msgid "" -"Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone." -msgstr "" - -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 -msgid "Visibility" -msgstr "" - -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 -msgid "Create" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 -msgid "No pull requests to show" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 -msgid "opened by" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 -msgid "closed" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 -msgid "merged" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 -msgid "Projects" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 -msgid "add new" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 -msgid "delete" -msgstr "" - -#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 -#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 -#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 -msgid "Clone this project:" -msgstr "" - -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 -msgid "New pull request" -msgstr "" - -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 -msgid "Can't show you the diff at the moment. Sorry" -msgstr "" - -#: boot.php:763 +#: boot.php:771 msgid "Delete this item?" msgstr "" -#: boot.php:766 +#: boot.php:774 msgid "show fewer" msgstr "" -#: boot.php:1140 +#: boot.php:1148 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1247 +#: boot.php:1255 msgid "Create a New Account" msgstr "" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1280 include/nav.php:72 msgid "Logout" msgstr "" -#: boot.php:1275 +#: boot.php:1283 msgid "Nickname or Email address: " msgstr "" -#: boot.php:1276 +#: boot.php:1284 msgid "Password: " msgstr "" -#: boot.php:1277 +#: boot.php:1285 msgid "Remember me" msgstr "" -#: boot.php:1280 +#: boot.php:1288 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1286 +#: boot.php:1294 msgid "Forgot your password?" msgstr "" -#: boot.php:1289 +#: boot.php:1297 msgid "Website Terms of Service" msgstr "" -#: boot.php:1290 +#: boot.php:1298 msgid "terms of service" msgstr "" -#: boot.php:1292 +#: boot.php:1300 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1293 +#: boot.php:1301 msgid "privacy policy" msgstr "" -#: include/features.php:23 -msgid "General Features" +#: object/Item.php:95 +msgid "This entry was edited" msgstr "" -#: include/features.php:25 -msgid "Multiple Profiles" +#: object/Item.php:191 +msgid "I will attend" msgstr "" -#: include/features.php:25 -msgid "Ability to create multiple profiles" +#: object/Item.php:191 +msgid "I will not attend" msgstr "" -#: include/features.php:30 -msgid "Post Composition Features" +#: object/Item.php:191 +msgid "I might attend" msgstr "" -#: include/features.php:31 -msgid "Richtext Editor" +#: object/Item.php:230 +msgid "ignore thread" msgstr "" -#: include/features.php:31 -msgid "Enable richtext editor" +#: object/Item.php:231 +msgid "unignore thread" msgstr "" -#: include/features.php:32 -msgid "Post Preview" +#: object/Item.php:232 +msgid "toggle ignore status" msgstr "" -#: include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" +#: object/Item.php:345 include/conversation.php:687 +msgid "Categories:" msgstr "" -#: include/features.php:33 -msgid "Auto-mention Forums" +#: object/Item.php:346 include/conversation.php:688 +msgid "Filed under:" msgstr "" -#: include/features.php:33 +#: object/Item.php:360 +msgid "via" +msgstr "" + +#: include/dbstructure.php:26 +#, php-format msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database " +"might be invalid." msgstr "" -#: include/features.php:38 -msgid "Network Sidebar Widgets" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: include/features.php:39 -msgid "Search by Date" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." msgstr "" -#: include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: include/features.php:40 -msgid "Group Filter" -msgstr "" - -#: include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: include/features.php:41 -msgid "Network Filter" -msgstr "" - -#: include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: include/features.php:42 -msgid "Save search terms for re-use" -msgstr "" - -#: include/features.php:47 -msgid "Network Tabs" -msgstr "" - -#: include/features.php:48 -msgid "Network Personal Tab" -msgstr "" - -#: include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: include/features.php:49 -msgid "Network New Tab" -msgstr "" - -#: include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "" - -#: include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: include/features.php:55 -msgid "Post/Comment Tools" -msgstr "" - -#: include/features.php:56 -msgid "Multiple Deletion" -msgstr "" - -#: include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: include/features.php:57 -msgid "Edit Sent Posts" -msgstr "" - -#: include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: include/features.php:58 -msgid "Tagging" -msgstr "" - -#: include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "" - -#: include/features.php:59 -msgid "Post Categories" -msgstr "" - -#: include/features.php:59 -msgid "Add categories to your posts" -msgstr "" - -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "" - -#: include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "" - -#: include/features.php:61 -msgid "Dislike Posts" -msgstr "" - -#: include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: include/features.php:62 -msgid "Star Posts" -msgstr "" - -#: include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" - -#: include/features.php:63 -msgid "Ability to mute notifications for a thread" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." msgstr "" #: include/auth.php:38 @@ -6360,392 +6247,407 @@ msgstr "" msgid "The error message was:" msgstr "" -#: include/event.php:22 include/bb2diaspora.php:154 -msgid "Starts:" +#: include/contact_widgets.php:6 +msgid "Add New Contact" msgstr "" -#: include/event.php:32 include/bb2diaspora.php:162 -msgid "Finishes:" +#: include/contact_widgets.php:7 +msgid "Enter address or web location" msgstr "" -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr "" - -#: include/text.php:299 -msgid "newer" -msgstr "" - -#: include/text.php:301 -msgid "older" -msgstr "" - -#: include/text.php:306 -msgid "prev" -msgstr "" - -#: include/text.php:308 -msgid "first" -msgstr "" - -#: include/text.php:340 -msgid "last" -msgstr "" - -#: include/text.php:343 -msgid "next" -msgstr "" - -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "" - -#: include/text.php:399 -msgid "The end" -msgstr "" - -#: include/text.php:890 -msgid "No contacts" -msgstr "" - -#: include/text.php:905 +#: include/contact_widgets.php:24 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" +msgid "%d invitation available" +msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: include/text.php:1003 include/nav.php:122 -msgid "Full Text" +#: include/contact_widgets.php:30 +msgid "Find People" msgstr "" -#: include/text.php:1004 include/nav.php:123 -msgid "Tags" +#: include/contact_widgets.php:31 +msgid "Enter name or interest" msgstr "" -#: include/text.php:1008 include/nav.php:127 -msgid "Forums" +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: include/text.php:1058 -msgid "poke" +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:192 +msgid "Similar Interests" msgstr "" -#: include/text.php:1058 -msgid "poked" +#: include/contact_widgets.php:37 +msgid "Random Profile" msgstr "" -#: include/text.php:1059 -msgid "ping" +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:194 +msgid "Invite Friends" msgstr "" -#: include/text.php:1059 -msgid "pinged" +#: include/contact_widgets.php:71 +msgid "Networks" msgstr "" -#: include/text.php:1060 -msgid "prod" +#: include/contact_widgets.php:74 +msgid "All Networks" msgstr "" -#: include/text.php:1060 -msgid "prodded" +#: include/contact_widgets.php:104 include/features.php:61 +msgid "Saved Folders" msgstr "" -#: include/text.php:1061 -msgid "slap" +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" msgstr "" -#: include/text.php:1061 -msgid "slapped" +#: include/contact_widgets.php:136 +msgid "Categories" msgstr "" -#: include/text.php:1062 -msgid "finger" +#: include/features.php:23 +msgid "General Features" msgstr "" -#: include/text.php:1062 -msgid "fingered" +#: include/features.php:25 +msgid "Multiple Profiles" msgstr "" -#: include/text.php:1063 -msgid "rebuff" +#: include/features.php:25 +msgid "Ability to create multiple profiles" msgstr "" -#: include/text.php:1063 -msgid "rebuffed" +#: include/features.php:26 +msgid "Photo Location" msgstr "" -#: include/text.php:1077 -msgid "happy" +#: include/features.php:26 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present) " +"prior to stripping metadata and links it to a map." msgstr "" -#: include/text.php:1078 -msgid "sad" +#: include/features.php:31 +msgid "Post Composition Features" msgstr "" -#: include/text.php:1079 -msgid "mellow" +#: include/features.php:32 +msgid "Richtext Editor" msgstr "" -#: include/text.php:1080 -msgid "tired" +#: include/features.php:32 +msgid "Enable richtext editor" msgstr "" -#: include/text.php:1081 -msgid "perky" +#: include/features.php:33 +msgid "Post Preview" msgstr "" -#: include/text.php:1082 -msgid "angry" +#: include/features.php:33 +msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: include/text.php:1083 -msgid "stupified" +#: include/features.php:34 +msgid "Auto-mention Forums" msgstr "" -#: include/text.php:1084 -msgid "puzzled" +#: include/features.php:34 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: include/text.php:1085 -msgid "interested" +#: include/features.php:39 +msgid "Network Sidebar Widgets" msgstr "" -#: include/text.php:1086 -msgid "bitter" +#: include/features.php:40 +msgid "Search by Date" msgstr "" -#: include/text.php:1087 -msgid "cheerful" +#: include/features.php:40 +msgid "Ability to select posts by date ranges" msgstr "" -#: include/text.php:1088 -msgid "alive" +#: include/features.php:41 +msgid "Group Filter" msgstr "" -#: include/text.php:1089 -msgid "annoyed" +#: include/features.php:41 +msgid "Enable widget to display Network posts only from selected group" msgstr "" -#: include/text.php:1090 -msgid "anxious" +#: include/features.php:42 +msgid "Network Filter" msgstr "" -#: include/text.php:1091 -msgid "cranky" +#: include/features.php:42 +msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: include/text.php:1092 -msgid "disturbed" +#: include/features.php:43 +msgid "Save search terms for re-use" msgstr "" -#: include/text.php:1093 -msgid "frustrated" +#: include/features.php:48 +msgid "Network Tabs" msgstr "" -#: include/text.php:1094 -msgid "motivated" +#: include/features.php:49 +msgid "Network Personal Tab" msgstr "" -#: include/text.php:1095 -msgid "relaxed" +#: include/features.php:49 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: include/text.php:1096 -msgid "surprised" +#: include/features.php:50 +msgid "Network New Tab" msgstr "" -#: include/text.php:1266 -msgid "Monday" +#: include/features.php:50 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "" -#: include/text.php:1266 -msgid "Tuesday" +#: include/features.php:51 +msgid "Network Shared Links Tab" msgstr "" -#: include/text.php:1266 -msgid "Wednesday" +#: include/features.php:51 +msgid "Enable tab to display only Network posts with links in them" msgstr "" -#: include/text.php:1266 -msgid "Thursday" +#: include/features.php:56 +msgid "Post/Comment Tools" msgstr "" -#: include/text.php:1266 -msgid "Friday" +#: include/features.php:57 +msgid "Multiple Deletion" msgstr "" -#: include/text.php:1266 -msgid "Saturday" +#: include/features.php:57 +msgid "Select and delete multiple posts/comments at once" msgstr "" -#: include/text.php:1266 -msgid "Sunday" +#: include/features.php:58 +msgid "Edit Sent Posts" msgstr "" -#: include/text.php:1270 -msgid "January" +#: include/features.php:58 +msgid "Edit and correct posts and comments after sending" msgstr "" -#: include/text.php:1270 -msgid "February" +#: include/features.php:59 +msgid "Tagging" msgstr "" -#: include/text.php:1270 -msgid "March" +#: include/features.php:59 +msgid "Ability to tag existing posts" msgstr "" -#: include/text.php:1270 -msgid "April" +#: include/features.php:60 +msgid "Post Categories" msgstr "" -#: include/text.php:1270 -msgid "May" +#: include/features.php:60 +msgid "Add categories to your posts" msgstr "" -#: include/text.php:1270 -msgid "June" +#: include/features.php:61 +msgid "Ability to file posts under folders" msgstr "" -#: include/text.php:1270 -msgid "July" +#: include/features.php:62 +msgid "Dislike Posts" msgstr "" -#: include/text.php:1270 -msgid "August" +#: include/features.php:62 +msgid "Ability to dislike posts/comments" msgstr "" -#: include/text.php:1270 -msgid "September" +#: include/features.php:63 +msgid "Star Posts" msgstr "" -#: include/text.php:1270 -msgid "October" +#: include/features.php:63 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: include/text.php:1270 -msgid "November" +#: include/features.php:64 +msgid "Mute Post Notifications" msgstr "" -#: include/text.php:1270 -msgid "December" +#: include/features.php:64 +msgid "Ability to mute notifications for a thread" msgstr "" -#: include/text.php:1492 -msgid "bytes" +#: include/follow.php:77 +msgid "Connect URL missing." msgstr "" -#: include/text.php:1524 include/text.php:1536 -msgid "Click to open/close" +#: include/follow.php:104 +msgid "" +"This site is not configured to allow communications with other networks." msgstr "" -#: include/text.php:1710 -msgid "View on separate page" +#: include/follow.php:105 include/follow.php:125 +msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: include/text.php:1711 -msgid "view on separate page" +#: include/follow.php:123 +msgid "The profile address specified does not provide adequate information." msgstr "" -#: include/text.php:1780 -msgid "Select an alternate language" +#: include/follow.php:127 +msgid "An author or name was not found." msgstr "" -#: include/text.php:2036 -msgid "activity" +#: include/follow.php:129 +msgid "No browser URL could be matched to this address." msgstr "" -#: include/text.php:2039 -msgid "post" +#: include/follow.php:131 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." msgstr "" -#: include/text.php:2207 -msgid "Item filed" +#: include/follow.php:132 +msgid "Use mailto: in front of address to force email check." msgstr "" -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1141 include/api.php:1143 -msgid "User not found." +#: include/follow.php:138 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." msgstr "" -#: include/api.php:795 +#: include/follow.php:148 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: include/follow.php:249 +msgid "Unable to retrieve contact information." +msgstr "" + +#: include/follow.php:302 +msgid "following" +msgstr "" + +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "" + +#: include/group.php:228 +msgid "Everybody" +msgstr "" + +#: include/group.php:251 +msgid "edit" +msgstr "" + +#: include/group.php:273 +msgid "Edit group" +msgstr "" + +#: include/group.php:274 +msgid "Create a new group" +msgstr "" + +#: include/group.php:277 +msgid "Contacts not in any group" +msgstr "" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:271 +msgid "never" +msgstr "" + +#: include/datetime.php:277 +msgid "less than a second ago" +msgstr "" + +#: include/datetime.php:287 +msgid "year" +msgstr "" + +#: include/datetime.php:287 +msgid "years" +msgstr "" + +#: include/datetime.php:288 +msgid "months" +msgstr "" + +#: include/datetime.php:289 +msgid "weeks" +msgstr "" + +#: include/datetime.php:290 +msgid "days" +msgstr "" + +#: include/datetime.php:291 +msgid "hour" +msgstr "" + +#: include/datetime.php:291 +msgid "hours" +msgstr "" + +#: include/datetime.php:292 +msgid "minute" +msgstr "" + +#: include/datetime.php:292 +msgid "minutes" +msgstr "" + +#: include/datetime.php:293 +msgid "second" +msgstr "" + +#: include/datetime.php:293 +msgid "seconds" +msgstr "" + +#: include/datetime.php:302 #, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." +msgid "%1$d %2$s ago" msgstr "" -#: include/api.php:814 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:833 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1350 -msgid "There is no status with this id." -msgstr "" - -#: include/api.php:1424 -msgid "There is no conversation with this id." -msgstr "" - -#: include/api.php:1703 -msgid "Invalid item." -msgstr "" - -#: include/api.php:1713 -msgid "Invalid action. " -msgstr "" - -#: include/api.php:1721 -msgid "DB error" -msgstr "" - -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: include/items.php:2445 include/datetime.php:459 +#: include/datetime.php:474 include/items.php:2484 #, php-format msgid "%s's birthday" msgstr "" -#: include/items.php:2446 include/datetime.php:460 +#: include/datetime.php:475 include/items.php:2485 #, php-format msgid "Happy Birthday %s" msgstr "" -#: include/items.php:4866 -msgid "Do you really want to delete this item?" -msgstr "" - -#: include/items.php:5141 -msgid "Archives" -msgstr "" - -#: include/delivery.php:456 include/notifier.php:834 -msgid "(no subject)" -msgstr "" - -#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 -msgid "noreply" -msgstr "" - -#: include/diaspora.php:716 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: include/diaspora.php:2567 -msgid "Attachments:" -msgstr "" - #: include/identity.php:38 msgid "Requested account is not available." msgstr "" @@ -6758,7 +6660,7 @@ msgstr "" msgid "Message" msgstr "" -#: include/identity.php:226 include/nav.php:184 +#: include/identity.php:226 include/nav.php:185 msgid "Profiles" msgstr "" @@ -6863,7 +6765,7 @@ msgstr "" msgid "School/education:" msgstr "" -#: include/identity.php:633 include/nav.php:76 +#: include/identity.php:633 include/nav.php:75 msgid "Status" msgstr "" @@ -6875,71 +6777,75 @@ msgstr "" msgid "Profile Details" msgstr "" -#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +#: include/identity.php:657 include/identity.php:660 include/nav.php:78 msgid "Videos" msgstr "" -#: include/identity.php:671 +#: include/identity.php:672 include/nav.php:140 msgid "Events and Calendar" msgstr "" -#: include/identity.php:679 +#: include/identity.php:680 msgid "Only You Can See This" msgstr "" -#: include/follow.php:75 -msgid "Connect URL missing." +#: include/acl_selectors.php:324 +msgid "Post to Email" msgstr "" -#: include/follow.php:102 -msgid "" -"This site is not configured to allow communications with other networks." +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." +#: include/acl_selectors.php:335 +msgid "Visible to everybody" msgstr "" -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "show" msgstr "" -#: include/follow.php:125 -msgid "An author or name was not found." +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "don't show" msgstr "" -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" msgstr "" -#: include/follow.php:129 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." +#: include/Contact.php:119 +msgid "stopped following" msgstr "" -#: include/follow.php:130 -msgid "Use mailto: in front of address to force email check." +#: include/Contact.php:334 include/conversation.php:911 +msgid "View Status" msgstr "" -#: include/follow.php:136 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." +#: include/Contact.php:336 include/conversation.php:913 +msgid "View Photos" msgstr "" -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." +#: include/Contact.php:337 include/conversation.php:914 +msgid "Network Posts" msgstr "" -#: include/follow.php:253 -msgid "Unable to retrieve contact information." +#: include/Contact.php:338 include/conversation.php:915 +msgid "Edit Contact" msgstr "" -#: include/follow.php:306 -msgid "following" +#: include/Contact.php:339 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:340 include/conversation.php:916 +msgid "Send PM" +msgstr "" + +#: include/Contact.php:341 include/conversation.php:920 +msgid "Poke" msgstr "" #: include/security.php:22 @@ -6960,6 +6866,885 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: include/conversation.php:792 +msgid "remove" +msgstr "" + +#: include/conversation.php:796 +msgid "Delete Selected Items" +msgstr "" + +#: include/conversation.php:910 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:1035 +#, php-format +msgid "%s likes this." +msgstr "" + +#: include/conversation.php:1038 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: include/conversation.php:1041 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1044 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1047 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1057 +msgid "and" +msgstr "" + +#: include/conversation.php:1063 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: include/conversation.php:1072 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1073 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1077 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1080 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1081 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1084 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1085 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1088 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "" + +#: include/conversation.php:1089 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1128 include/conversation.php:1146 +msgid "Visible to everybody" +msgstr "" + +#: include/conversation.php:1130 include/conversation.php:1148 +msgid "Please enter a video link/URL:" +msgstr "" + +#: include/conversation.php:1131 include/conversation.php:1149 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: include/conversation.php:1132 include/conversation.php:1150 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1134 include/conversation.php:1152 +msgid "Where are you right now?" +msgstr "" + +#: include/conversation.php:1135 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1204 +msgid "permissions" +msgstr "" + +#: include/conversation.php:1227 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1228 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1229 +msgid "Private post" +msgstr "" + +#: include/conversation.php:1377 +msgid "View all" +msgstr "" + +#: include/conversation.php:1399 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1402 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1408 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1411 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/network.php:967 +msgid "view full size" +msgstr "" + +#: include/text.php:299 +msgid "newer" +msgstr "" + +#: include/text.php:301 +msgid "older" +msgstr "" + +#: include/text.php:306 +msgid "prev" +msgstr "" + +#: include/text.php:308 +msgid "first" +msgstr "" + +#: include/text.php:340 +msgid "last" +msgstr "" + +#: include/text.php:343 +msgid "next" +msgstr "" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:399 +msgid "The end" +msgstr "" + +#: include/text.php:890 +msgid "No contacts" +msgstr "" + +#: include/text.php:905 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "" +msgstr[1] "" + +#: include/text.php:1003 include/nav.php:121 +msgid "Full Text" +msgstr "" + +#: include/text.php:1004 include/nav.php:122 +msgid "Tags" +msgstr "" + +#: include/text.php:1008 include/nav.php:126 +msgid "Forums" +msgstr "" + +#: include/text.php:1059 +msgid "poke" +msgstr "" + +#: include/text.php:1059 +msgid "poked" +msgstr "" + +#: include/text.php:1060 +msgid "ping" +msgstr "" + +#: include/text.php:1060 +msgid "pinged" +msgstr "" + +#: include/text.php:1061 +msgid "prod" +msgstr "" + +#: include/text.php:1061 +msgid "prodded" +msgstr "" + +#: include/text.php:1062 +msgid "slap" +msgstr "" + +#: include/text.php:1062 +msgid "slapped" +msgstr "" + +#: include/text.php:1063 +msgid "finger" +msgstr "" + +#: include/text.php:1063 +msgid "fingered" +msgstr "" + +#: include/text.php:1064 +msgid "rebuff" +msgstr "" + +#: include/text.php:1064 +msgid "rebuffed" +msgstr "" + +#: include/text.php:1078 +msgid "happy" +msgstr "" + +#: include/text.php:1079 +msgid "sad" +msgstr "" + +#: include/text.php:1080 +msgid "mellow" +msgstr "" + +#: include/text.php:1081 +msgid "tired" +msgstr "" + +#: include/text.php:1082 +msgid "perky" +msgstr "" + +#: include/text.php:1083 +msgid "angry" +msgstr "" + +#: include/text.php:1084 +msgid "stupified" +msgstr "" + +#: include/text.php:1085 +msgid "puzzled" +msgstr "" + +#: include/text.php:1086 +msgid "interested" +msgstr "" + +#: include/text.php:1087 +msgid "bitter" +msgstr "" + +#: include/text.php:1088 +msgid "cheerful" +msgstr "" + +#: include/text.php:1089 +msgid "alive" +msgstr "" + +#: include/text.php:1090 +msgid "annoyed" +msgstr "" + +#: include/text.php:1091 +msgid "anxious" +msgstr "" + +#: include/text.php:1092 +msgid "cranky" +msgstr "" + +#: include/text.php:1093 +msgid "disturbed" +msgstr "" + +#: include/text.php:1094 +msgid "frustrated" +msgstr "" + +#: include/text.php:1095 +msgid "motivated" +msgstr "" + +#: include/text.php:1096 +msgid "relaxed" +msgstr "" + +#: include/text.php:1097 +msgid "surprised" +msgstr "" + +#: include/text.php:1490 +msgid "bytes" +msgstr "" + +#: include/text.php:1522 include/text.php:1534 +msgid "Click to open/close" +msgstr "" + +#: include/text.php:1708 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1709 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1990 +msgid "activity" +msgstr "" + +#: include/text.php:1993 +msgid "post" +msgstr "" + +#: include/text.php:2161 +msgid "Item filed" +msgstr "" + +#: include/bbcode.php:474 include/bbcode.php:1132 include/bbcode.php:1133 +msgid "Image/photo" +msgstr "" + +#: include/bbcode.php:572 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:606 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: include/bbcode.php:1092 include/bbcode.php:1112 +msgid "$1 wrote:" +msgstr "" + +#: include/bbcode.php:1141 include/bbcode.php:1142 +msgid "Encrypted content" +msgstr "" + +#: include/notifier.php:840 include/delivery.php:456 +msgid "(no subject)" +msgstr "" + +#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:37 +msgid "noreply" +msgstr "" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "" + +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr "" + +#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 +msgid "Starts:" +msgstr "" + +#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 +msgid "Finishes:" +msgstr "" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "" + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/nav.php:72 +msgid "End this session" +msgstr "" + +#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "" + +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "" + +#: include/nav.php:77 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "" + +#: include/nav.php:78 +msgid "Your videos" +msgstr "" + +#: include/nav.php:79 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "" + +#: include/nav.php:80 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "" + +#: include/nav.php:80 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:91 +msgid "Sign in" +msgstr "" + +#: include/nav.php:104 +msgid "Home Page" +msgstr "" + +#: include/nav.php:108 +msgid "Create an account" +msgstr "" + +#: include/nav.php:113 +msgid "Help and documentation" +msgstr "" + +#: include/nav.php:116 +msgid "Apps" +msgstr "" + +#: include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "" + +#: include/nav.php:118 +msgid "Search site content" +msgstr "" + +#: include/nav.php:136 +msgid "Conversations on this site" +msgstr "" + +#: include/nav.php:138 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:142 +msgid "Directory" +msgstr "" + +#: include/nav.php:142 +msgid "People directory" +msgstr "" + +#: include/nav.php:144 +msgid "Information" +msgstr "" + +#: include/nav.php:144 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:154 +msgid "Conversations from your friends" +msgstr "" + +#: include/nav.php:155 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:155 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:162 +msgid "Friend Requests" +msgstr "" + +#: include/nav.php:166 +msgid "See all notifications" +msgstr "" + +#: include/nav.php:167 +msgid "Mark all system notifications seen" +msgstr "" + +#: include/nav.php:171 +msgid "Private mail" +msgstr "" + +#: include/nav.php:172 +msgid "Inbox" +msgstr "" + +#: include/nav.php:173 +msgid "Outbox" +msgstr "" + +#: include/nav.php:177 +msgid "Manage" +msgstr "" + +#: include/nav.php:177 +msgid "Manage other pages" +msgstr "" + +#: include/nav.php:182 +msgid "Account settings" +msgstr "" + +#: include/nav.php:185 +msgid "Manage/Edit Profiles" +msgstr "" + +#: include/nav.php:187 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: include/nav.php:194 +msgid "Site setup and configuration" +msgstr "" + +#: include/nav.php:198 +msgid "Navigation" +msgstr "" + +#: include/nav.php:198 +msgid "Site map" +msgstr "" + +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1151 include/api.php:1153 +msgid "User not found." +msgstr "" + +#: include/api.php:799 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:818 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:837 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1360 +msgid "There is no status with this id." +msgstr "" + +#: include/api.php:1434 +msgid "There is no conversation with this id." +msgstr "" + +#: include/api.php:1713 +msgid "Invalid item." +msgstr "" + +#: include/api.php:1723 +msgid "Invalid action. " +msgstr "" + +#: include/api.php:1731 +msgid "DB error" +msgstr "" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "" + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "" + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "" + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: include/user.php:98 +msgid "Name too short." +msgstr "" + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "" + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "" + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "" + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: include/user.php:255 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "" + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "" + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "" + +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" + +#: include/diaspora.php:719 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: include/diaspora.php:2574 +msgid "Attachments:" +msgstr "" + +#: include/items.php:4933 +msgid "Do you really want to delete this item?" +msgstr "" + +#: include/items.php:5208 +msgid "Archives" +msgstr "" + #: include/profile_selectors.php:6 msgid "Male" msgstr "" @@ -7012,10 +7797,6 @@ msgstr "" msgid "Other" msgstr "" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" - #: include/profile_selectors.php:23 msgid "Males" msgstr "" @@ -7104,10 +7885,6 @@ msgstr "" msgid "Sex Addict" msgstr "" -#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 -msgid "Friends" -msgstr "" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "" @@ -7192,6 +7969,302 @@ msgstr "" msgid "Ask me" msgstr "" +#: include/enotify.php:18 +msgid "Friendica Notification" +msgstr "" + +#: include/enotify.php:21 +msgid "Thank You," +msgstr "" + +#: include/enotify.php:24 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:68 +#, php-format +msgid "%s " +msgstr "" + +#: include/enotify.php:82 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "" + +#: include/enotify.php:84 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: include/enotify.php:85 +msgid "a private message" +msgstr "" + +#: include/enotify.php:86 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: include/enotify.php:138 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "" + +#: include/enotify.php:145 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "" + +#: include/enotify.php:153 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "" + +#: include/enotify.php:163 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: include/enotify.php:164 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "" + +#: include/enotify.php:167 include/enotify.php:182 include/enotify.php:195 +#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: include/enotify.php:174 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: include/enotify.php:176 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: include/enotify.php:178 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: include/enotify.php:189 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "" + +#: include/enotify.php:190 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: include/enotify.php:191 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: include/enotify.php:203 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: include/enotify.php:204 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: include/enotify.php:217 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: include/enotify.php:233 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: include/enotify.php:235 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: include/enotify.php:246 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: include/enotify.php:251 include/enotify.php:293 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: include/enotify.php:253 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "" + +#: include/enotify.php:261 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" + +#: include/enotify.php:262 include/enotify.php:263 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "" + +#: include/enotify.php:269 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" + +#: include/enotify.php:270 include/enotify.php:271 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "" + +#: include/enotify.php:284 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: include/enotify.php:285 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:286 +#, php-format +msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: include/enotify.php:291 +msgid "Name:" +msgstr "" + +#: include/enotify.php:292 +msgid "Photo:" +msgstr "" + +#: include/enotify.php:295 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: include/enotify.php:303 include/enotify.php:316 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" + +#: include/enotify.php:304 include/enotify.php:317 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "" + +#: include/enotify.php:305 include/enotify.php:318 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: include/enotify.php:308 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and " +"email\n" +"\twithout restriction." +msgstr "" + +#: include/enotify.php:311 include/enotify.php:325 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" + +#: include/enotify.php:321 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "" + +#: include/enotify.php:323 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "" + +#: include/enotify.php:336 +msgid "[Friendica System:Notify] registration request" +msgstr "" + +#: include/enotify.php:337 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:338 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:341 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" + +#: include/enotify.php:344 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "" + +#: include/oembed.php:220 +msgid "Embedded content" +msgstr "" + +#: include/oembed.php:229 +msgid "Embedding disabled" +msgstr "" + #: include/uimport.php:94 msgid "Error decoding account file" msgstr "" @@ -7228,1005 +8301,185 @@ msgstr[1] "" msgid "Done. You can now login with your username and password" msgstr "" -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." +#: index.php:441 +msgid "toggle mobile" msgstr "" -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" msgstr "" -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." +#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 +#: view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" msgstr "" -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" msgstr "" -#: include/conversation.php:290 -msgid "post/item" +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +msgid "Color scheme" msgstr "" -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" msgstr "" -#: include/conversation.php:771 -msgid "remove" +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" msgstr "" -#: include/conversation.php:775 -msgid "Delete Selected Items" +#: view/theme/quattro/config.php:67 +msgid "Alignment" msgstr "" -#: include/conversation.php:874 -msgid "Follow Thread" +#: view/theme/quattro/config.php:67 +msgid "Left" msgstr "" -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" +#: view/theme/quattro/config.php:67 +msgid "Center" msgstr "" -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" +#: view/theme/quattro/config.php:69 +msgid "Posts font size" msgstr "" -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" msgstr "" -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" msgstr "" -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" msgstr "" -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" msgstr "" -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" msgstr "" -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" msgstr "" -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/vier/config.php:111 view/theme/vier/theme.php:230 +msgid "Community Pages" msgstr "" -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" msgstr "" -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 +#: view/theme/vier/theme.php:142 +msgid "Community Profiles" msgstr "" -#: include/conversation.php:965 -msgid "and" +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" msgstr "" -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 +#: view/theme/vier/theme.php:348 +msgid "Connect Services" msgstr "" -#: include/conversation.php:973 -#, php-format -msgid "%s like this." +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 +#: view/theme/vier/theme.php:189 +msgid "Find Friends" msgstr "" -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 +#: view/theme/vier/theme.php:171 +msgid "Last users" msgstr "" -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" msgstr "" -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" msgstr "" -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" msgstr "" -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" msgstr "" -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:190 +msgid "Local Directory" msgstr "" -#: include/conversation.php:1007 -msgid "Delete item(s)?" +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" msgstr "" -#: include/conversation.php:1076 -msgid "permissions" +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" msgstr "" -#: include/conversation.php:1099 -msgid "Post to Groups" +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" msgstr "" -#: include/conversation.php:1100 -msgid "Post to Contacts" +#: view/theme/vier/config.php:110 +msgid "Set style" msgstr "" -#: include/conversation.php:1101 -msgid "Private post" +#: view/theme/vier/theme.php:234 +msgid "External link to forum" msgstr "" -#: include/contact_widgets.php:6 -msgid "Add New Contact" +#: view/theme/vier/theme.php:266 +msgid "Quick Start" msgstr "" -#: include/contact_widgets.php:7 -msgid "Enter address or web location" +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" msgstr "" -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" msgstr "" -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "" - -#: include/nav.php:73 -msgid "End this session" -msgstr "" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "" - -#: include/nav.php:117 -msgid "Apps" -msgstr "" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:141 -msgid "Directory" -msgstr "" - -#: include/nav.php:141 -msgid "People directory" -msgstr "" - -#: include/nav.php:143 -msgid "Information" -msgstr "" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "" - -#: include/nav.php:176 -msgid "Manage" -msgstr "" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "" - -#: include/nav.php:197 -msgid "Site map" -msgstr "" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "" - -#: include/enotify.php:18 -msgid "Friendica Notification" -msgstr "" - -#: include/enotify.php:21 -msgid "Thank You," -msgstr "" - -#: include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "" - -#: include/enotify.php:78 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "" - -#: include/enotify.php:80 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: include/enotify.php:81 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: include/enotify.php:81 -msgid "a private message" -msgstr "" - -#: include/enotify.php:82 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" - -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" - -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: include/enotify.php:160 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "" - -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: include/enotify.php:170 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: include/enotify.php:172 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "" - -#: include/enotify.php:186 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" - -#: include/enotify.php:198 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: include/enotify.php:199 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: include/enotify.php:200 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: include/enotify.php:212 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: include/enotify.php:214 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: include/enotify.php:229 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: include/enotify.php:230 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: include/enotify.php:231 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" - -#: include/enotify.php:242 -msgid "[Friendica:Notify] Introduction received" -msgstr "" - -#: include/enotify.php:243 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:244 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" - -#: include/enotify.php:247 include/enotify.php:289 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: include/enotify.php:249 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "" - -#: include/enotify.php:257 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" - -#: include/enotify.php:258 include/enotify.php:259 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" - -#: include/enotify.php:265 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" - -#: include/enotify.php:266 include/enotify.php:267 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" - -#: include/enotify.php:280 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: include/enotify.php:281 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:282 -#, php-format -msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: include/enotify.php:287 -msgid "Name:" -msgstr "" - -#: include/enotify.php:288 -msgid "Photo:" -msgstr "" - -#: include/enotify.php:291 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: include/enotify.php:299 include/enotify.php:312 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" - -#: include/enotify.php:300 include/enotify.php:313 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "" - -#: include/enotify.php:301 include/enotify.php:314 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" - -#: include/enotify.php:304 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and " -"email\n" -"\twithout restriction." -msgstr "" - -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" - -#: include/enotify.php:317 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "" - -#: include/enotify.php:319 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "" - -#: include/enotify.php:332 -msgid "[Friendica System:Notify] registration request" -msgstr "" - -#: include/enotify.php:333 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:334 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - -#: include/enotify.php:337 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" - -#: include/enotify.php:340 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "" - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "" - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "" - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "" - -#: include/user.php:98 -msgid "Name too short." -msgstr "" - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "" - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "" - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "" - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "" - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "" - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "" - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "" - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: include/user.php:385 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" - -#: include/user.php:389 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after " -"logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that " -"page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - " -"and\n" -"\t\tperhaps what country you live in; if you do not wish to be more " -"specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are " -"necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "" - -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "" - -#: include/bbcode.php:556 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:590 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "" - -#: include/oembed.php:220 -msgid "Embedded content" -msgstr "" - -#: include/oembed.php:229 -msgid "Embedding disabled" -msgstr "" - -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: include/group.php:226 -msgid "Everybody" -msgstr "" - -#: include/group.php:249 -msgid "edit" -msgstr "" - -#: include/group.php:271 -msgid "Edit group" -msgstr "" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:256 -msgid "never" -msgstr "" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "" - -#: include/datetime.php:272 -msgid "year" -msgstr "" - -#: include/datetime.php:272 -msgid "years" -msgstr "" - -#: include/datetime.php:273 -msgid "month" -msgstr "" - -#: include/datetime.php:273 -msgid "months" -msgstr "" - -#: include/datetime.php:274 -msgid "week" -msgstr "" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "" - -#: include/datetime.php:275 -msgid "day" -msgstr "" - -#: include/datetime.php:275 -msgid "days" -msgstr "" - -#: include/datetime.php:276 -msgid "hour" -msgstr "" - -#: include/datetime.php:276 -msgid "hours" -msgstr "" - -#: include/datetime.php:277 -msgid "minute" -msgstr "" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "" - -#: include/datetime.php:278 -msgid "second" -msgstr "" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: include/network.php:959 -msgid "view full size" +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" msgstr "" -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" msgstr "" -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" +#: view/theme/duepuntozero/config.php:49 +msgid "comix" msgstr "" -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" msgstr "" -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" msgstr "" diff --git a/util/vagrant_provision.sh b/util/vagrant_provision.sh index ac24659662..12e792c040 100644 --- a/util/vagrant_provision.sh +++ b/util/vagrant_provision.sh @@ -21,18 +21,13 @@ organizationalUnitName= emailAddress= " sudo mkdir -p "$SSL_DIR" -sudo openssl genrsa -out "$SSL_DIR/xip.io.key" 1024 +sudo openssl genrsa -out "$SSL_DIR/xip.io.key" 4096 sudo openssl req -new -subj "$(echo -n "$SUBJ" | tr "\n" "/")" -key "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.csr" -passin pass:$PASSPHRASE sudo openssl x509 -req -days 365 -in "$SSL_DIR/xip.io.csr" -signkey "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.crt" #Install apache2 echo ">>> Installing Apache2 webserver" -# The package python-software-properties provides add-apt-repository on Ubuntu Precise Server -sudo apt-get install python-software-properties -sudo add-apt-repository -y ppa:ondrej/apache2 -sudo apt-key update -sudo apt-get update sudo apt-get install -y apache2 sudo a2enmod rewrite actions ssl sudo cp /vagrant/util/vagrant_vhost.sh /usr/local/bin/vhost @@ -44,8 +39,11 @@ sudo service apache2 restart #Install php echo ">>> Installing PHP5" sudo apt-get install -y php5 libapache2-mod-php5 php5-cli php5-mysql php5-curl php5-gd +sudo apt-get install -y imagemagick +sudo apt-get install -y php5-imagick sudo service apache2 restart + #Install mysql echo ">>> Installing Mysql" sudo debconf-set-selections <<< "mysql-server mysql-server/root_password password root" diff --git a/view/de/messages.po b/view/de/messages.po index e1d3d54f81..b6a6e2057c 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the Friendica package. # # Translators: -# Abrax , 2015 +# Andreas H., 2015 # bavatar , 2011 # Erkan Yilmaz , 2011 # Fabian Dost , 2012 @@ -31,9 +31,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-01 07:09+0200\n" -"PO-Revision-Date: 2015-09-16 17:08+0000\n" -"Last-Translator: Abrax \n" +"POT-Creation-Date: 2015-11-08 21:46+0100\n" +"PO-Revision-Date: 2015-11-10 12:59+0000\n" +"Last-Translator: Andreas H.\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,435 +41,442 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/contacts.php:114 +#: mod/contacts.php:118 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d Kontakt bearbeitet." msgstr[1] "%d Kontakte bearbeitet" -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:149 mod/contacts.php:372 msgid "Could not access contact record." msgstr "Konnte nicht auf die Kontaktdaten zugreifen." -#: mod/contacts.php:159 +#: mod/contacts.php:163 msgid "Could not locate selected profile." msgstr "Konnte das ausgewählte Profil nicht finden." -#: mod/contacts.php:192 +#: mod/contacts.php:196 msgid "Contact updated." msgstr "Kontakt aktualisiert." -#: mod/contacts.php:194 mod/dfrn_request.php:576 +#: mod/contacts.php:198 mod/dfrn_request.php:576 msgid "Failed to update contact record." msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 +#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 #: mod/profile_photo.php:19 mod/profile_photo.php:169 -#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 -#: mod/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 -#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 -#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 +#: mod/ostatus_subscribe.php:9 mod/follow.php:10 mod/follow.php:72 +#: mod/follow.php:137 mod/item.php:169 mod/item.php:185 mod/group.php:19 +#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/viewcontacts.php:24 mod/notifications.php:69 +#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120 +#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:11 mod/events.php:165 mod/wallmessage.php:9 #: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 -#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 #: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 -#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 -#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 -#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5023 index.php:382 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149 +#: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101 +#: mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5103 index.php:382 msgid "Permission denied." msgstr "Zugriff verweigert." -#: mod/contacts.php:361 +#: mod/contacts.php:393 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: mod/contacts.php:361 +#: mod/contacts.php:393 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: mod/contacts.php:372 +#: mod/contacts.php:404 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: mod/contacts.php:372 +#: mod/contacts.php:404 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: mod/contacts.php:384 +#: mod/contacts.php:416 msgid "Contact has been archived" msgstr "Kontakt wurde archiviert" -#: mod/contacts.php:384 +#: mod/contacts.php:416 msgid "Contact has been unarchived" msgstr "Kontakt wurde aus dem Archiv geholt" -#: mod/contacts.php:411 mod/contacts.php:767 +#: mod/contacts.php:443 mod/contacts.php:816 msgid "Do you really want to delete this contact?" msgstr "Möchtest Du wirklich diesen Kontakt löschen?" -#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 -#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 -#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 -#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 -#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 -#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 +#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 +#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 +#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 +#: mod/settings.php:1162 mod/dfrn_request.php:848 mod/register.php:235 #: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/api.php:105 include/items.php:4855 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4935 msgid "Yes" msgstr "Ja" -#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 -#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 -#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 -#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 -#: include/items.php:4858 +#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:147 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 +#: include/items.php:4938 msgid "Cancel" msgstr "Abbrechen" -#: mod/contacts.php:428 +#: mod/contacts.php:460 msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." -#: mod/contacts.php:466 +#: mod/contacts.php:498 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: mod/contacts.php:470 +#: mod/contacts.php:502 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: mod/contacts.php:475 +#: mod/contacts.php:507 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit Dir" -#: mod/contacts.php:495 +#: mod/contacts.php:527 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: mod/contacts.php:498 mod/admin.php:618 +#: mod/contacts.php:530 mod/admin.php:643 msgid "Never" msgstr "Niemals" -#: mod/contacts.php:502 +#: mod/contacts.php:534 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: mod/contacts.php:502 +#: mod/contacts.php:534 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: mod/contacts.php:504 +#: mod/contacts.php:536 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: mod/contacts.php:508 +#: mod/contacts.php:540 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:543 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" -#: mod/contacts.php:516 +#: mod/contacts.php:548 msgid "View all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820 +#: mod/admin.php:1114 msgid "Unblock" msgstr "Entsperren" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820 +#: mod/admin.php:1113 msgid "Block" msgstr "Sperren" -#: mod/contacts.php:524 +#: mod/contacts.php:556 msgid "Toggle Blocked status" msgstr "Geblockt-Status ein-/ausschalten" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821 msgid "Unignore" msgstr "Ignorieren aufheben" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 msgid "Ignore" msgstr "Ignorieren" -#: mod/contacts.php:531 +#: mod/contacts.php:564 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:570 mod/contacts.php:822 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:570 mod/contacts.php:822 msgid "Archive" msgstr "Archivieren" -#: mod/contacts.php:539 +#: mod/contacts.php:573 msgid "Toggle Archive status" msgstr "Archiviert-Status ein-/ausschalten" -#: mod/contacts.php:543 +#: mod/contacts.php:578 msgid "Repair" msgstr "Reparieren" -#: mod/contacts.php:546 +#: mod/contacts.php:581 msgid "Advanced Contact Settings" msgstr "Fortgeschrittene Kontakteinstellungen" -#: mod/contacts.php:553 +#: mod/contacts.php:589 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: mod/contacts.php:556 +#: mod/contacts.php:592 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: mod/contacts.php:557 mod/admin.php:627 +#: mod/contacts.php:593 mod/admin.php:652 msgid "Disabled" msgstr "Deaktiviert" -#: mod/contacts.php:557 +#: mod/contacts.php:593 msgid "Fetch information" msgstr "Beziehe Information" -#: mod/contacts.php:557 +#: mod/contacts.php:593 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: mod/contacts.php:566 +#: mod/contacts.php:606 msgid "Contact Editor" msgstr "Kontakt Editor" -#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 -#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 -#: mod/events.php:511 mod/content.php:712 mod/install.php:250 -#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 -#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 -#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 -#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 -#: object/Item.php:680 view/theme/cleanzero/config.php:80 +#: mod/contacts.php:608 mod/manage.php:124 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/events.php:574 mod/content.php:712 mod/install.php:253 +#: mod/install.php:291 mod/mood.php:137 mod/profiles.php:696 +#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 +#: mod/photos.php:1129 mod/photos.php:1253 mod/photos.php:1571 +#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: object/Item.php:710 view/theme/cleanzero/config.php:80 #: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 #: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 -#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "Senden" -#: mod/contacts.php:569 +#: mod/contacts.php:609 msgid "Profile Visibility" msgstr "Profil-Sichtbarkeit" -#: mod/contacts.php:570 +#: mod/contacts.php:610 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." -#: mod/contacts.php:571 +#: mod/contacts.php:611 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: mod/contacts.php:572 +#: mod/contacts.php:612 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 -#: mod/nogroup.php:40 +#: mod/contacts.php:617 mod/contacts.php:860 mod/viewcontacts.php:66 +#: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besuche %ss Profil [%s]" -#: mod/contacts.php:578 +#: mod/contacts.php:618 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: mod/contacts.php:579 +#: mod/contacts.php:619 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: mod/contacts.php:580 +#: mod/contacts.php:620 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: mod/contacts.php:581 +#: mod/contacts.php:621 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: mod/contacts.php:583 +#: mod/contacts.php:623 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: mod/contacts.php:587 +#: mod/contacts.php:627 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: mod/contacts.php:589 +#: mod/contacts.php:629 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: mod/contacts.php:591 mod/admin.php:1584 +#: mod/contacts.php:631 mod/admin.php:1650 msgid "Update now" msgstr "Jetzt aktualisieren" -#: mod/contacts.php:598 +#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 +#: include/conversation.php:924 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: mod/contacts.php:640 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: mod/contacts.php:599 +#: mod/contacts.php:641 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: mod/contacts.php:600 +#: mod/contacts.php:642 msgid "Currently archived" msgstr "Momentan archiviert" -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 +#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "Verbirg diesen Kontakt vor andere" -#: mod/contacts.php:601 +#: mod/contacts.php:643 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: mod/contacts.php:602 +#: mod/contacts.php:644 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: mod/contacts.php:602 +#: mod/contacts.php:644 msgid "Send a notification of every new post of this contact" msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: mod/contacts.php:605 +#: mod/contacts.php:647 msgid "Blacklisted keywords" msgstr "Blacklistete Schlüsselworte " -#: mod/contacts.php:605 +#: mod/contacts.php:647 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: mod/contacts.php:612 +#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "Profil URL" -#: mod/contacts.php:658 +#: mod/contacts.php:700 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: mod/contacts.php:661 +#: mod/contacts.php:703 msgid "Suggest potential friends" msgstr "Freunde vorschlagen" -#: mod/contacts.php:665 mod/group.php:192 +#: mod/contacts.php:708 mod/group.php:192 msgid "All Contacts" msgstr "Alle Kontakte" -#: mod/contacts.php:668 +#: mod/contacts.php:711 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:672 +#: mod/contacts.php:716 msgid "Unblocked" msgstr "Ungeblockt" -#: mod/contacts.php:675 +#: mod/contacts.php:719 msgid "Only show unblocked contacts" msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: mod/contacts.php:680 +#: mod/contacts.php:725 msgid "Blocked" msgstr "Geblockt" -#: mod/contacts.php:683 +#: mod/contacts.php:728 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: mod/contacts.php:688 +#: mod/contacts.php:734 msgid "Ignored" msgstr "Ignoriert" -#: mod/contacts.php:691 +#: mod/contacts.php:737 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: mod/contacts.php:696 +#: mod/contacts.php:743 msgid "Archived" msgstr "Archiviert" -#: mod/contacts.php:699 +#: mod/contacts.php:746 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: mod/contacts.php:704 +#: mod/contacts.php:752 msgid "Hidden" msgstr "Verborgen" -#: mod/contacts.php:707 +#: mod/contacts.php:755 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 +#: mod/contacts.php:807 include/text.php:1005 include/nav.php:123 +#: include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Kontakte" -#: mod/contacts.php:762 +#: mod/contacts.php:811 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: mod/contacts.php:763 mod/directory.php:63 +#: mod/contacts.php:812 msgid "Finding: " msgstr "Funde: " -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:813 mod/directory.php:202 include/contact_widgets.php:34 msgid "Find" msgstr "Finde" -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:819 mod/settings.php:146 mod/settings.php:674 msgid "Update" msgstr "Aktualisierungen" -#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 -#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 +#: mod/contacts.php:823 mod/group.php:171 mod/admin.php:1112 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 +#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "Löschen" -#: mod/contacts.php:786 +#: mod/contacts.php:836 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: mod/contacts.php:790 +#: mod/contacts.php:840 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: mod/contacts.php:794 +#: mod/contacts.php:844 msgid "you are a fan of" msgstr "Du bist Fan von" -#: mod/contacts.php:811 mod/nogroup.php:41 +#: mod/contacts.php:861 mod/nogroup.php:42 msgid "Edit contact" msgstr "Kontakt bearbeiten" @@ -477,17 +484,17 @@ msgstr "Kontakt bearbeiten" msgid "No profile" msgstr "Kein Profil" -#: mod/manage.php:106 +#: mod/manage.php:120 msgid "Manage Identities and/or Pages" msgstr "Verwalte Identitäten und/oder Seiten" -#: mod/manage.php:107 +#: mod/manage.php:121 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." -#: mod/manage.php:108 +#: mod/manage.php:122 msgid "Select an identity to manage: " msgstr "Wähle eine Identität zum Verwalten aus: " @@ -507,8 +514,8 @@ msgstr "Ungültiger Profil-Bezeichner." msgid "Profile Visibility Editor" msgstr "Editor für die Profil-Sichtbarkeit" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 -#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:530 +#: include/identity.php:611 include/identity.php:641 include/nav.php:76 #: view/theme/diabook/theme.php:124 msgid "Profile" msgstr "Profil" @@ -525,23 +532,23 @@ msgstr "Sichtbar für" msgid "All Contacts (with secure profile access)" msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 -#: mod/notice.php:15 include/items.php:4814 +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1157 mod/admin.php:1378 +#: mod/notice.php:15 include/items.php:4894 msgid "Item not found." msgstr "Beitrag nicht gefunden." -#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 +#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 #: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 -#: mod/directory.php:35 mod/photos.php:942 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." -#: mod/display.php:343 mod/profile.php:155 +#: mod/display.php:331 mod/profile.php:155 msgid "Access to this profile has been restricted." msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." -#: mod/display.php:505 +#: mod/display.php:493 msgid "Item has been removed." msgstr "Eintrag wurde entfernt." @@ -576,8 +583,8 @@ msgid "" " join." msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." -#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 -#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: mod/newmember.php:22 mod/admin.php:1209 mod/admin.php:1454 +#: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 #: view/theme/diabook/theme.php:648 msgid "Settings" msgstr "Einstellungen" @@ -601,7 +608,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:709 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" @@ -700,7 +707,7 @@ msgid "" "hours." msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." -#: mod/newmember.php:66 include/group.php:270 +#: mod/newmember.php:66 include/group.php:272 msgid "Groups" msgstr "Gruppen" @@ -759,9 +766,10 @@ msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 #: mod/profile_photo.php:204 mod/profile_photo.php:296 -#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 -#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 -#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 +#: mod/profile_photo.php:305 mod/photos.php:70 mod/photos.php:184 +#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1854 include/user.php:343 include/user.php:350 +#: include/user.php:357 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Profilbilder" @@ -781,12 +789,12 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 +#: mod/profile_photo.php:144 mod/wall_upload.php:151 mod/photos.php:803 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildgröße überschreitet das Limit von %s" -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 +#: mod/profile_photo.php:153 mod/wall_upload.php:183 mod/photos.php:843 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." @@ -830,21 +838,21 @@ msgstr "Bearbeitung abgeschlossen" msgid "Image uploaded successfully." msgstr "Bild erfolgreich hochgeladen." -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 +#: mod/profile_photo.php:301 mod/wall_upload.php:216 mod/photos.php:870 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 +#: include/text.php:1988 include/diaspora.php:2140 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "Foto" -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 -#: include/conversation.php:121 include/conversation.php:130 -#: include/conversation.php:248 include/conversation.php:257 -#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 +#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" msgstr "Status" @@ -870,8 +878,44 @@ msgstr "Wähle ein Tag zum Entfernen aus: " msgid "Remove" msgstr "Entfernen" -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "OStatus Kontakten folgen" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "Keine Kontakte gefunden." + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "Konnte die Kontaktinformationen nicht einholen." + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." + +#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "Erledigt" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "Erfolg" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "Fehlgeschlagen" + +#: mod/ostatus_subscribe.php:69 object/Item.php:235 +msgid "ignored" +msgstr "Ignoriert" + +#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." + +#: mod/filer.php:30 include/conversation.php:1133 +#: include/conversation.php:1151 msgid "Save to Folder:" msgstr "In diesem Ordner speichern:" @@ -879,86 +923,113 @@ msgstr "In diesem Ordner speichern:" msgid "- select -" msgstr "- auswählen -" -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 +#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:997 msgid "Save" msgstr "Speichern" -#: mod/follow.php:26 +#: mod/follow.php:18 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: mod/follow.php:29 msgid "You already added this contact." msgstr "Du hast den Kontakt bereits hinzugefügt." -#: mod/follow.php:58 mod/dfrn_request.php:847 +#: mod/follow.php:38 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." + +#: mod/follow.php:45 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." + +#: mod/follow.php:52 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden." + +#: mod/follow.php:104 mod/dfrn_request.php:847 msgid "Please answer the following:" msgstr "Bitte beantworte folgendes:" -#: mod/follow.php:59 mod/dfrn_request.php:848 +#: mod/follow.php:105 mod/dfrn_request.php:848 #, php-format msgid "Does %s know you?" msgstr "Kennt %s Dich?" -#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 -#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 -#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 -#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 +#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 +#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 +#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 +#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:848 #: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 -#: mod/api.php:106 +#: mod/profiles.php:687 mod/api.php:106 msgid "No" msgstr "Nein" -#: mod/follow.php:60 mod/dfrn_request.php:852 +#: mod/follow.php:106 mod/dfrn_request.php:852 msgid "Add a personal note:" msgstr "Eine persönliche Notiz beifügen:" -#: mod/follow.php:66 mod/dfrn_request.php:858 +#: mod/follow.php:112 mod/dfrn_request.php:858 msgid "Your Identity Address:" msgstr "Adresse Deines Profils:" -#: mod/follow.php:69 mod/dfrn_request.php:861 -msgid "Submit Request" -msgstr "Anfrage abschicken" +#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 +#: mod/directory.php:139 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Ort:" -#: mod/follow.php:108 +#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 +#: include/identity.php:277 include/identity.php:582 +msgid "About:" +msgstr "Über:" + +#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:576 +msgid "Tags:" +msgstr "Tags" + +#: mod/follow.php:162 msgid "Contact added" msgstr "Kontakt hinzugefügt" -#: mod/item.php:115 +#: mod/item.php:114 msgid "Unable to locate original post." msgstr "Konnte den Originalbeitrag nicht finden." -#: mod/item.php:347 +#: mod/item.php:322 msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." -#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 -#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 -#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 +#: mod/item.php:461 mod/wall_upload.php:213 mod/wall_upload.php:227 +#: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 msgid "Wall Photos" msgstr "Pinnwand-Bilder" -#: mod/item.php:860 +#: mod/item.php:835 msgid "System error. Post not saved." msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." -#: mod/item.php:989 +#: mod/item.php:964 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." -#: mod/item.php:991 +#: mod/item.php:966 #, php-format msgid "You may visit them online at %s" msgstr "Du kannst sie online unter %s besuchen" -#: mod/item.php:992 +#: mod/item.php:967 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." -#: mod/item.php:996 +#: mod/item.php:971 #, php-format msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." @@ -987,7 +1058,7 @@ msgstr "Gruppe speichern" msgid "Create a group of contacts/friends." msgstr "Eine Gruppe von Kontakten/Freunden anlegen." -#: mod/group.php:94 mod/group.php:178 include/group.php:273 +#: mod/group.php:94 mod/group.php:178 include/group.php:275 msgid "Group Name: " msgstr "Gruppenname:" @@ -1063,8 +1134,8 @@ msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." msgid "Unable to set contact photo." msgstr "Konnte das Bild des Kontakts nicht speichern." -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:634 +#: mod/dfrn_confirm.php:487 include/conversation.php:185 +#: include/diaspora.php:636 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s ist nun mit %2$s befreundet" @@ -1105,7 +1176,7 @@ msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werd msgid "Unable to update your contact profile details on our system" msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4313 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" @@ -1122,39 +1193,39 @@ msgstr "Das angefragte Profil ist nicht vorhanden." msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" -#: mod/videos.php:113 +#: mod/videos.php:115 msgid "Do you really want to delete this video?" msgstr "Möchtest Du dieses Video wirklich löschen?" -#: mod/videos.php:118 +#: mod/videos.php:120 msgid "Delete Video" msgstr "Video Löschen" -#: mod/videos.php:197 +#: mod/videos.php:199 msgid "No videos selected" msgstr "Keine Videos ausgewählt" -#: mod/videos.php:298 mod/photos.php:1053 +#: mod/videos.php:300 mod/photos.php:1079 msgid "Access to this item is restricted." msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." -#: mod/videos.php:373 include/text.php:1460 +#: mod/videos.php:375 include/text.php:1458 msgid "View Video" msgstr "Video ansehen" -#: mod/videos.php:380 mod/photos.php:1827 +#: mod/videos.php:382 mod/photos.php:1882 msgid "View Album" msgstr "Album betrachten" -#: mod/videos.php:389 +#: mod/videos.php:391 msgid "Recent Videos" msgstr "Neueste Videos" -#: mod/videos.php:391 +#: mod/videos.php:393 msgid "Upload New Videos" msgstr "Neues Video hochladen" -#: mod/tagger.php:95 include/conversation.php:265 +#: mod/tagger.php:95 include/conversation.php:278 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" @@ -1172,9 +1243,9 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1702 msgid "Invalid request." msgstr "Ungültige Anfrage" @@ -1230,7 +1301,7 @@ msgid "" "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/lostpass.php:109 boot.php:1287 +#: mod/lostpass.php:109 boot.php:1295 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -1304,26 +1375,46 @@ msgstr "Spitzname oder E-Mail:" msgid "Reset" msgstr "Zurücksetzen" -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:1986 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "Event" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s" -#: mod/like.php:168 include/conversation.php:140 +#: mod/like.php:189 include/conversation.php:144 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s nicht" -#: mod/ping.php:233 +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil." + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s nimmt nicht an %2$ss %3$s teil." + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." + +#: mod/ping.php:257 msgid "{0} wants to be your friend" msgstr "{0} möchte mit Dir in Kontakt treten" -#: mod/ping.php:248 +#: mod/ping.php:272 msgid "{0} sent you a message" msgstr "{0} schickte Dir eine Nachricht" -#: mod/ping.php:263 +#: mod/ping.php:287 msgid "{0} requested registration" msgstr "{0} möchte sich registrieren" @@ -1331,205 +1422,190 @@ msgstr "{0} möchte sich registrieren" msgid "No contacts." msgstr "Keine Kontakte." -#: mod/viewcontacts.php:78 include/text.php:917 +#: mod/viewcontacts.php:83 include/text.php:917 msgid "View Contacts" msgstr "Kontakte anzeigen" -#: mod/notifications.php:26 +#: mod/notifications.php:29 msgid "Invalid request identifier." msgstr "Invalid request identifier." -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 +#: mod/notifications.php:38 mod/notifications.php:180 +#: mod/notifications.php:260 msgid "Discard" msgstr "Verwerfen" -#: mod/notifications.php:78 +#: mod/notifications.php:81 msgid "System" msgstr "System" -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +#: mod/notifications.php:87 mod/admin.php:228 include/nav.php:154 msgid "Network" msgstr "Netzwerk" -#: mod/notifications.php:90 mod/network.php:375 +#: mod/notifications.php:93 mod/network.php:385 msgid "Personal" msgstr "Persönlich" -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157 #: view/theme/diabook/theme.php:123 msgid "Home" msgstr "Pinnwand" -#: mod/notifications.php:102 include/nav.php:161 +#: mod/notifications.php:105 include/nav.php:162 msgid "Introductions" msgstr "Kontaktanfragen" -#: mod/notifications.php:127 +#: mod/notifications.php:130 msgid "Show Ignored Requests" msgstr "Zeige ignorierte Anfragen" -#: mod/notifications.php:127 +#: mod/notifications.php:130 msgid "Hide Ignored Requests" msgstr "Verberge ignorierte Anfragen" -#: mod/notifications.php:159 mod/notifications.php:209 +#: mod/notifications.php:164 mod/notifications.php:234 msgid "Notification type: " msgstr "Benachrichtigungstyp: " -#: mod/notifications.php:160 +#: mod/notifications.php:165 msgid "Friend Suggestion" msgstr "Kontaktvorschlag" -#: mod/notifications.php:162 +#: mod/notifications.php:167 #, php-format msgid "suggested by %s" msgstr "vorgeschlagen von %s" -#: mod/notifications.php:168 mod/notifications.php:228 +#: mod/notifications.php:173 mod/notifications.php:252 msgid "Post a new friend activity" msgstr "Neue-Kontakt Nachricht senden" -#: mod/notifications.php:168 mod/notifications.php:228 +#: mod/notifications.php:173 mod/notifications.php:252 msgid "if applicable" msgstr "falls anwendbar" -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1110 msgid "Approve" msgstr "Genehmigen" -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "Claims to be known to you: " msgstr "Behauptet Dich zu kennen: " -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "yes" msgstr "ja" -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "no" msgstr "nein" -#: mod/notifications.php:192 +#: mod/notifications.php:197 msgid "" "Shall your connection be bidirectional or not? \"Friend\" implies that you " "allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " "you allow to read but you do not want to read theirs. Approve as: " msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" -#: mod/notifications.php:195 +#: mod/notifications.php:200 msgid "" "Shall your connection be bidirectional or not? \"Friend\" implies that you " "allow to read and you subscribe to their posts. \"Sharer\" means that you " "allow to read but you do not want to read theirs. Approve as: " msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" -#: mod/notifications.php:203 +#: mod/notifications.php:208 msgid "Friend" msgstr "Freund" -#: mod/notifications.php:204 +#: mod/notifications.php:209 msgid "Sharer" msgstr "Teilenden" -#: mod/notifications.php:204 +#: mod/notifications.php:209 msgid "Fan/Admirer" msgstr "Fan/Verehrer" -#: mod/notifications.php:210 +#: mod/notifications.php:235 msgid "Friend/Connect Request" msgstr "Kontakt-/Freundschaftsanfrage" -#: mod/notifications.php:210 +#: mod/notifications.php:235 msgid "New Follower" msgstr "Neuer Bewunderer" -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 -#: include/event.php:42 -msgid "Location:" -msgstr "Ort:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "Über:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Tags" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 +#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:270 +#: include/identity.php:541 msgid "Gender:" msgstr "Geschlecht:" -#: mod/notifications.php:240 +#: mod/notifications.php:266 msgid "No introductions." msgstr "Keine Kontaktanfragen." -#: mod/notifications.php:243 include/nav.php:164 +#: mod/notifications.php:269 include/nav.php:165 msgid "Notifications" msgstr "Benachrichtigungen" -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 #, php-format msgid "%s liked %s's post" msgstr "%s mag %ss Beitrag" -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 #, php-format msgid "%s disliked %s's post" msgstr "%s mag %ss Beitrag nicht" -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 #, php-format msgid "%s is now friends with %s" msgstr "%s ist jetzt mit %s befreundet" -#: mod/notifications.php:313 mod/notifications.php:442 +#: mod/notifications.php:339 mod/notifications.php:468 #, php-format msgid "%s created a new post" msgstr "%s hat einen neuen Beitrag erstellt" -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 #, php-format msgid "%s commented on %s's post" msgstr "%s hat %ss Beitrag kommentiert" -#: mod/notifications.php:329 +#: mod/notifications.php:355 msgid "No more network notifications." msgstr "Keine weiteren Netzwerk-Benachrichtigungen." -#: mod/notifications.php:333 +#: mod/notifications.php:359 msgid "Network Notifications" msgstr "Netzwerk Benachrichtigungen" -#: mod/notifications.php:359 mod/notify.php:72 +#: mod/notifications.php:385 mod/notify.php:72 msgid "No more system notifications." msgstr "Keine weiteren Systembenachrichtigungen." -#: mod/notifications.php:363 mod/notify.php:76 +#: mod/notifications.php:389 mod/notify.php:76 msgid "System Notifications" msgstr "Systembenachrichtigungen" -#: mod/notifications.php:458 +#: mod/notifications.php:484 msgid "No more personal notifications." msgstr "Keine weiteren persönlichen Benachrichtigungen" -#: mod/notifications.php:462 +#: mod/notifications.php:488 msgid "Personal Notifications" msgstr "Persönliche Benachrichtigungen" -#: mod/notifications.php:543 +#: mod/notifications.php:569 msgid "No more home notifications." msgstr "Keine weiteren Pinnwand-Benachrichtigungen" -#: mod/notifications.php:547 +#: mod/notifications.php:573 msgid "Home Notifications" msgstr "Pinnwand Benachrichtigungen" @@ -1581,146 +1657,146 @@ msgstr "Originaltext (Diaspora Format): " msgid "diaspora2bb: " msgstr "diaspora2bb: " -#: mod/navigation.php:20 include/nav.php:34 +#: mod/navigation.php:19 include/nav.php:33 msgid "Nothing new here" msgstr "Keine Neuigkeiten" -#: mod/navigation.php:24 include/nav.php:38 +#: mod/navigation.php:23 include/nav.php:37 msgid "Clear notifications" msgstr "Bereinige Benachrichtigungen" -#: mod/message.php:9 include/nav.php:173 +#: mod/message.php:15 include/nav.php:174 msgid "New Message" msgstr "Neue Nachricht" -#: mod/message.php:64 mod/wallmessage.php:56 +#: mod/message.php:70 mod/wallmessage.php:56 msgid "No recipient selected." msgstr "Kein Empfänger gewählt." -#: mod/message.php:68 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Konnte die Kontaktinformationen nicht finden." -#: mod/message.php:71 mod/wallmessage.php:62 +#: mod/message.php:77 mod/wallmessage.php:62 msgid "Message could not be sent." msgstr "Nachricht konnte nicht gesendet werden." -#: mod/message.php:74 mod/wallmessage.php:65 +#: mod/message.php:80 mod/wallmessage.php:65 msgid "Message collection failure." msgstr "Konnte Nachrichten nicht abrufen." -#: mod/message.php:77 mod/wallmessage.php:68 +#: mod/message.php:83 mod/wallmessage.php:68 msgid "Message sent." msgstr "Nachricht gesendet." -#: mod/message.php:183 include/nav.php:170 +#: mod/message.php:189 include/nav.php:171 msgid "Messages" msgstr "Nachrichten" -#: mod/message.php:208 +#: mod/message.php:214 msgid "Do you really want to delete this message?" msgstr "Möchtest Du wirklich diese Nachricht löschen?" -#: mod/message.php:228 +#: mod/message.php:234 msgid "Message deleted." msgstr "Nachricht gelöscht." -#: mod/message.php:259 +#: mod/message.php:265 msgid "Conversation removed." msgstr "Unterhaltung gelöscht." -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 +#: mod/message.php:290 mod/message.php:298 mod/message.php:427 +#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1129 include/conversation.php:1147 msgid "Please enter a link URL:" msgstr "Bitte gib die URL des Links ein:" -#: mod/message.php:320 mod/wallmessage.php:142 +#: mod/message.php:326 mod/wallmessage.php:142 msgid "Send Private Message" msgstr "Private Nachricht senden" -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144 msgid "To:" msgstr "An:" -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145 msgid "Subject:" msgstr "Betreff:" -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151 #: mod/invite.php:134 msgid "Your message:" msgstr "Deine Nachricht:" -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 +#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 +#: mod/editpost.php:109 include/conversation.php:1184 msgid "Upload photo" msgstr "Foto hochladen" -#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1060 +#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 +#: mod/editpost.php:113 include/conversation.php:1188 msgid "Insert web link" msgstr "Einen Link einfügen" -#: mod/message.php:335 mod/message.php:566 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 -#: include/conversation.php:1074 +#: mod/message.php:341 mod/message.php:526 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 +#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: include/conversation.php:1202 msgid "Please wait" msgstr "Bitte warten" -#: mod/message.php:372 +#: mod/message.php:368 msgid "No messages." msgstr "Keine Nachrichten." -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Du und %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s und Du" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: mod/message.php:451 +#: mod/message.php:411 msgid "Message not available." msgstr "Nachricht nicht verfügbar." -#: mod/message.php:521 +#: mod/message.php:481 msgid "Delete message" msgstr "Nachricht löschen" -#: mod/message.php:549 +#: mod/message.php:507 mod/message.php:582 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: mod/message.php:509 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." -#: mod/message.php:553 +#: mod/message.php:513 msgid "Send Reply" msgstr "Antwort senden" +#: mod/message.php:555 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: mod/message.php:558 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: mod/message.php:561 +#, php-format +msgid "%s and You" +msgstr "%s und Du" + +#: mod/message.php:585 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: mod/message.php:588 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + #: mod/update_display.php:22 mod/update_community.php:18 #: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 msgid "[Embedded content - reload page to view]" @@ -1735,80 +1811,80 @@ msgid "Contact update failed." msgstr "Konnte den Kontakt nicht aktualisieren." #: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: mod/crepair.php:142 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: mod/crepair.php:143 +#: mod/crepair.php:141 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" - -#: mod/crepair.php:160 mod/crepair.php:162 +#: mod/crepair.php:154 mod/crepair.php:156 msgid "No mirroring" msgstr "Kein Spiegeln" -#: mod/crepair.php:160 +#: mod/crepair.php:154 msgid "Mirror as forwarded posting" msgstr "Spiegeln als weitergeleitete Beiträge" -#: mod/crepair.php:160 mod/crepair.php:162 +#: mod/crepair.php:154 mod/crepair.php:156 msgid "Mirror as my own posting" msgstr "Spiegeln als meine eigenen Beiträge" -#: mod/crepair.php:169 +#: mod/crepair.php:162 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" + +#: mod/crepair.php:166 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: mod/crepair.php:168 msgid "Refetch contact data" msgstr "Kontaktdaten neu laden" -#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 -#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 -#: mod/settings.php:660 +#: mod/crepair.php:169 mod/admin.php:1108 mod/admin.php:1120 +#: mod/admin.php:1121 mod/admin.php:1134 mod/settings.php:650 +#: mod/settings.php:676 msgid "Name" msgstr "Name" -#: mod/crepair.php:171 +#: mod/crepair.php:170 msgid "Account Nickname" msgstr "Konto-Spitzname" -#: mod/crepair.php:172 +#: mod/crepair.php:171 msgid "@Tagname - overrides Name/Nickname" msgstr "@Tagname - überschreibt Name/Spitzname" -#: mod/crepair.php:173 +#: mod/crepair.php:172 msgid "Account URL" msgstr "Konto-URL" -#: mod/crepair.php:174 +#: mod/crepair.php:173 msgid "Friend Request URL" msgstr "URL für Freundschaftsanfragen" -#: mod/crepair.php:175 +#: mod/crepair.php:174 msgid "Friend Confirm URL" msgstr "URL für Bestätigungen von Freundschaftsanfragen" -#: mod/crepair.php:176 +#: mod/crepair.php:175 msgid "Notification Endpoint URL" msgstr "URL-Endpunkt für Benachrichtigungen" -#: mod/crepair.php:177 +#: mod/crepair.php:176 msgid "Poll/Feed URL" msgstr "Pull/Feed-URL" -#: mod/crepair.php:178 +#: mod/crepair.php:177 msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" -#: mod/crepair.php:179 +#: mod/crepair.php:178 msgid "Remote Self" msgstr "Entfernte Konten" @@ -1816,13 +1892,13 @@ msgstr "Entfernte Konten" msgid "Mirror postings from this contact" msgstr "Spiegle Beiträge dieses Kontakts" -#: mod/crepair.php:181 +#: mod/crepair.php:183 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 msgid "Login" msgstr "Anmeldung" @@ -1834,571 +1910,588 @@ msgstr "Der Beitrag wurde angelegt" msgid "Access denied." msgstr "Zugriff verweigert." -#: mod/dirfind.php:36 +#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:84 +#: mod/suggest.php:97 include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Verbinden" + +#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 +#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:335 +#: include/conversation.php:912 include/conversation.php:926 +msgid "View Profile" +msgstr "Profil anschauen" + +#: mod/dirfind.php:217 #, php-format msgid "People Search - %s" msgstr "Personensuche - %s" -#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 -#: include/contact_widgets.php:10 include/identity.php:188 -msgid "Connect" -msgstr "Verbinden" - -#: mod/dirfind.php:139 mod/match.php:73 +#: mod/dirfind.php:224 mod/match.php:104 msgid "No matches" msgstr "Keine Übereinstimmungen" -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: mod/fbrowser.php:32 include/identity.php:649 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Bilder" -#: mod/fbrowser.php:122 +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 +#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 +#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 +#: view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: mod/fbrowser.php:125 msgid "Files" msgstr "Dateien" -#: mod/nogroup.php:59 +#: mod/nogroup.php:63 msgid "Contacts who are not members of a group" msgstr "Kontakte, die keiner Gruppe zugewiesen sind" -#: mod/admin.php:57 +#: mod/admin.php:80 msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." -#: mod/admin.php:104 mod/admin.php:682 +#: mod/admin.php:127 mod/admin.php:709 msgid "Site" msgstr "Seite" -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 +#: mod/admin.php:128 mod/admin.php:653 mod/admin.php:1103 mod/admin.php:1118 msgid "Users" msgstr "Nutzer" -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 +#: mod/admin.php:129 mod/admin.php:1207 mod/admin.php:1267 mod/settings.php:66 msgid "Plugins" msgstr "Plugins" -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 +#: mod/admin.php:130 mod/admin.php:1452 mod/admin.php:1503 msgid "Themes" msgstr "Themen" -#: mod/admin.php:108 +#: mod/admin.php:131 msgid "DB updates" msgstr "DB Updates" -#: mod/admin.php:109 mod/admin.php:200 +#: mod/admin.php:132 mod/admin.php:223 msgid "Inspect Queue" msgstr "Warteschlange Inspizieren" -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1591 msgid "Logs" msgstr "Protokolle" -#: mod/admin.php:125 +#: mod/admin.php:148 msgid "probe address" msgstr "Adresse untersuchen" -#: mod/admin.php:126 +#: mod/admin.php:149 msgid "check webfinger" msgstr "Webfinger überprüfen" -#: mod/admin.php:131 include/nav.php:193 +#: mod/admin.php:154 include/nav.php:194 msgid "Admin" msgstr "Administration" -#: mod/admin.php:132 +#: mod/admin.php:155 msgid "Plugin Features" msgstr "Plugin Features" -#: mod/admin.php:134 +#: mod/admin.php:157 msgid "diagnostics" msgstr "Diagnose" -#: mod/admin.php:135 +#: mod/admin.php:158 msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 -#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 -#: mod/admin.php:1524 +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:708 mod/admin.php:1102 +#: mod/admin.php:1206 mod/admin.php:1266 mod/admin.php:1451 mod/admin.php:1502 +#: mod/admin.php:1590 msgid "Administration" msgstr "Administration" -#: mod/admin.php:202 +#: mod/admin.php:225 msgid "ID" msgstr "ID" -#: mod/admin.php:203 +#: mod/admin.php:226 msgid "Recipient Name" msgstr "Empfänger Name" -#: mod/admin.php:204 +#: mod/admin.php:227 msgid "Recipient Profile" msgstr "Empfänger Profil" -#: mod/admin.php:206 +#: mod/admin.php:229 msgid "Created" msgstr "Erstellt" -#: mod/admin.php:207 +#: mod/admin.php:230 msgid "Last Tried" msgstr "Zuletzt versucht" -#: mod/admin.php:208 +#: mod/admin.php:231 msgid "" "This page lists the content of the queue for outgoing postings. These are " "postings the initial delivery failed for. They will be resend later and " "eventually deleted if the delivery fails permanently." msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden." -#: mod/admin.php:220 mod/admin.php:1025 +#: mod/admin.php:243 mod/admin.php:1056 msgid "Normal Account" msgstr "Normales Konto" -#: mod/admin.php:221 mod/admin.php:1026 +#: mod/admin.php:244 mod/admin.php:1057 msgid "Soapbox Account" msgstr "Marktschreier-Konto" -#: mod/admin.php:222 mod/admin.php:1027 +#: mod/admin.php:245 mod/admin.php:1058 msgid "Community/Celebrity Account" msgstr "Forum/Promi-Konto" -#: mod/admin.php:223 mod/admin.php:1028 +#: mod/admin.php:246 mod/admin.php:1059 msgid "Automatic Friend Account" msgstr "Automatisches Freundekonto" -#: mod/admin.php:224 +#: mod/admin.php:247 msgid "Blog Account" msgstr "Blog-Konto" -#: mod/admin.php:225 +#: mod/admin.php:248 msgid "Private Forum" msgstr "Privates Forum" -#: mod/admin.php:244 +#: mod/admin.php:267 msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: mod/admin.php:250 +#: mod/admin.php:273 msgid "Summary" msgstr "Zusammenfassung" -#: mod/admin.php:252 +#: mod/admin.php:275 msgid "Registered users" msgstr "Registrierte Nutzer" -#: mod/admin.php:254 +#: mod/admin.php:277 msgid "Pending registrations" msgstr "Anstehende Anmeldungen" -#: mod/admin.php:255 +#: mod/admin.php:278 msgid "Version" msgstr "Version" -#: mod/admin.php:260 +#: mod/admin.php:283 msgid "Active plugins" msgstr "Aktive Plugins" -#: mod/admin.php:283 +#: mod/admin.php:306 msgid "Can not parse base url. Must have at least ://" msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" -#: mod/admin.php:565 +#: mod/admin.php:585 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 benötigt die PHP Extension mcrypt." + +#: mod/admin.php:593 msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: mod/admin.php:594 mod/settings.php:883 +#: mod/admin.php:617 mod/settings.php:901 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: mod/admin.php:611 +#: mod/admin.php:636 msgid "No community page" msgstr "Keine Gemeinschaftsseite" -#: mod/admin.php:612 +#: mod/admin.php:637 msgid "Public postings from users of this site" msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" -#: mod/admin.php:613 +#: mod/admin.php:638 msgid "Global community page" msgstr "Globale Gemeinschaftsseite" -#: mod/admin.php:619 +#: mod/admin.php:644 msgid "At post arrival" msgstr "Beim Empfang von Nachrichten" -#: mod/admin.php:620 include/contact_selectors.php:56 +#: mod/admin.php:645 include/contact_selectors.php:56 msgid "Frequently" msgstr "immer wieder" -#: mod/admin.php:621 include/contact_selectors.php:57 +#: mod/admin.php:646 include/contact_selectors.php:57 msgid "Hourly" msgstr "Stündlich" -#: mod/admin.php:622 include/contact_selectors.php:58 +#: mod/admin.php:647 include/contact_selectors.php:58 msgid "Twice daily" msgstr "Zweimal täglich" -#: mod/admin.php:623 include/contact_selectors.php:59 +#: mod/admin.php:648 include/contact_selectors.php:59 msgid "Daily" msgstr "Täglich" -#: mod/admin.php:629 +#: mod/admin.php:654 msgid "Users, Global Contacts" msgstr "Nutzer, globale Kontakte" -#: mod/admin.php:630 +#: mod/admin.php:655 msgid "Users, Global Contacts/fallback" msgstr "Nutzer, globale Kontakte / Fallback" -#: mod/admin.php:634 +#: mod/admin.php:659 msgid "One month" msgstr "ein Monat" -#: mod/admin.php:635 +#: mod/admin.php:660 msgid "Three months" msgstr "drei Monate" -#: mod/admin.php:636 +#: mod/admin.php:661 msgid "Half a year" msgstr "ein halbes Jahr" -#: mod/admin.php:637 +#: mod/admin.php:662 msgid "One year" msgstr "ein Jahr" -#: mod/admin.php:642 +#: mod/admin.php:667 msgid "Multi user instance" msgstr "Mehrbenutzer Instanz" -#: mod/admin.php:665 +#: mod/admin.php:690 msgid "Closed" msgstr "Geschlossen" -#: mod/admin.php:666 +#: mod/admin.php:691 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: mod/admin.php:667 +#: mod/admin.php:692 msgid "Open" msgstr "Offen" -#: mod/admin.php:671 +#: mod/admin.php:696 msgid "No SSL policy, links will track page SSL state" msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: mod/admin.php:672 +#: mod/admin.php:697 msgid "Force all links to use SSL" msgstr "SSL für alle Links erzwingen" -#: mod/admin.php:673 +#: mod/admin.php:698 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" -#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 -#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 +#: mod/admin.php:710 mod/admin.php:1268 mod/admin.php:1504 mod/admin.php:1592 +#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 +#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 msgid "Save Settings" msgstr "Einstellungen speichern" -#: mod/admin.php:684 mod/register.php:260 +#: mod/admin.php:711 mod/register.php:260 msgid "Registration" msgstr "Registrierung" -#: mod/admin.php:685 +#: mod/admin.php:712 msgid "File upload" msgstr "Datei hochladen" -#: mod/admin.php:686 +#: mod/admin.php:713 msgid "Policies" msgstr "Regeln" -#: mod/admin.php:687 +#: mod/admin.php:714 msgid "Advanced" msgstr "Erweitert" -#: mod/admin.php:688 +#: mod/admin.php:715 msgid "Auto Discovered Contact Directory" msgstr "Automatisch ein Kontaktverzeichnis erstellen" -#: mod/admin.php:689 +#: mod/admin.php:716 msgid "Performance" msgstr "Performance" -#: mod/admin.php:690 +#: mod/admin.php:717 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." -#: mod/admin.php:693 +#: mod/admin.php:720 msgid "Site name" msgstr "Seitenname" -#: mod/admin.php:694 +#: mod/admin.php:721 msgid "Host name" msgstr "Host Name" -#: mod/admin.php:695 +#: mod/admin.php:722 msgid "Sender Email" msgstr "Absender für Emails" -#: mod/admin.php:695 +#: mod/admin.php:722 msgid "" "The email address your server shall use to send notification emails from." msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll." -#: mod/admin.php:696 +#: mod/admin.php:723 msgid "Banner/Logo" msgstr "Banner/Logo" -#: mod/admin.php:697 +#: mod/admin.php:724 msgid "Shortcut icon" msgstr "Shortcut Icon" -#: mod/admin.php:697 +#: mod/admin.php:724 msgid "Link to an icon that will be used for browsers." msgstr "Link zu einem Icon, das Browser verwenden werden." -#: mod/admin.php:698 +#: mod/admin.php:725 msgid "Touch icon" msgstr "Touch Icon" -#: mod/admin.php:698 +#: mod/admin.php:725 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen." -#: mod/admin.php:699 +#: mod/admin.php:726 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: mod/admin.php:699 +#: mod/admin.php:726 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden." -#: mod/admin.php:700 +#: mod/admin.php:727 msgid "System language" msgstr "Systemsprache" -#: mod/admin.php:701 +#: mod/admin.php:728 msgid "System theme" msgstr "Systemweites Theme" -#: mod/admin.php:701 +#: mod/admin.php:728 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" -#: mod/admin.php:702 +#: mod/admin.php:729 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: mod/admin.php:702 +#: mod/admin.php:729 msgid "Theme for mobile devices" msgstr "Thema für mobile Geräte" -#: mod/admin.php:703 +#: mod/admin.php:730 msgid "SSL link policy" msgstr "Regeln für SSL Links" -#: mod/admin.php:703 +#: mod/admin.php:730 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: mod/admin.php:704 +#: mod/admin.php:731 msgid "Force SSL" msgstr "Erzwinge SSL" -#: mod/admin.php:704 +#: mod/admin.php:731 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." -#: mod/admin.php:705 +#: mod/admin.php:732 msgid "Old style 'Share'" msgstr "Altes \"Teilen\" Element" -#: mod/admin.php:705 +#: mod/admin.php:732 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." -#: mod/admin.php:706 +#: mod/admin.php:733 msgid "Hide help entry from navigation menu" msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" -#: mod/admin.php:706 +#: mod/admin.php:733 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." -#: mod/admin.php:707 +#: mod/admin.php:734 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: mod/admin.php:707 +#: mod/admin.php:734 msgid "Make this instance multi-user or single-user for the named user" msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." -#: mod/admin.php:708 +#: mod/admin.php:735 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: mod/admin.php:708 +#: mod/admin.php:735 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." -#: mod/admin.php:709 +#: mod/admin.php:736 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: mod/admin.php:709 +#: mod/admin.php:736 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." -#: mod/admin.php:710 +#: mod/admin.php:737 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: mod/admin.php:710 +#: mod/admin.php:737 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." -#: mod/admin.php:712 +#: mod/admin.php:739 msgid "Register policy" msgstr "Registrierungsmethode" -#: mod/admin.php:713 +#: mod/admin.php:740 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: mod/admin.php:713 +#: mod/admin.php:740 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." -#: mod/admin.php:714 +#: mod/admin.php:741 msgid "Register text" msgstr "Registrierungstext" -#: mod/admin.php:714 +#: mod/admin.php:741 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." -#: mod/admin.php:715 +#: mod/admin.php:742 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: mod/admin.php:715 +#: mod/admin.php:742 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." -#: mod/admin.php:716 +#: mod/admin.php:743 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: mod/admin.php:716 +#: mod/admin.php:743 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: mod/admin.php:717 +#: mod/admin.php:744 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: mod/admin.php:717 +#: mod/admin.php:744 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: mod/admin.php:718 +#: mod/admin.php:745 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: mod/admin.php:718 +#: mod/admin.php:745 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." -#: mod/admin.php:719 +#: mod/admin.php:746 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: mod/admin.php:719 +#: mod/admin.php:746 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." -#: mod/admin.php:720 -msgid "Global directory update URL" -msgstr "URL für Updates beim weltweiten Verzeichnis" +#: mod/admin.php:747 +msgid "Global directory URL" +msgstr "URL des weltweiten Verzeichnisses" -#: mod/admin.php:720 +#: mod/admin.php:747 msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar." +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." -#: mod/admin.php:721 +#: mod/admin.php:748 msgid "Allow threaded items" msgstr "Erlaube Threads in Diskussionen" -#: mod/admin.php:721 +#: mod/admin.php:748 msgid "Allow infinite level threading for items on this site." msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." -#: mod/admin.php:722 +#: mod/admin.php:749 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: mod/admin.php:722 +#: mod/admin.php:749 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." -#: mod/admin.php:723 +#: mod/admin.php:750 msgid "Don't include post content in email notifications" msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" -#: mod/admin.php:723 +#: mod/admin.php:750 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." -#: mod/admin.php:724 +#: mod/admin.php:751 msgid "Disallow public access to addons listed in the apps menu." msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." -#: mod/admin.php:724 +#: mod/admin.php:751 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." -#: mod/admin.php:725 +#: mod/admin.php:752 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: mod/admin.php:725 +#: mod/admin.php:752 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2406,190 +2499,208 @@ msgid "" "while." msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." -#: mod/admin.php:726 +#: mod/admin.php:753 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben das remote_self Flag zu setzen" -#: mod/admin.php:726 +#: mod/admin.php:753 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." -#: mod/admin.php:727 +#: mod/admin.php:754 msgid "Block multiple registrations" msgstr "Unterbinde Mehrfachregistrierung" -#: mod/admin.php:727 +#: mod/admin.php:754 msgid "Disallow users to register additional accounts for use as pages." msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." -#: mod/admin.php:728 +#: mod/admin.php:755 msgid "OpenID support" msgstr "OpenID Unterstützung" -#: mod/admin.php:728 +#: mod/admin.php:755 msgid "OpenID support for registration and logins." msgstr "OpenID-Unterstützung für Registrierung und Login." -#: mod/admin.php:729 +#: mod/admin.php:756 msgid "Fullname check" msgstr "Namen auf Vollständigkeit überprüfen" -#: mod/admin.php:729 +#: mod/admin.php:756 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." -#: mod/admin.php:730 +#: mod/admin.php:757 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Reguläre Ausdrücke" -#: mod/admin.php:730 +#: mod/admin.php:757 msgid "Use PHP UTF8 regular expressions" msgstr "PHP UTF8 Ausdrücke verwenden" -#: mod/admin.php:731 +#: mod/admin.php:758 msgid "Community Page Style" msgstr "Art der Gemeinschaftsseite" -#: mod/admin.php:731 +#: mod/admin.php:758 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen." -#: mod/admin.php:732 +#: mod/admin.php:759 msgid "Posts per user on community page" msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" -#: mod/admin.php:732 +#: mod/admin.php:759 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt." -#: mod/admin.php:733 +#: mod/admin.php:760 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: mod/admin.php:733 +#: mod/admin.php:760 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." -#: mod/admin.php:734 +#: mod/admin.php:761 msgid "OStatus conversation completion interval" msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" -#: mod/admin.php:734 +#: mod/admin.php:761 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." -#: mod/admin.php:735 +#: mod/admin.php:762 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. " + +#: mod/admin.php:764 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist." + +#: mod/admin.php:765 msgid "Enable Diaspora support" msgstr "Diaspora Unterstützung aktivieren" -#: mod/admin.php:735 +#: mod/admin.php:765 msgid "Provide built-in Diaspora network compatibility." msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: mod/admin.php:736 +#: mod/admin.php:766 msgid "Only allow Friendica contacts" msgstr "Nur Friendica-Kontakte erlauben" -#: mod/admin.php:736 +#: mod/admin.php:766 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." -#: mod/admin.php:737 +#: mod/admin.php:767 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: mod/admin.php:737 +#: mod/admin.php:767 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." -#: mod/admin.php:738 +#: mod/admin.php:768 msgid "Proxy user" msgstr "Proxy Nutzer" -#: mod/admin.php:739 +#: mod/admin.php:769 msgid "Proxy URL" msgstr "Proxy URL" -#: mod/admin.php:740 +#: mod/admin.php:770 msgid "Network timeout" msgstr "Netzwerk Wartezeit" -#: mod/admin.php:740 +#: mod/admin.php:770 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." -#: mod/admin.php:741 +#: mod/admin.php:771 msgid "Delivery interval" msgstr "Zustellungsintervall" -#: mod/admin.php:741 +#: mod/admin.php:771 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: mod/admin.php:742 +#: mod/admin.php:772 msgid "Poll interval" msgstr "Abfrageintervall" -#: mod/admin.php:742 +#: mod/admin.php:772 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." -#: mod/admin.php:743 +#: mod/admin.php:773 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: mod/admin.php:743 +#: mod/admin.php:773 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" -#: mod/admin.php:744 +#: mod/admin.php:774 msgid "Maximum Load Average (Frontend)" msgstr "Maximum Load Average (Frontend)" -#: mod/admin.php:744 +#: mod/admin.php:774 msgid "Maximum system load before the frontend quits service - default 50." msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." -#: mod/admin.php:746 +#: mod/admin.php:776 msgid "Periodical check of global contacts" msgstr "Regelmäßig globale Kontakte überprüfen" -#: mod/admin.php:746 +#: mod/admin.php:776 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft." -#: mod/admin.php:747 +#: mod/admin.php:777 +msgid "Days between requery" +msgstr "Tage zwischen erneuten Abfragen" + +#: mod/admin.php:777 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll." + +#: mod/admin.php:778 msgid "Discover contacts from other servers" msgstr "Neue Kontakte auf anderen Servern entdecken" -#: mod/admin.php:747 +#: mod/admin.php:778 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -2597,34 +2708,34 @@ msgid "" "and older friendica servers, where global contacts weren't available. The " "fallback increases the server load, so the recommened setting is 'Users, " "Global Contacts'." -msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." +msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." -#: mod/admin.php:748 +#: mod/admin.php:779 msgid "Timeframe for fetching global contacts" msgstr "Zeitfenster für globale Kontakte" -#: mod/admin.php:748 +#: mod/admin.php:779 msgid "" "When the discovery is activated, this value defines the timeframe for the " "activity of the global contacts that are fetched from other servers." msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden." -#: mod/admin.php:749 +#: mod/admin.php:780 msgid "Search the local directory" msgstr "Lokales Verzeichnis durchsuchen" -#: mod/admin.php:749 +#: mod/admin.php:780 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird." -#: mod/admin.php:751 +#: mod/admin.php:782 msgid "Publish server information" msgstr "Server Informationen veröffentlichen" -#: mod/admin.php:751 +#: mod/admin.php:782 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -2632,205 +2743,205 @@ msgid "" " href='http://the-federation.info/'>the-federation.info for details." msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte the-federation.info aufrufen." -#: mod/admin.php:753 +#: mod/admin.php:784 msgid "Use MySQL full text engine" msgstr "Nutze MySQL full text engine" -#: mod/admin.php:753 +#: mod/admin.php:784 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." -#: mod/admin.php:754 +#: mod/admin.php:785 msgid "Suppress Language" msgstr "Sprachinformation unterdrücken" -#: mod/admin.php:754 +#: mod/admin.php:785 msgid "Suppress language information in meta information about a posting." msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." -#: mod/admin.php:755 +#: mod/admin.php:786 msgid "Suppress Tags" msgstr "Tags Unterdrücken" -#: mod/admin.php:755 +#: mod/admin.php:786 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." -#: mod/admin.php:756 +#: mod/admin.php:787 msgid "Path to item cache" msgstr "Pfad zum Eintrag Cache" -#: mod/admin.php:756 +#: mod/admin.php:787 msgid "The item caches buffers generated bbcode and external images." msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." -#: mod/admin.php:757 +#: mod/admin.php:788 msgid "Cache duration in seconds" msgstr "Cache-Dauer in Sekunden" -#: mod/admin.php:757 +#: mod/admin.php:788 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1." -#: mod/admin.php:758 +#: mod/admin.php:789 msgid "Maximum numbers of comments per post" msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: mod/admin.php:758 +#: mod/admin.php:789 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." -#: mod/admin.php:759 +#: mod/admin.php:790 msgid "Path for lock file" msgstr "Pfad für die Sperrdatei" -#: mod/admin.php:759 +#: mod/admin.php:790 msgid "" "The lock file is used to avoid multiple pollers at one time. Only define a " "folder here." msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis." -#: mod/admin.php:760 +#: mod/admin.php:791 msgid "Temp path" msgstr "Temp Pfad" -#: mod/admin.php:760 +#: mod/admin.php:791 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." -#: mod/admin.php:761 +#: mod/admin.php:792 msgid "Base path to installation" msgstr "Basis-Pfad zur Installation" -#: mod/admin.php:761 +#: mod/admin.php:792 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist." -#: mod/admin.php:762 +#: mod/admin.php:793 msgid "Disable picture proxy" msgstr "Bilder Proxy deaktivieren" -#: mod/admin.php:762 +#: mod/admin.php:793 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." -#: mod/admin.php:763 +#: mod/admin.php:794 msgid "Enable old style pager" msgstr "Den Old-Style Pager aktiviren" -#: mod/admin.php:763 +#: mod/admin.php:794 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." -#: mod/admin.php:764 +#: mod/admin.php:795 msgid "Only search in tags" msgstr "Nur in Tags suchen" -#: mod/admin.php:764 +#: mod/admin.php:795 msgid "On large systems the text search can slow down the system extremely." msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." -#: mod/admin.php:766 +#: mod/admin.php:797 msgid "New base url" msgstr "Neue Basis-URL" -#: mod/admin.php:766 +#: mod/admin.php:797 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts" " of all users." msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen." -#: mod/admin.php:768 +#: mod/admin.php:799 msgid "RINO Encryption" msgstr "RINO Verschlüsselung" -#: mod/admin.php:768 +#: mod/admin.php:799 msgid "Encryption layer between nodes." msgstr "Verschlüsselung zwischen Friendica Instanzen" -#: mod/admin.php:769 +#: mod/admin.php:800 msgid "Embedly API key" msgstr "Embedly API Schlüssel" -#: mod/admin.php:769 +#: mod/admin.php:800 msgid "" "Embedly is used to fetch additional data for " "web pages. This is an optional parameter." msgstr "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter." -#: mod/admin.php:787 +#: mod/admin.php:818 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: mod/admin.php:795 +#: mod/admin.php:826 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." -#: mod/admin.php:798 +#: mod/admin.php:829 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" -#: mod/admin.php:810 +#: mod/admin.php:841 #, php-format msgid "Executing %s failed with error: %s" msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" -#: mod/admin.php:813 +#: mod/admin.php:844 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s war erfolgreich." -#: mod/admin.php:817 +#: mod/admin.php:848 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." -#: mod/admin.php:819 +#: mod/admin.php:850 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." -#: mod/admin.php:838 +#: mod/admin.php:869 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: mod/admin.php:839 +#: mod/admin.php:870 msgid "Check database structure" msgstr "Datenbank Struktur überprüfen" -#: mod/admin.php:844 +#: mod/admin.php:875 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: mod/admin.php:845 +#: mod/admin.php:876 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." -#: mod/admin.php:846 +#: mod/admin.php:877 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: mod/admin.php:847 +#: mod/admin.php:878 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" -#: mod/admin.php:879 +#: mod/admin.php:910 #, php-format msgid "" "\n" @@ -2838,7 +2949,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt." -#: mod/admin.php:882 +#: mod/admin.php:913 #, php-format msgid "" "\n" @@ -2868,222 +2979,230 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." -#: mod/admin.php:914 include/user.php:421 +#: mod/admin.php:945 include/user.php:421 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" -#: mod/admin.php:926 +#: mod/admin.php:957 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s Benutzer geblockt/freigegeben" msgstr[1] "%s Benutzer geblockt/freigegeben" -#: mod/admin.php:933 +#: mod/admin.php:964 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s Nutzer gelöscht" msgstr[1] "%s Nutzer gelöscht" -#: mod/admin.php:972 +#: mod/admin.php:1003 #, php-format msgid "User '%s' deleted" msgstr "Nutzer '%s' gelöscht" -#: mod/admin.php:980 +#: mod/admin.php:1011 #, php-format msgid "User '%s' unblocked" msgstr "Nutzer '%s' entsperrt" -#: mod/admin.php:980 +#: mod/admin.php:1011 #, php-format msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" -#: mod/admin.php:1073 +#: mod/admin.php:1104 msgid "Add User" msgstr "Nutzer hinzufügen" -#: mod/admin.php:1074 +#: mod/admin.php:1105 msgid "select all" msgstr "Alle auswählen" -#: mod/admin.php:1075 +#: mod/admin.php:1106 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: mod/admin.php:1076 +#: mod/admin.php:1107 msgid "User waiting for permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" -#: mod/admin.php:1077 +#: mod/admin.php:1108 msgid "Request date" msgstr "Anfragedatum" -#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: mod/admin.php:1108 mod/admin.php:1120 mod/admin.php:1121 mod/admin.php:1136 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "E-Mail" -#: mod/admin.php:1078 +#: mod/admin.php:1109 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: mod/admin.php:1080 +#: mod/admin.php:1111 msgid "Deny" msgstr "Verwehren" -#: mod/admin.php:1084 +#: mod/admin.php:1115 msgid "Site admin" msgstr "Seitenadministrator" -#: mod/admin.php:1085 +#: mod/admin.php:1116 msgid "Account expired" msgstr "Account ist abgelaufen" -#: mod/admin.php:1088 +#: mod/admin.php:1119 msgid "New User" msgstr "Neuer Nutzer" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1120 mod/admin.php:1121 msgid "Register date" msgstr "Anmeldedatum" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1120 mod/admin.php:1121 msgid "Last login" msgstr "Letzte Anmeldung" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1120 mod/admin.php:1121 msgid "Last item" msgstr "Letzter Beitrag" -#: mod/admin.php:1089 +#: mod/admin.php:1120 msgid "Deleted since" msgstr "Gelöscht seit" -#: mod/admin.php:1090 mod/settings.php:41 +#: mod/admin.php:1121 mod/settings.php:41 msgid "Account" msgstr "Nutzerkonto" -#: mod/admin.php:1092 +#: mod/admin.php:1123 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?" -#: mod/admin.php:1093 +#: mod/admin.php:1124 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?" -#: mod/admin.php:1103 +#: mod/admin.php:1134 msgid "Name of the new user." msgstr "Name des neuen Nutzers" -#: mod/admin.php:1104 +#: mod/admin.php:1135 msgid "Nickname" msgstr "Spitzname" -#: mod/admin.php:1104 +#: mod/admin.php:1135 msgid "Nickname of the new user." msgstr "Spitznamen für den neuen Nutzer" -#: mod/admin.php:1105 +#: mod/admin.php:1136 msgid "Email address of the new user." msgstr "Email Adresse des neuen Nutzers" -#: mod/admin.php:1138 +#: mod/admin.php:1169 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deaktiviert." -#: mod/admin.php:1142 +#: mod/admin.php:1173 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s aktiviert." -#: mod/admin.php:1152 mod/admin.php:1375 +#: mod/admin.php:1183 mod/admin.php:1407 msgid "Disable" msgstr "Ausschalten" -#: mod/admin.php:1154 mod/admin.php:1377 +#: mod/admin.php:1185 mod/admin.php:1409 msgid "Enable" msgstr "Einschalten" -#: mod/admin.php:1177 mod/admin.php:1405 +#: mod/admin.php:1208 mod/admin.php:1453 msgid "Toggle" msgstr "Umschalten" -#: mod/admin.php:1185 mod/admin.php:1415 +#: mod/admin.php:1216 mod/admin.php:1463 msgid "Author: " msgstr "Autor:" -#: mod/admin.php:1186 mod/admin.php:1416 +#: mod/admin.php:1217 mod/admin.php:1464 msgid "Maintainer: " msgstr "Betreuer:" -#: mod/admin.php:1335 +#: mod/admin.php:1269 +msgid "Reload active plugins" +msgstr "Aktive Plugins neu laden" + +#: mod/admin.php:1367 msgid "No themes found." msgstr "Keine Themen gefunden." -#: mod/admin.php:1397 +#: mod/admin.php:1445 msgid "Screenshot" msgstr "Bildschirmfoto" -#: mod/admin.php:1443 +#: mod/admin.php:1505 +msgid "Reload active themes" +msgstr "Aktives Theme neu laden" + +#: mod/admin.php:1509 msgid "[Experimental]" msgstr "[Experimentell]" -#: mod/admin.php:1444 +#: mod/admin.php:1510 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: mod/admin.php:1471 +#: mod/admin.php:1537 msgid "Log settings updated." msgstr "Protokolleinstellungen aktualisiert." -#: mod/admin.php:1527 +#: mod/admin.php:1593 msgid "Clear" msgstr "löschen" -#: mod/admin.php:1533 +#: mod/admin.php:1599 msgid "Enable Debugging" msgstr "Protokoll führen" -#: mod/admin.php:1534 +#: mod/admin.php:1600 msgid "Log file" msgstr "Protokolldatei" -#: mod/admin.php:1534 +#: mod/admin.php:1600 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." -#: mod/admin.php:1535 +#: mod/admin.php:1601 msgid "Log level" msgstr "Protokoll-Level" -#: mod/admin.php:1585 include/acl_selectors.php:347 +#: mod/admin.php:1651 include/acl_selectors.php:347 msgid "Close" msgstr "Schließen" -#: mod/admin.php:1591 +#: mod/admin.php:1657 msgid "FTP Host" msgstr "FTP Host" -#: mod/admin.php:1592 +#: mod/admin.php:1658 msgid "FTP Path" msgstr "FTP Pfad" -#: mod/admin.php:1593 +#: mod/admin.php:1659 msgid "FTP User" msgstr "FTP Nutzername" -#: mod/admin.php:1594 +#: mod/admin.php:1660 msgid "FTP Password" msgstr "FTP Passwort" @@ -3092,63 +3211,63 @@ msgstr "FTP Passwort" msgid "Search Results For: %s" msgstr "Suchergebnisse für: %s" -#: mod/network.php:187 mod/search.php:25 +#: mod/network.php:195 mod/search.php:25 msgid "Remove term" msgstr "Begriff entfernen" -#: mod/network.php:196 mod/search.php:34 include/features.php:42 +#: mod/network.php:204 mod/search.php:34 include/features.php:43 msgid "Saved Searches" msgstr "Gespeicherte Suchen" -#: mod/network.php:197 include/group.php:277 +#: mod/network.php:205 include/group.php:279 msgid "add" msgstr "hinzufügen" -#: mod/network.php:358 +#: mod/network.php:366 msgid "Commented Order" msgstr "Neueste Kommentare" -#: mod/network.php:361 +#: mod/network.php:369 msgid "Sort by Comment Date" msgstr "Nach Kommentardatum sortieren" -#: mod/network.php:365 +#: mod/network.php:374 msgid "Posted Order" msgstr "Neueste Beiträge" -#: mod/network.php:368 +#: mod/network.php:377 msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortieren" -#: mod/network.php:378 +#: mod/network.php:388 msgid "Posts that mention or involve you" msgstr "Beiträge, in denen es um Dich geht" -#: mod/network.php:385 +#: mod/network.php:396 msgid "New" msgstr "Neue" -#: mod/network.php:388 +#: mod/network.php:399 msgid "Activity Stream - by date" msgstr "Aktivitäten-Stream - nach Datum" -#: mod/network.php:395 +#: mod/network.php:407 msgid "Shared Links" msgstr "Geteilte Links" -#: mod/network.php:398 +#: mod/network.php:410 msgid "Interesting Links" msgstr "Interessante Links" -#: mod/network.php:405 +#: mod/network.php:418 msgid "Starred" msgstr "Markierte" -#: mod/network.php:408 +#: mod/network.php:421 msgid "Favourite Posts" msgstr "Favorisierte Beiträge" -#: mod/network.php:466 +#: mod/network.php:480 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -3156,45 +3275,49 @@ msgid_plural "" msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." -#: mod/network.php:469 +#: mod/network.php:483 msgid "Private messages to this group are at risk of public disclosure." msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." -#: mod/network.php:532 mod/content.php:119 +#: mod/network.php:550 mod/content.php:119 msgid "No such group" msgstr "Es gibt keine solche Gruppe" -#: mod/network.php:549 mod/content.php:130 +#: mod/network.php:567 mod/content.php:130 msgid "Group is empty" msgstr "Gruppe ist leer" -#: mod/network.php:560 mod/content.php:135 +#: mod/network.php:578 mod/content.php:135 #, php-format msgid "Group: %s" msgstr "Gruppe: %s" -#: mod/network.php:578 +#: mod/network.php:596 #, php-format msgid "Contact: %s" msgstr "Kontakt: %s" -#: mod/network.php:582 +#: mod/network.php:600 msgid "Private messages to this person are at risk of public disclosure." msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." -#: mod/network.php:587 +#: mod/network.php:605 msgid "Invalid contact." msgstr "Ungültiger Kontakt." -#: mod/allfriends.php:37 +#: mod/allfriends.php:45 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." + +#: mod/allfriends.php:79 mod/common.php:122 +msgid "Forum" +msgstr "Forum" + +#: mod/allfriends.php:92 #, php-format msgid "Friends of %s" msgstr "Freunde von %s" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." - #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." @@ -3203,228 +3326,404 @@ msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." msgid "Event title and start time are required." msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." -#: mod/events.php:317 +#: mod/events.php:201 +msgid "Sun" +msgstr "So" + +#: mod/events.php:202 +msgid "Mon" +msgstr "Mo" + +#: mod/events.php:203 +msgid "Tue" +msgstr "Di" + +#: mod/events.php:204 +msgid "Wed" +msgstr "Mi" + +#: mod/events.php:205 +msgid "Thu" +msgstr "Do" + +#: mod/events.php:206 +msgid "Fri" +msgstr "Fr" + +#: mod/events.php:207 +msgid "Sat" +msgstr "Sa" + +#: mod/events.php:208 mod/settings.php:936 include/text.php:1267 +msgid "Sunday" +msgstr "Sonntag" + +#: mod/events.php:209 mod/settings.php:936 include/text.php:1267 +msgid "Monday" +msgstr "Montag" + +#: mod/events.php:210 include/text.php:1267 +msgid "Tuesday" +msgstr "Dienstag" + +#: mod/events.php:211 include/text.php:1267 +msgid "Wednesday" +msgstr "Mittwoch" + +#: mod/events.php:212 include/text.php:1267 +msgid "Thursday" +msgstr "Donnerstag" + +#: mod/events.php:213 include/text.php:1267 +msgid "Friday" +msgstr "Freitag" + +#: mod/events.php:214 include/text.php:1267 +msgid "Saturday" +msgstr "Samstag" + +#: mod/events.php:215 +msgid "Jan" +msgstr "Jan" + +#: mod/events.php:216 +msgid "Feb" +msgstr "Feb" + +#: mod/events.php:217 +msgid "Mar" +msgstr "März" + +#: mod/events.php:218 +msgid "Apr" +msgstr "Apr" + +#: mod/events.php:219 mod/events.php:231 include/text.php:1271 +msgid "May" +msgstr "Mai" + +#: mod/events.php:220 +msgid "Jun" +msgstr "Jun" + +#: mod/events.php:221 +msgid "Jul" +msgstr "Juli" + +#: mod/events.php:222 +msgid "Aug" +msgstr "Aug" + +#: mod/events.php:223 +msgid "Sept" +msgstr "Sep" + +#: mod/events.php:224 +msgid "Oct" +msgstr "Okt" + +#: mod/events.php:225 +msgid "Nov" +msgstr "Nov" + +#: mod/events.php:226 +msgid "Dec" +msgstr "Dez" + +#: mod/events.php:227 include/text.php:1271 +msgid "January" +msgstr "Januar" + +#: mod/events.php:228 include/text.php:1271 +msgid "February" +msgstr "Februar" + +#: mod/events.php:229 include/text.php:1271 +msgid "March" +msgstr "März" + +#: mod/events.php:230 include/text.php:1271 +msgid "April" +msgstr "April" + +#: mod/events.php:232 include/text.php:1271 +msgid "June" +msgstr "Juni" + +#: mod/events.php:233 include/text.php:1271 +msgid "July" +msgstr "Juli" + +#: mod/events.php:234 include/text.php:1271 +msgid "August" +msgstr "August" + +#: mod/events.php:235 include/text.php:1271 +msgid "September" +msgstr "September" + +#: mod/events.php:236 include/text.php:1271 +msgid "October" +msgstr "Oktober" + +#: mod/events.php:237 include/text.php:1271 +msgid "November" +msgstr "November" + +#: mod/events.php:238 include/text.php:1271 +msgid "December" +msgstr "Dezember" + +#: mod/events.php:239 +msgid "today" +msgstr "Heute" + +#: mod/events.php:240 include/datetime.php:288 +msgid "month" +msgstr "Monat" + +#: mod/events.php:241 include/datetime.php:289 +msgid "week" +msgstr "Woche" + +#: mod/events.php:242 include/datetime.php:290 +msgid "day" +msgstr "Tag" + +#: mod/events.php:377 msgid "l, F j" msgstr "l, F j" -#: mod/events.php:339 +#: mod/events.php:399 msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +#: mod/events.php:421 include/text.php:1714 include/text.php:1721 msgid "link to source" msgstr "Link zum Originalbeitrag" -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 +#: mod/events.php:456 include/identity.php:669 include/nav.php:79 +#: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "Veranstaltungen" -#: mod/events.php:397 +#: mod/events.php:457 msgid "Create New Event" msgstr "Neue Veranstaltung erstellen" -#: mod/events.php:398 +#: mod/events.php:458 msgid "Previous" msgstr "Vorherige" -#: mod/events.php:399 mod/install.php:209 +#: mod/events.php:459 mod/install.php:212 msgid "Next" msgstr "Nächste" -#: mod/events.php:491 +#: mod/events.php:554 msgid "Event details" msgstr "Veranstaltungsdetails" -#: mod/events.php:492 +#: mod/events.php:555 msgid "Starting date and Title are required." msgstr "Anfangszeitpunkt und Titel werden benötigt" -#: mod/events.php:493 +#: mod/events.php:556 msgid "Event Starts:" msgstr "Veranstaltungsbeginn:" -#: mod/events.php:493 mod/events.php:505 +#: mod/events.php:556 mod/events.php:568 msgid "Required" msgstr "Benötigt" -#: mod/events.php:495 +#: mod/events.php:558 msgid "Finish date/time is not known or not relevant" msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" -#: mod/events.php:497 +#: mod/events.php:560 msgid "Event Finishes:" msgstr "Veranstaltungsende:" -#: mod/events.php:499 +#: mod/events.php:562 msgid "Adjust for viewer timezone" msgstr "An Zeitzone des Betrachters anpassen" -#: mod/events.php:501 +#: mod/events.php:564 msgid "Description:" msgstr "Beschreibung" -#: mod/events.php:505 +#: mod/events.php:568 msgid "Title:" msgstr "Titel:" -#: mod/events.php:507 +#: mod/events.php:570 msgid "Share this event" msgstr "Veranstaltung teilen" -#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: object/Item.php:689 include/conversation.php:1089 +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 +#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: object/Item.php:719 include/conversation.php:1217 msgid "Preview" msgstr "Vorschau" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 +#: mod/credits.php:16 +msgid "Credits" +msgstr "Credits" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: object/Item.php:133 include/conversation.php:634 msgid "Select" msgstr "Auswählen" #: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 +#: object/Item.php:357 object/Item.php:358 include/conversation.php:675 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 +#: mod/content.php:483 mod/content.php:866 object/Item.php:371 +#: include/conversation.php:695 #, php-format msgid "%s from %s" msgstr "%s von %s" -#: mod/content.php:499 include/conversation.php:689 +#: mod/content.php:499 include/conversation.php:711 msgid "View in context" msgstr "Im Zusammenhang betrachten" -#: mod/content.php:605 object/Item.php:389 +#: mod/content.php:605 object/Item.php:419 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 +#: mod/content.php:607 object/Item.php:421 object/Item.php:434 +#: include/text.php:1992 msgid "comment" msgid_plural "comments" msgstr[0] "Kommentar" msgstr[1] "Kommentare" -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5134 +#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: include/contact_widgets.php:205 include/items.php:5214 msgid "show more" msgstr "mehr anzeigen" -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 +#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 msgid "Private Message" msgstr "Private Nachricht" -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: mod/content.php:686 object/Item.php:232 +#: mod/content.php:686 object/Item.php:253 msgid "like" msgstr "mag ich" -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: mod/content.php:687 object/Item.php:233 +#: mod/content.php:687 object/Item.php:254 msgid "dislike" msgstr "mag ich nicht" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:256 msgid "Share this" msgstr "Weitersagen" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:256 msgid "share" msgstr "Teilen" -#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 object/Item.php:677 +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 +#: mod/photos.php:1755 object/Item.php:707 msgid "This is you" msgstr "Das bist Du" -#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 -#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 +#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "Kommentar" -#: mod/content.php:713 object/Item.php:681 +#: mod/content.php:713 object/Item.php:711 msgid "Bold" msgstr "Fett" -#: mod/content.php:714 object/Item.php:682 +#: mod/content.php:714 object/Item.php:712 msgid "Italic" msgstr "Kursiv" -#: mod/content.php:715 object/Item.php:683 +#: mod/content.php:715 object/Item.php:713 msgid "Underline" msgstr "Unterstrichen" -#: mod/content.php:716 object/Item.php:684 +#: mod/content.php:716 object/Item.php:714 msgid "Quote" msgstr "Zitat" -#: mod/content.php:717 object/Item.php:685 +#: mod/content.php:717 object/Item.php:715 msgid "Code" msgstr "Code" -#: mod/content.php:718 object/Item.php:686 +#: mod/content.php:718 object/Item.php:716 msgid "Image" msgstr "Bild" -#: mod/content.php:719 object/Item.php:687 +#: mod/content.php:719 object/Item.php:717 msgid "Link" msgstr "Link" -#: mod/content.php:720 object/Item.php:688 +#: mod/content.php:720 object/Item.php:718 msgid "Video" msgstr "Video" -#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 +#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: object/Item.php:124 msgid "Edit" msgstr "Bearbeiten" -#: mod/content.php:755 object/Item.php:196 +#: mod/content.php:755 object/Item.php:217 msgid "add star" msgstr "markieren" -#: mod/content.php:756 object/Item.php:197 +#: mod/content.php:756 object/Item.php:218 msgid "remove star" msgstr "Markierung entfernen" -#: mod/content.php:757 object/Item.php:198 +#: mod/content.php:757 object/Item.php:219 msgid "toggle star status" msgstr "Markierung umschalten" -#: mod/content.php:760 object/Item.php:201 +#: mod/content.php:760 object/Item.php:222 msgid "starred" msgstr "markiert" -#: mod/content.php:761 object/Item.php:221 +#: mod/content.php:761 object/Item.php:242 msgid "add tag" msgstr "Tag hinzufügen" -#: mod/content.php:765 object/Item.php:134 +#: mod/content.php:765 object/Item.php:137 msgid "save to folder" msgstr "In Ordner speichern" -#: mod/content.php:856 object/Item.php:330 +#: mod/content.php:856 object/Item.php:359 msgid "to" msgstr "zu" -#: mod/content.php:857 object/Item.php:332 +#: mod/content.php:857 object/Item.php:361 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: mod/content.php:858 object/Item.php:333 +#: mod/content.php:858 object/Item.php:362 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" @@ -3442,295 +3741,322 @@ msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wie msgid "Please enter your password for verification:" msgstr "Bitte gib Dein Passwort zur Verifikation ein:" -#: mod/install.php:119 +#: mod/install.php:120 msgid "Friendica Communications Server - Setup" msgstr "Friendica-Server für soziale Netzwerke – Setup" -#: mod/install.php:125 +#: mod/install.php:126 msgid "Could not connect to database." msgstr "Verbindung zur Datenbank gescheitert." -#: mod/install.php:129 +#: mod/install.php:130 msgid "Could not create table." msgstr "Tabelle konnte nicht angelegt werden." -#: mod/install.php:135 +#: mod/install.php:136 msgid "Your Friendica site database has been installed." msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." -#: mod/install.php:140 +#: mod/install.php:141 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +#: mod/install.php:142 mod/install.php:211 mod/install.php:569 msgid "Please see the file \"INSTALL.txt\"." msgstr "Lies bitte die \"INSTALL.txt\"." -#: mod/install.php:153 +#: mod/install.php:154 msgid "Database already in use." msgstr "Die Datenbank wird bereits verwendet." -#: mod/install.php:205 +#: mod/install.php:208 msgid "System check" msgstr "Systemtest" -#: mod/install.php:210 +#: mod/install.php:213 msgid "Check again" msgstr "Noch einmal testen" -#: mod/install.php:229 +#: mod/install.php:232 msgid "Database connection" msgstr "Datenbankverbindung" -#: mod/install.php:230 +#: mod/install.php:233 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." -#: mod/install.php:231 +#: mod/install.php:234 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest." -#: mod/install.php:232 +#: mod/install.php:235 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst." -#: mod/install.php:236 +#: mod/install.php:239 msgid "Database Server Name" msgstr "Datenbank-Server" -#: mod/install.php:237 +#: mod/install.php:240 msgid "Database Login Name" msgstr "Datenbank-Nutzer" -#: mod/install.php:238 +#: mod/install.php:241 msgid "Database Login Password" msgstr "Datenbank-Passwort" -#: mod/install.php:239 +#: mod/install.php:242 msgid "Database Name" msgstr "Datenbank-Name" -#: mod/install.php:240 mod/install.php:279 +#: mod/install.php:243 mod/install.php:282 msgid "Site administrator email address" msgstr "E-Mail-Adresse des Administrators" -#: mod/install.php:240 mod/install.php:279 +#: mod/install.php:243 mod/install.php:282 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst." -#: mod/install.php:244 mod/install.php:282 +#: mod/install.php:247 mod/install.php:285 msgid "Please select a default timezone for your website" msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" -#: mod/install.php:269 +#: mod/install.php:272 msgid "Site settings" msgstr "Server-Einstellungen" -#: mod/install.php:323 +#: mod/install.php:326 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." -#: mod/install.php:324 +#: mod/install.php:327 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. See 'Activating scheduled tasks'" -msgstr "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" +"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-" +"up-the-poller'>'Setup the poller'" +msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Setup the poller'" -#: mod/install.php:328 +#: mod/install.php:331 msgid "PHP executable path" msgstr "Pfad zu PHP" -#: mod/install.php:328 +#: mod/install.php:331 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." -#: mod/install.php:333 +#: mod/install.php:336 msgid "Command line PHP" msgstr "Kommandozeilen-PHP" -#: mod/install.php:342 +#: mod/install.php:345 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" -#: mod/install.php:343 +#: mod/install.php:346 msgid "Found PHP version: " msgstr "Gefundene PHP Version:" -#: mod/install.php:345 +#: mod/install.php:348 msgid "PHP cli binary" msgstr "PHP CLI Binary" -#: mod/install.php:356 +#: mod/install.php:359 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." -#: mod/install.php:357 +#: mod/install.php:360 msgid "This is required for message delivery to work." msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." -#: mod/install.php:359 +#: mod/install.php:362 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: mod/install.php:380 +#: mod/install.php:383 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" -#: mod/install.php:381 +#: mod/install.php:384 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." -#: mod/install.php:383 +#: mod/install.php:386 msgid "Generate encryption keys" msgstr "Schlüssel erzeugen" -#: mod/install.php:390 +#: mod/install.php:393 msgid "libCurl PHP module" msgstr "PHP: libCurl-Modul" -#: mod/install.php:391 +#: mod/install.php:394 msgid "GD graphics PHP module" msgstr "PHP: GD-Grafikmodul" -#: mod/install.php:392 +#: mod/install.php:395 msgid "OpenSSL PHP module" msgstr "PHP: OpenSSL-Modul" -#: mod/install.php:393 +#: mod/install.php:396 msgid "mysqli PHP module" msgstr "PHP: mysqli-Modul" -#: mod/install.php:394 +#: mod/install.php:397 msgid "mb_string PHP module" msgstr "PHP: mb_string-Modul" -#: mod/install.php:399 mod/install.php:401 +#: mod/install.php:398 +msgid "mcrypt PHP module" +msgstr "PHP mcrypt Modul" + +#: mod/install.php:403 mod/install.php:405 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: mod/install.php:399 +#: mod/install.php:403 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." -#: mod/install.php:407 +#: mod/install.php:411 msgid "Error: libCURL PHP module required but not installed." msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." -#: mod/install.php:411 +#: mod/install.php:415 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." -#: mod/install.php:415 +#: mod/install.php:419 msgid "Error: openssl PHP module required but not installed." msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." -#: mod/install.php:419 +#: mod/install.php:423 msgid "Error: mysqli PHP module required but not installed." msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." -#: mod/install.php:423 +#: mod/install.php:427 msgid "Error: mb_string PHP module required but not installed." msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." -#: mod/install.php:440 +#: mod/install.php:431 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert" + +#: mod/install.php:443 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren." + +#: mod/install.php:445 +msgid "mcrypt_create_iv() function" +msgstr "mcrypt_create_iv() function" + +#: mod/install.php:461 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 "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." -#: mod/install.php:441 +#: mod/install.php:462 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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast." -#: mod/install.php:442 +#: mod/install.php:463 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Friendica top folder." msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst." -#: mod/install.php:443 +#: mod/install.php:464 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt." -#: mod/install.php:446 +#: mod/install.php:467 msgid ".htconfig.php is writable" msgstr "Schreibrechte auf .htconfig.php" -#: mod/install.php:456 +#: mod/install.php:477 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." -#: mod/install.php:457 +#: mod/install.php:478 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." -#: mod/install.php:458 +#: mod/install.php:479 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." -#: mod/install.php:459 +#: mod/install.php:480 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." -#: mod/install.php:462 +#: mod/install.php:483 msgid "view/smarty3 is writable" msgstr "view/smarty3 ist schreibbar" -#: mod/install.php:478 +#: mod/install.php:499 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." -#: mod/install.php:480 +#: mod/install.php:501 msgid "Url rewrite is working" msgstr "URL rewrite funktioniert" -#: mod/install.php:489 +#: mod/install.php:518 +msgid "ImageMagick PHP extension is installed" +msgstr "ImageMagick PHP Erweiterung ist installiert" + +#: mod/install.php:520 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick unterstützt GIF" + +#: mod/install.php:528 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 "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen." -#: mod/install.php:528 +#: mod/install.php:567 msgid "

    What next

    " msgstr "

    Wie geht es weiter?

    " -#: mod/install.php:529 +#: mod/install.php:568 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -3760,7 +4086,7 @@ msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privats msgid "Help:" msgstr "Hilfe:" -#: mod/help.php:36 include/nav.php:114 +#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:273 msgid "Help" msgstr "Hilfe" @@ -3782,35 +4108,35 @@ msgstr "%1$s heißt %2$s herzlich willkommen" msgid "Welcome to %s" msgstr "Willkommen zu %s" -#: mod/wall_attach.php:83 +#: mod/wall_attach.php:94 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." -#: mod/wall_attach.php:83 +#: mod/wall_attach.php:94 msgid "Or - did you try to upload an empty file?" msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" -#: mod/wall_attach.php:94 +#: mod/wall_attach.php:105 #, php-format msgid "File exceeds size limit of %s" msgstr "Die Datei ist größer als das erlaubte Limit von %s" -#: mod/wall_attach.php:145 mod/wall_attach.php:161 +#: mod/wall_attach.php:156 mod/wall_attach.php:172 msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" - -#: mod/match.php:22 +#: mod/match.php:33 msgid "No keywords to match. Please add keywords to your default profile." msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu." -#: mod/match.php:64 +#: mod/match.php:83 msgid "is interested in:" msgstr "ist interessiert an:" +#: mod/match.php:97 +msgid "Profile Match" +msgstr "Profilübereinstimmungen" + #: mod/share.php:38 msgid "link" msgstr "Link" @@ -3819,16 +4145,16 @@ msgstr "Link" msgid "Not available." msgstr "Nicht verfügbar." -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: mod/community.php:32 include/nav.php:136 include/nav.php:138 #: view/theme/diabook/theme.php:129 msgid "Community" msgstr "Gemeinschaft" -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +#: mod/community.php:62 mod/community.php:71 mod/search.php:218 msgid "No results." msgstr "Keine Ergebnisse." -#: mod/settings.php:34 mod/photos.php:102 +#: mod/settings.php:34 mod/photos.php:109 msgid "everybody" msgstr "jeder" @@ -3840,11 +4166,11 @@ msgstr "Zusätzliche Features" msgid "Display" msgstr "Anzeige" -#: mod/settings.php:60 mod/settings.php:835 +#: mod/settings.php:60 mod/settings.php:853 msgid "Social Networks" msgstr "Soziale Netzwerke" -#: mod/settings.php:72 include/nav.php:179 +#: mod/settings.php:72 include/nav.php:180 msgid "Delegations" msgstr "Delegationen" @@ -3876,622 +4202,655 @@ msgstr "E-Mail Einstellungen bearbeitet." msgid "Features updated" msgstr "Features aktualisiert" -#: mod/settings.php:339 +#: mod/settings.php:341 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: mod/settings.php:353 include/user.php:39 +#: mod/settings.php:355 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: mod/settings.php:358 +#: mod/settings.php:360 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." -#: mod/settings.php:366 +#: mod/settings.php:368 msgid "Wrong password." msgstr "Falsches Passwort." -#: mod/settings.php:377 +#: mod/settings.php:379 msgid "Password changed." msgstr "Passwort geändert." -#: mod/settings.php:379 +#: mod/settings.php:381 msgid "Password update failed. Please try again." msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." -#: mod/settings.php:446 +#: mod/settings.php:450 msgid " Please use a shorter name." msgstr " Bitte verwende einen kürzeren Namen." -#: mod/settings.php:448 +#: mod/settings.php:452 msgid " Name too short." msgstr " Name ist zu kurz." -#: mod/settings.php:457 +#: mod/settings.php:461 msgid "Wrong Password" msgstr "Falsches Passwort" -#: mod/settings.php:462 +#: mod/settings.php:466 msgid " Not valid email." msgstr " Keine gültige E-Mail." -#: mod/settings.php:468 +#: mod/settings.php:472 msgid " Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: mod/settings.php:524 +#: mod/settings.php:528 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." -#: mod/settings.php:528 +#: mod/settings.php:532 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." -#: mod/settings.php:558 +#: mod/settings.php:571 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 +#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 msgid "Add application" msgstr "Programm hinzufügen" -#: mod/settings.php:635 mod/settings.php:661 +#: mod/settings.php:651 mod/settings.php:677 msgid "Consumer Key" msgstr "Consumer Key" -#: mod/settings.php:636 mod/settings.php:662 +#: mod/settings.php:652 mod/settings.php:678 msgid "Consumer Secret" msgstr "Consumer Secret" -#: mod/settings.php:637 mod/settings.php:663 +#: mod/settings.php:653 mod/settings.php:679 msgid "Redirect" msgstr "Umleiten" -#: mod/settings.php:638 mod/settings.php:664 +#: mod/settings.php:654 mod/settings.php:680 msgid "Icon url" msgstr "Icon URL" -#: mod/settings.php:649 +#: mod/settings.php:665 msgid "You can't edit this application." msgstr "Du kannst dieses Programm nicht bearbeiten." -#: mod/settings.php:692 +#: mod/settings.php:708 msgid "Connected Apps" msgstr "Verbundene Programme" -#: mod/settings.php:696 +#: mod/settings.php:712 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" -#: mod/settings.php:697 +#: mod/settings.php:713 msgid "No name" msgstr "Kein Name" -#: mod/settings.php:698 +#: mod/settings.php:714 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: mod/settings.php:710 +#: mod/settings.php:726 msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" -#: mod/settings.php:718 +#: mod/settings.php:734 msgid "Plugin Settings" msgstr "Plugin-Einstellungen" -#: mod/settings.php:732 +#: mod/settings.php:748 msgid "Off" msgstr "Aus" -#: mod/settings.php:732 +#: mod/settings.php:748 msgid "On" msgstr "An" -#: mod/settings.php:740 +#: mod/settings.php:756 msgid "Additional Features" msgstr "Zusätzliche Features" -#: mod/settings.php:750 mod/settings.php:754 +#: mod/settings.php:766 mod/settings.php:770 msgid "General Social Media Settings" msgstr "Allgemeine Einstellungen zu Sozialen Medien" -#: mod/settings.php:760 +#: mod/settings.php:776 msgid "Disable intelligent shortening" msgstr "Intelligentes Link kürzen ausschalten" -#: mod/settings.php:762 +#: mod/settings.php:778 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." -#: mod/settings.php:768 +#: mod/settings.php:784 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" -#: mod/settings.php:770 +#: mod/settings.php:786 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:795 +msgid "Your legacy GNU Social account" +msgstr "Dein alter GNU Social Account" + +#: mod/settings.php:797 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." + +#: mod/settings.php:800 +msgid "Repair OStatus subscriptions" +msgstr "OStatus Abonnements reparieren" + +#: mod/settings.php:809 mod/settings.php:810 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: mod/settings.php:791 mod/dfrn_request.php:856 +#: mod/settings.php:809 mod/dfrn_request.php:856 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:809 mod/settings.php:810 msgid "enabled" msgstr "eingeschaltet" -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:809 mod/settings.php:810 msgid "disabled" msgstr "ausgeschaltet" -#: mod/settings.php:792 +#: mod/settings.php:810 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:828 +#: mod/settings.php:846 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: mod/settings.php:840 +#: mod/settings.php:858 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: mod/settings.php:841 +#: mod/settings.php:859 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." -#: mod/settings.php:842 +#: mod/settings.php:860 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: mod/settings.php:844 +#: mod/settings.php:862 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: mod/settings.php:845 +#: mod/settings.php:863 msgid "IMAP port:" msgstr "IMAP-Port:" -#: mod/settings.php:846 +#: mod/settings.php:864 msgid "Security:" msgstr "Sicherheit:" -#: mod/settings.php:846 mod/settings.php:851 +#: mod/settings.php:864 mod/settings.php:869 msgid "None" msgstr "Keine" -#: mod/settings.php:847 +#: mod/settings.php:865 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: mod/settings.php:848 +#: mod/settings.php:866 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: mod/settings.php:849 +#: mod/settings.php:867 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: mod/settings.php:850 +#: mod/settings.php:868 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: mod/settings.php:851 +#: mod/settings.php:869 msgid "Action after import:" msgstr "Aktion nach Import:" -#: mod/settings.php:851 +#: mod/settings.php:869 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: mod/settings.php:851 +#: mod/settings.php:869 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: mod/settings.php:852 +#: mod/settings.php:870 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: mod/settings.php:933 +#: mod/settings.php:955 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: mod/settings.php:939 mod/settings.php:955 +#: mod/settings.php:961 mod/settings.php:979 msgid "Display Theme:" msgstr "Theme:" -#: mod/settings.php:940 +#: mod/settings.php:962 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: mod/settings.php:941 +#: mod/settings.php:963 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: mod/settings.php:941 +#: mod/settings.php:963 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimal 10 Sekunden, kein Maximum" -#: mod/settings.php:942 +#: mod/settings.php:964 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: mod/settings.php:942 mod/settings.php:943 +#: mod/settings.php:964 mod/settings.php:965 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: mod/settings.php:943 +#: mod/settings.php:965 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: mod/settings.php:944 +#: mod/settings.php:966 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: mod/settings.php:945 +#: mod/settings.php:967 +msgid "Calendar" +msgstr "Kalender" + +#: mod/settings.php:968 +msgid "Beginning of week:" +msgstr "Wochenbeginn:" + +#: mod/settings.php:969 msgid "Don't show notices" msgstr "Info-Popups nicht anzeigen" -#: mod/settings.php:946 +#: mod/settings.php:970 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: mod/settings.php:947 +#: mod/settings.php:971 msgid "Automatic updates only at the top of the network page" msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." -#: mod/settings.php:949 view/theme/cleanzero/config.php:82 +#: mod/settings.php:973 view/theme/cleanzero/config.php:82 #: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:109 #: view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "Themeneinstellungen" -#: mod/settings.php:1025 +#: mod/settings.php:1050 msgid "User Types" msgstr "Nutzer Art" -#: mod/settings.php:1026 +#: mod/settings.php:1051 msgid "Community Types" msgstr "Gemeinschafts Art" -#: mod/settings.php:1027 +#: mod/settings.php:1052 msgid "Normal Account Page" msgstr "Normales Konto" -#: mod/settings.php:1028 +#: mod/settings.php:1053 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: mod/settings.php:1031 +#: mod/settings.php:1056 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: mod/settings.php:1032 +#: mod/settings.php:1057 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: mod/settings.php:1035 +#: mod/settings.php:1060 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: mod/settings.php:1036 +#: mod/settings.php:1061 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: mod/settings.php:1039 +#: mod/settings.php:1064 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: mod/settings.php:1040 +#: mod/settings.php:1065 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: mod/settings.php:1043 +#: mod/settings.php:1068 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: mod/settings.php:1044 +#: mod/settings.php:1069 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: mod/settings.php:1056 +#: mod/settings.php:1081 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1056 +#: mod/settings.php:1081 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: mod/settings.php:1066 +#: mod/settings.php:1091 msgid "Publish your default profile in your local site directory?" msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: mod/settings.php:1072 +#: mod/settings.php:1097 msgid "Publish your default profile in the global social directory?" msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: mod/settings.php:1080 +#: mod/settings.php:1105 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: mod/settings.php:1084 include/acl_selectors.php:330 +#: mod/settings.php:1109 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: mod/settings.php:1084 +#: mod/settings.php:1109 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" -#: mod/settings.php:1089 +#: mod/settings.php:1114 msgid "Allow friends to post to your profile page?" msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" -#: mod/settings.php:1095 +#: mod/settings.php:1120 msgid "Allow friends to tag your posts?" msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" -#: mod/settings.php:1101 +#: mod/settings.php:1126 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: mod/settings.php:1107 +#: mod/settings.php:1132 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" -#: mod/settings.php:1115 +#: mod/settings.php:1140 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: mod/settings.php:1123 +#: mod/settings.php:1148 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: mod/settings.php:1130 +#: mod/settings.php:1155 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: mod/settings.php:1130 +#: mod/settings.php:1155 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: mod/settings.php:1131 +#: mod/settings.php:1156 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: mod/settings.php:1132 +#: mod/settings.php:1157 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: mod/settings.php:1133 +#: mod/settings.php:1158 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: mod/settings.php:1134 +#: mod/settings.php:1159 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: mod/settings.php:1135 +#: mod/settings.php:1160 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: mod/settings.php:1136 +#: mod/settings.php:1161 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: mod/settings.php:1137 +#: mod/settings.php:1162 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: mod/settings.php:1163 +#: mod/settings.php:1190 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: mod/settings.php:1171 +#: mod/settings.php:1198 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: mod/settings.php:1172 mod/register.php:271 +#: mod/settings.php:1199 mod/register.php:271 msgid "New Password:" msgstr "Neues Passwort:" -#: mod/settings.php:1173 mod/register.php:272 +#: mod/settings.php:1200 mod/register.php:272 msgid "Confirm:" msgstr "Bestätigen:" -#: mod/settings.php:1173 +#: mod/settings.php:1200 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" -#: mod/settings.php:1174 +#: mod/settings.php:1201 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: mod/settings.php:1174 mod/settings.php:1175 +#: mod/settings.php:1201 mod/settings.php:1202 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: mod/settings.php:1175 +#: mod/settings.php:1202 msgid "Password:" msgstr "Passwort:" -#: mod/settings.php:1179 +#: mod/settings.php:1206 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: mod/settings.php:1180 include/identity.php:538 +#: mod/settings.php:1207 include/identity.php:539 msgid "Full Name:" msgstr "Kompletter Name:" -#: mod/settings.php:1181 +#: mod/settings.php:1208 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: mod/settings.php:1182 +#: mod/settings.php:1209 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: mod/settings.php:1183 +#: mod/settings.php:1210 +msgid "Your Language:" +msgstr "Deine Sprache:" + +#: mod/settings.php:1210 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken" + +#: mod/settings.php:1211 msgid "Default Post Location:" msgstr "Standardstandort:" -#: mod/settings.php:1184 +#: mod/settings.php:1212 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: mod/settings.php:1187 +#: mod/settings.php:1215 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: mod/settings.php:1189 +#: mod/settings.php:1217 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: mod/settings.php:1189 mod/settings.php:1219 +#: mod/settings.php:1217 mod/settings.php:1247 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: mod/settings.php:1190 +#: mod/settings.php:1218 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: mod/settings.php:1191 +#: mod/settings.php:1219 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 +#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 msgid "Show to Groups" msgstr "Zeige den Gruppen" -#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 +#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 msgid "Show to Contacts" msgstr "Zeige den Kontakten" -#: mod/settings.php:1202 +#: mod/settings.php:1230 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: mod/settings.php:1203 +#: mod/settings.php:1231 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: mod/settings.php:1207 +#: mod/settings.php:1235 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: mod/settings.php:1219 +#: mod/settings.php:1247 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: mod/settings.php:1222 +#: mod/settings.php:1250 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: mod/settings.php:1223 +#: mod/settings.php:1251 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: mod/settings.php:1224 +#: mod/settings.php:1252 msgid "accepting a friend request" msgstr "– Du eine Kontaktanfrage akzeptierst" -#: mod/settings.php:1225 +#: mod/settings.php:1253 msgid "joining a forum/community" msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" -#: mod/settings.php:1226 +#: mod/settings.php:1254 msgid "making an interesting profile change" msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" -#: mod/settings.php:1227 +#: mod/settings.php:1255 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: mod/settings.php:1228 +#: mod/settings.php:1256 msgid "You receive an introduction" msgstr "– Du eine Kontaktanfrage erhältst" -#: mod/settings.php:1229 +#: mod/settings.php:1257 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: mod/settings.php:1230 +#: mod/settings.php:1258 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: mod/settings.php:1231 +#: mod/settings.php:1259 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: mod/settings.php:1232 +#: mod/settings.php:1260 msgid "You receive a private message" msgstr "– Du eine private Nachricht erhältst" -#: mod/settings.php:1233 +#: mod/settings.php:1261 msgid "You receive a friend suggestion" msgstr "– Du eine Empfehlung erhältst" -#: mod/settings.php:1234 +#: mod/settings.php:1262 msgid "You are tagged in a post" msgstr "– Du in einem Beitrag erwähnt wirst" -#: mod/settings.php:1235 +#: mod/settings.php:1263 msgid "You are poked/prodded/etc. in a post" msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" -#: mod/settings.php:1237 +#: mod/settings.php:1265 msgid "Activate desktop notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1237 +#: mod/settings.php:1265 msgid "Show desktop popup on new notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1239 +#: mod/settings.php:1267 msgid "Text-only notification emails" msgstr "Benachrichtigungs E-Mail als Rein-Text." -#: mod/settings.php:1241 +#: mod/settings.php:1269 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" -#: mod/settings.php:1243 +#: mod/settings.php:1271 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: mod/settings.php:1244 +#: mod/settings.php:1272 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: mod/settings.php:1247 +#: mod/settings.php:1275 msgid "Relocate" msgstr "Umziehen" -#: mod/settings.php:1248 +#: mod/settings.php:1276 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." -#: mod/settings.php:1249 +#: mod/settings.php:1277 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" @@ -4572,7 +4931,7 @@ msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." msgid "Invalid profile URL." msgstr "Ungültige Profil-URL." -#: mod/dfrn_request.php:507 include/follow.php:70 +#: mod/dfrn_request.php:507 include/follow.php:72 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." @@ -4702,8 +5061,8 @@ msgid "Your invitation ID: " msgstr "ID Deiner Einladung: " #: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):" #: mod/register.php:269 msgid "Your Email Address: " @@ -4724,7 +5083,7 @@ msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstab msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: mod/register.php:277 boot.php:1248 include/nav.php:109 +#: mod/register.php:277 boot.php:1256 include/nav.php:108 msgid "Register" msgstr "Registrieren" @@ -4740,49 +5099,66 @@ msgstr "Importiere Dein Profil auf diese Friendica Instanz" msgid "System down for maintenance" msgstr "System zur Wartung abgeschaltet" -#: mod/search.php:100 include/text.php:996 include/nav.php:119 +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." + +#: mod/search.php:115 +msgid "Too Many Requests" +msgstr "Zu viele Abfragen" + +#: mod/search.php:116 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet." + +#: mod/search.php:126 include/text.php:996 include/nav.php:118 msgid "Search" msgstr "Suche" -#: mod/search.php:198 +#: mod/search.php:224 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge markiert mit: %s" -#: mod/search.php:200 +#: mod/search.php:226 #, php-format msgid "Search results for: %s" msgstr "Suchergebnisse für: %s" -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Verzeichnis" - -#: mod/directory.php:129 mod/profiles.php:747 +#: mod/directory.php:116 mod/profiles.php:760 msgid "Age: " msgstr "Alter: " -#: mod/directory.php:132 +#: mod/directory.php:119 msgid "Gender: " msgstr "Geschlecht:" -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +#: mod/directory.php:143 include/identity.php:273 include/identity.php:561 msgid "Status:" msgstr "Status:" -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +#: mod/directory.php:145 include/identity.php:275 include/identity.php:572 msgid "Homepage:" msgstr "Homepage:" -#: mod/directory.php:205 +#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:191 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: mod/directory.php:197 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: mod/directory.php:199 +msgid "Finding:" +msgstr "Funde:" + +#: mod/directory.php:201 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: mod/directory.php:208 msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." @@ -4790,7 +5166,7 @@ msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." msgid "No potential page delegates located." msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." -#: mod/delegate.php:130 include/nav.php:179 +#: mod/delegate.php:130 include/nav.php:180 msgid "Delegate Page Management" msgstr "Delegiere das Management für die Seite" @@ -4821,14 +5197,14 @@ msgstr "Hinzufügen" msgid "No entries." msgstr "Keine Einträge." -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: mod/common.php:82 +#: mod/common.php:85 msgid "No contacts in common." msgstr "Keine gemeinsamen Kontakte." +#: mod/common.php:133 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + #: mod/uexport.php:77 msgid "Export account" msgstr "Account exportieren" @@ -4850,7 +5226,7 @@ msgid "" "of your account (photos are not exported)" msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." -#: mod/mood.php:62 include/conversation.php:226 +#: mod/mood.php:62 include/conversation.php:239 #, php-format msgid "%1$s is currently %2$s" msgstr "%1$s ist momentan %2$s" @@ -4867,21 +5243,21 @@ msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" msgid "Do you really want to delete this suggestion?" msgstr "Möchtest Du wirklich diese Empfehlung löschen?" -#: mod/suggest.php:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/suggest.php:76 +#: mod/suggest.php:71 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." -#: mod/suggest.php:94 +#: mod/suggest.php:83 mod/suggest.php:100 msgid "Ignore/Hide" msgstr "Ignorieren/Verbergen" +#: mod/suggest.php:110 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:193 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + #: mod/profiles.php:37 msgid "Profile deleted." msgstr "Profil gelöscht." @@ -4910,11 +5286,11 @@ msgstr "Familienstand" msgid "Romantic Partner" msgstr "Romanze" -#: mod/profiles.php:344 +#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 msgid "Likes" msgstr "Likes" -#: mod/profiles.php:348 +#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 msgid "Dislikes" msgstr "Dislikes" @@ -4942,7 +5318,7 @@ msgstr "Sexuelle Vorlieben" msgid "Homepage" msgstr "Webseite" -#: mod/profiles.php:375 mod/profiles.php:695 +#: mod/profiles.php:375 mod/profiles.php:708 msgid "Interests" msgstr "Interessen" @@ -4950,7 +5326,7 @@ msgstr "Interessen" msgid "Address" msgstr "Adresse" -#: mod/profiles.php:386 mod/profiles.php:691 +#: mod/profiles.php:386 mod/profiles.php:704 msgid "Location" msgstr "Wohnort" @@ -4989,221 +5365,225 @@ msgstr "Kontakte und Freunde verbergen" msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" -#: mod/profiles.php:682 +#: mod/profiles.php:684 +msgid "Show more profile fields:" +msgstr "Zeige mehr Profil-Felder:" + +#: mod/profiles.php:695 msgid "Edit Profile Details" msgstr "Profil bearbeiten" -#: mod/profiles.php:684 +#: mod/profiles.php:697 msgid "Change Profile Photo" msgstr "Profilbild ändern" -#: mod/profiles.php:685 +#: mod/profiles.php:698 msgid "View this profile" msgstr "Dieses Profil anzeigen" -#: mod/profiles.php:686 +#: mod/profiles.php:699 msgid "Create a new profile using these settings" msgstr "Neues Profil anlegen und diese Einstellungen verwenden" -#: mod/profiles.php:687 +#: mod/profiles.php:700 msgid "Clone this profile" msgstr "Dieses Profil duplizieren" -#: mod/profiles.php:688 +#: mod/profiles.php:701 msgid "Delete this profile" msgstr "Dieses Profil löschen" -#: mod/profiles.php:689 +#: mod/profiles.php:702 msgid "Basic information" msgstr "Grundinformationen" -#: mod/profiles.php:690 +#: mod/profiles.php:703 msgid "Profile picture" msgstr "Profilbild" -#: mod/profiles.php:692 +#: mod/profiles.php:705 msgid "Preferences" msgstr "Vorlieben" -#: mod/profiles.php:693 +#: mod/profiles.php:706 msgid "Status information" msgstr "Status Informationen" -#: mod/profiles.php:694 +#: mod/profiles.php:707 msgid "Additional information" msgstr "Zusätzliche Informationen" -#: mod/profiles.php:697 +#: mod/profiles.php:710 msgid "Profile Name:" msgstr "Profilname:" -#: mod/profiles.php:698 +#: mod/profiles.php:711 msgid "Your Full Name:" msgstr "Dein kompletter Name:" -#: mod/profiles.php:699 +#: mod/profiles.php:712 msgid "Title/Description:" msgstr "Titel/Beschreibung:" -#: mod/profiles.php:700 +#: mod/profiles.php:713 msgid "Your Gender:" msgstr "Dein Geschlecht:" -#: mod/profiles.php:701 +#: mod/profiles.php:714 msgid "Birthday :" msgstr "Geburtstag :" -#: mod/profiles.php:702 +#: mod/profiles.php:715 msgid "Street Address:" msgstr "Adresse:" -#: mod/profiles.php:703 +#: mod/profiles.php:716 msgid "Locality/City:" msgstr "Wohnort:" -#: mod/profiles.php:704 +#: mod/profiles.php:717 msgid "Postal/Zip Code:" msgstr "Postleitzahl:" -#: mod/profiles.php:705 +#: mod/profiles.php:718 msgid "Country:" msgstr "Land:" -#: mod/profiles.php:706 +#: mod/profiles.php:719 msgid "Region/State:" msgstr "Region/Bundesstaat:" -#: mod/profiles.php:707 +#: mod/profiles.php:720 msgid " Marital Status:" msgstr " Beziehungsstatus:" -#: mod/profiles.php:708 +#: mod/profiles.php:721 msgid "Who: (if applicable)" msgstr "Wer: (falls anwendbar)" -#: mod/profiles.php:709 +#: mod/profiles.php:722 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" -#: mod/profiles.php:710 +#: mod/profiles.php:723 msgid "Since [date]:" msgstr "Seit [Datum]:" -#: mod/profiles.php:711 include/identity.php:569 +#: mod/profiles.php:724 include/identity.php:570 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" -#: mod/profiles.php:712 +#: mod/profiles.php:725 msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: mod/profiles.php:713 include/identity.php:573 +#: mod/profiles.php:726 include/identity.php:574 msgid "Hometown:" msgstr "Heimatort:" -#: mod/profiles.php:714 include/identity.php:577 +#: mod/profiles.php:727 include/identity.php:578 msgid "Political Views:" msgstr "Politische Ansichten:" -#: mod/profiles.php:715 +#: mod/profiles.php:728 msgid "Religious Views:" msgstr "Religiöse Ansichten:" -#: mod/profiles.php:716 +#: mod/profiles.php:729 msgid "Public Keywords:" msgstr "Öffentliche Schlüsselwörter:" -#: mod/profiles.php:717 +#: mod/profiles.php:730 msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: mod/profiles.php:718 include/identity.php:585 +#: mod/profiles.php:731 include/identity.php:586 msgid "Likes:" msgstr "Likes:" -#: mod/profiles.php:719 include/identity.php:587 +#: mod/profiles.php:732 include/identity.php:588 msgid "Dislikes:" msgstr "Dislikes:" -#: mod/profiles.php:720 +#: mod/profiles.php:733 msgid "Example: fishing photography software" msgstr "Beispiel: Fischen Fotografie Software" -#: mod/profiles.php:721 +#: mod/profiles.php:734 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)" -#: mod/profiles.php:722 +#: mod/profiles.php:735 msgid "(Used for searching profiles, never shown to others)" msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" -#: mod/profiles.php:723 +#: mod/profiles.php:736 msgid "Tell us about yourself..." msgstr "Erzähle uns ein bisschen von Dir …" -#: mod/profiles.php:724 +#: mod/profiles.php:737 msgid "Hobbies/Interests" msgstr "Hobbies/Interessen" -#: mod/profiles.php:725 +#: mod/profiles.php:738 msgid "Contact information and Social Networks" msgstr "Kontaktinformationen und Soziale Netzwerke" -#: mod/profiles.php:726 +#: mod/profiles.php:739 msgid "Musical interests" msgstr "Musikalische Interessen" -#: mod/profiles.php:727 +#: mod/profiles.php:740 msgid "Books, literature" msgstr "Bücher, Literatur" -#: mod/profiles.php:728 +#: mod/profiles.php:741 msgid "Television" msgstr "Fernsehen" -#: mod/profiles.php:729 +#: mod/profiles.php:742 msgid "Film/dance/culture/entertainment" msgstr "Filme/Tänze/Kultur/Unterhaltung" -#: mod/profiles.php:730 +#: mod/profiles.php:743 msgid "Love/romance" msgstr "Liebe/Romantik" -#: mod/profiles.php:731 +#: mod/profiles.php:744 msgid "Work/employment" msgstr "Arbeit/Anstellung" -#: mod/profiles.php:732 +#: mod/profiles.php:745 msgid "School/education" msgstr "Schule/Ausbildung" -#: mod/profiles.php:737 +#: mod/profiles.php:750 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." msgstr "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein." -#: mod/profiles.php:800 +#: mod/profiles.php:813 msgid "Edit/Manage Profiles" msgstr "Bearbeite/Verwalte Profile" -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +#: mod/profiles.php:814 include/identity.php:231 include/identity.php:257 msgid "Change profile photo" msgstr "Profilbild ändern" -#: mod/profiles.php:802 include/identity.php:232 +#: mod/profiles.php:815 include/identity.php:232 msgid "Create New Profile" msgstr "Neues Profil anlegen" -#: mod/profiles.php:813 include/identity.php:242 +#: mod/profiles.php:826 include/identity.php:242 msgid "Profile Image" msgstr "Profilbild" -#: mod/profiles.php:815 include/identity.php:245 +#: mod/profiles.php:828 include/identity.php:245 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: mod/profiles.php:816 include/identity.php:246 +#: mod/profiles.php:829 include/identity.php:246 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -5215,75 +5595,75 @@ msgstr "Beitrag nicht gefunden" msgid "Edit post" msgstr "Beitrag bearbeiten" -#: mod/editpost.php:111 include/conversation.php:1057 +#: mod/editpost.php:110 include/conversation.php:1185 msgid "upload photo" msgstr "Bild hochladen" -#: mod/editpost.php:112 include/conversation.php:1058 +#: mod/editpost.php:111 include/conversation.php:1186 msgid "Attach file" msgstr "Datei anhängen" -#: mod/editpost.php:113 include/conversation.php:1059 +#: mod/editpost.php:112 include/conversation.php:1187 msgid "attach file" msgstr "Datei anhängen" -#: mod/editpost.php:115 include/conversation.php:1061 +#: mod/editpost.php:114 include/conversation.php:1189 msgid "web link" msgstr "Weblink" -#: mod/editpost.php:116 include/conversation.php:1062 +#: mod/editpost.php:115 include/conversation.php:1190 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: mod/editpost.php:117 include/conversation.php:1063 +#: mod/editpost.php:116 include/conversation.php:1191 msgid "video link" msgstr "Video-Link" -#: mod/editpost.php:118 include/conversation.php:1064 +#: mod/editpost.php:117 include/conversation.php:1192 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: mod/editpost.php:119 include/conversation.php:1065 +#: mod/editpost.php:118 include/conversation.php:1193 msgid "audio link" msgstr "Audio-Link" -#: mod/editpost.php:120 include/conversation.php:1066 +#: mod/editpost.php:119 include/conversation.php:1194 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: mod/editpost.php:121 include/conversation.php:1067 +#: mod/editpost.php:120 include/conversation.php:1195 msgid "set location" msgstr "Ort setzen" -#: mod/editpost.php:122 include/conversation.php:1068 +#: mod/editpost.php:121 include/conversation.php:1196 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: mod/editpost.php:123 include/conversation.php:1069 +#: mod/editpost.php:122 include/conversation.php:1197 msgid "clear location" msgstr "Ort löschen" -#: mod/editpost.php:125 include/conversation.php:1075 +#: mod/editpost.php:124 include/conversation.php:1203 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: mod/editpost.php:133 include/acl_selectors.php:343 +#: mod/editpost.php:132 include/acl_selectors.php:343 msgid "CC: email addresses" msgstr "Cc: E-Mail-Addressen" -#: mod/editpost.php:134 include/conversation.php:1084 +#: mod/editpost.php:133 include/conversation.php:1212 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: mod/editpost.php:137 include/conversation.php:1071 +#: mod/editpost.php:136 include/conversation.php:1199 msgid "Set title" msgstr "Titel setzen" -#: mod/editpost.php:139 include/conversation.php:1073 +#: mod/editpost.php:138 include/conversation.php:1201 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: mod/editpost.php:140 include/acl_selectors.php:344 +#: mod/editpost.php:139 include/acl_selectors.php:344 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" @@ -5349,7 +5729,7 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." msgid "Visible to:" msgstr "Sichtbar für:" -#: mod/notes.php:44 include/identity.php:675 +#: mod/notes.php:46 include/identity.php:677 msgid "Personal Notes" msgstr "Persönliche Notizen" @@ -5386,26 +5766,34 @@ msgstr "Umgerechnete lokale Zeit: %s" msgid "Please select your timezone:" msgstr "Bitte wähle Deine Zeitzone:" -#: mod/poke.php:192 +#: mod/poke.php:191 msgid "Poke/Prod" msgstr "Anstupsen" -#: mod/poke.php:193 +#: mod/poke.php:192 msgid "poke, prod or do other things to somebody" msgstr "Stupse Leute an oder mache anderes mit ihnen" -#: mod/poke.php:194 +#: mod/poke.php:193 msgid "Recipient" msgstr "Empfänger" -#: mod/poke.php:195 +#: mod/poke.php:194 msgid "Choose what you wish to do to recipient" msgstr "Was willst Du mit dem Empfänger machen:" -#: mod/poke.php:198 +#: mod/poke.php:197 msgid "Make this post private" msgstr "Diesen Beitrag privat machen" +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "Erneuern der OStatus Abonements" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Fehler" + #: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "Limit für Einladungen erreicht." @@ -5498,187 +5886,200 @@ msgid "" "important, please visit http://friendica.com" msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: mod/photos.php:84 include/identity.php:651 +#: mod/photos.php:91 include/identity.php:652 msgid "Photo Albums" msgstr "Fotoalben" -#: mod/photos.php:85 mod/photos.php:1836 +#: mod/photos.php:92 mod/photos.php:1891 msgid "Recent Photos" msgstr "Neueste Fotos" -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" -#: mod/photos.php:166 +#: mod/photos.php:173 msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" -#: mod/photos.php:187 +#: mod/photos.php:194 msgid "Album not found." msgstr "Album nicht gefunden." -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 msgid "Delete Album" msgstr "Album löschen" -#: mod/photos.php:220 +#: mod/photos.php:234 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 msgid "Delete Photo" msgstr "Foto löschen" -#: mod/photos.php:309 +#: mod/photos.php:323 msgid "Do you really want to delete this photo?" msgstr "Möchtest Du wirklich dieses Foto löschen?" -#: mod/photos.php:684 +#: mod/photos.php:698 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: mod/photos.php:684 +#: mod/photos.php:698 msgid "a photo" msgstr "einem Foto" -#: mod/photos.php:797 +#: mod/photos.php:811 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: mod/photos.php:952 +#: mod/photos.php:978 msgid "No photos selected" msgstr "Keine Bilder ausgewählt" -#: mod/photos.php:1114 +#: mod/photos.php:1139 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." -#: mod/photos.php:1149 +#: mod/photos.php:1174 msgid "Upload Photos" msgstr "Bilder hochladen" -#: mod/photos.php:1153 mod/photos.php:1219 +#: mod/photos.php:1178 mod/photos.php:1249 msgid "New album name: " msgstr "Name des neuen Albums: " -#: mod/photos.php:1154 +#: mod/photos.php:1179 msgid "or existing album name: " msgstr "oder existierender Albumname: " -#: mod/photos.php:1155 +#: mod/photos.php:1180 msgid "Do not show a status post for this upload" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:346 msgid "Permissions" msgstr "Berechtigungen" -#: mod/photos.php:1168 +#: mod/photos.php:1193 msgid "Private Photo" msgstr "Privates Foto" -#: mod/photos.php:1169 +#: mod/photos.php:1194 msgid "Public Photo" msgstr "Öffentliches Foto" -#: mod/photos.php:1232 +#: mod/photos.php:1262 msgid "Edit Album" msgstr "Album bearbeiten" -#: mod/photos.php:1238 +#: mod/photos.php:1268 msgid "Show Newest First" msgstr "Zeige neueste zuerst" -#: mod/photos.php:1240 +#: mod/photos.php:1270 msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: mod/photos.php:1268 mod/photos.php:1821 +#: mod/photos.php:1298 mod/photos.php:1876 msgid "View Photo" msgstr "Foto betrachten" -#: mod/photos.php:1314 +#: mod/photos.php:1345 msgid "Permission denied. Access to this item may be restricted." msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." -#: mod/photos.php:1316 +#: mod/photos.php:1347 msgid "Photo not available" msgstr "Foto nicht verfügbar" -#: mod/photos.php:1372 +#: mod/photos.php:1403 msgid "View photo" msgstr "Fotos ansehen" -#: mod/photos.php:1372 +#: mod/photos.php:1403 msgid "Edit photo" msgstr "Foto bearbeiten" -#: mod/photos.php:1373 +#: mod/photos.php:1404 msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: mod/photos.php:1398 +#: mod/photos.php:1429 msgid "View Full Size" msgstr "Betrachte Originalgröße" -#: mod/photos.php:1477 +#: mod/photos.php:1515 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1480 +#: mod/photos.php:1518 msgid "[Remove any tag]" msgstr "[Tag entfernen]" -#: mod/photos.php:1520 +#: mod/photos.php:1558 msgid "New album name" msgstr "Name des neuen Albums" -#: mod/photos.php:1521 +#: mod/photos.php:1559 msgid "Caption" msgstr "Bildunterschrift" -#: mod/photos.php:1522 +#: mod/photos.php:1560 msgid "Add a Tag" msgstr "Tag hinzufügen" -#: mod/photos.php:1522 +#: mod/photos.php:1560 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1523 +#: mod/photos.php:1561 msgid "Do not rotate" msgstr "Nicht rotieren" -#: mod/photos.php:1524 +#: mod/photos.php:1562 msgid "Rotate CW (right)" msgstr "Drehen US (rechts)" -#: mod/photos.php:1525 +#: mod/photos.php:1563 msgid "Rotate CCW (left)" msgstr "Drehen EUS (links)" -#: mod/photos.php:1540 +#: mod/photos.php:1578 msgid "Private photo" msgstr "Privates Foto" -#: mod/photos.php:1541 +#: mod/photos.php:1579 msgid "Public photo" msgstr "Öffentliches Foto" -#: mod/photos.php:1563 include/conversation.php:1055 +#: mod/photos.php:1601 include/conversation.php:1183 msgid "Share" msgstr "Teilen" +#: mod/photos.php:1640 include/conversation.php:509 +#: include/conversation.php:1405 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Teilnehmend" +msgstr[1] "Teilnehmend" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Not attending" +msgstr "Nicht teilnehmend" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Might attend" +msgstr "Eventuell teilnehmend" + +#: mod/photos.php:1805 +msgid "Map" +msgstr "Karte" + #: mod/p.php:9 msgid "Not Extended" msgstr "Nicht erweitert." @@ -5714,8 +6115,8 @@ msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. #: mod/uimport.php:69 msgid "" "This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren" #: mod/uimport.php:70 msgid "Account file" @@ -5735,60 +6136,60 @@ msgstr "Beitrag nicht verfügbar." msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." -#: boot.php:763 +#: boot.php:771 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: boot.php:766 +#: boot.php:774 msgid "show fewer" msgstr "weniger anzeigen" -#: boot.php:1140 +#: boot.php:1148 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: boot.php:1247 +#: boot.php:1255 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1280 include/nav.php:72 msgid "Logout" msgstr "Abmelden" -#: boot.php:1275 +#: boot.php:1283 msgid "Nickname or Email address: " msgstr "Spitzname oder E-Mail-Adresse: " -#: boot.php:1276 +#: boot.php:1284 msgid "Password: " msgstr "Passwort: " -#: boot.php:1277 +#: boot.php:1285 msgid "Remember me" msgstr "Anmeldedaten merken" -#: boot.php:1280 +#: boot.php:1288 msgid "Or login using OpenID: " msgstr "Oder melde Dich mit Deiner OpenID an: " -#: boot.php:1286 +#: boot.php:1294 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: boot.php:1289 +#: boot.php:1297 msgid "Website Terms of Service" msgstr "Website Nutzungsbedingungen" -#: boot.php:1290 +#: boot.php:1298 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: boot.php:1292 +#: boot.php:1300 msgid "Website Privacy Policy" msgstr "Website Datenschutzerklärung" -#: boot.php:1293 +#: boot.php:1301 msgid "privacy policy" msgstr "Datenschutzerklärung" @@ -5796,31 +6197,39 @@ msgstr "Datenschutzerklärung" msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: object/Item.php:209 +#: object/Item.php:191 +msgid "I will attend" +msgstr "Ich werde teilnehmen" + +#: object/Item.php:191 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" + +#: object/Item.php:191 +msgid "I might attend" +msgstr "Ich werde eventuell teilnehmen" + +#: object/Item.php:230 msgid "ignore thread" msgstr "Thread ignorieren" -#: object/Item.php:210 +#: object/Item.php:231 msgid "unignore thread" msgstr "Thread nicht mehr ignorieren" -#: object/Item.php:211 +#: object/Item.php:232 msgid "toggle ignore status" msgstr "Ignoriert-Status ein-/ausschalten" -#: object/Item.php:214 -msgid "ignored" -msgstr "Ignoriert" - -#: object/Item.php:318 include/conversation.php:665 +#: object/Item.php:345 include/conversation.php:687 msgid "Categories:" msgstr "Kategorien:" -#: object/Item.php:319 include/conversation.php:666 +#: object/Item.php:346 include/conversation.php:688 msgid "Filed under:" msgstr "Abgelegt unter:" -#: object/Item.php:331 +#: object/Item.php:360 msgid "via" msgstr "via" @@ -5890,15 +6299,12 @@ msgstr "Leute finden" msgid "Enter name or interest" msgstr "Name oder Interessen eingeben" -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - #: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiel: Robert Morgenstein, Angeln" #: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:192 msgid "Similar Interests" msgstr "Ähnliche Interessen" @@ -5907,6 +6313,7 @@ msgid "Random Profile" msgstr "Zufälliges Profil" #: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:194 msgid "Invite Friends" msgstr "Freunde einladen" @@ -5918,7 +6325,7 @@ msgstr "Netzwerke" msgid "All Networks" msgstr "Alle Netzwerke" -#: include/contact_widgets.php:104 include/features.php:60 +#: include/contact_widgets.php:104 include/features.php:61 msgid "Saved Folders" msgstr "Gespeicherte Ordner" @@ -5942,201 +6349,211 @@ msgstr "Mehrere Profile" msgid "Ability to create multiple profiles" msgstr "Möglichkeit mehrere Profile zu erstellen" -#: include/features.php:30 +#: include/features.php:26 +msgid "Photo Location" +msgstr "Aufnahmeort" + +#: include/features.php:26 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden." + +#: include/features.php:31 msgid "Post Composition Features" msgstr "Beitragserstellung Features" -#: include/features.php:31 +#: include/features.php:32 msgid "Richtext Editor" msgstr "Web-Editor" -#: include/features.php:31 +#: include/features.php:32 msgid "Enable richtext editor" msgstr "Den Web-Editor für neue Beiträge aktivieren" -#: include/features.php:32 +#: include/features.php:33 msgid "Post Preview" msgstr "Beitragsvorschau" -#: include/features.php:32 +#: include/features.php:33 msgid "Allow previewing posts and comments before publishing them" msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." -#: include/features.php:33 +#: include/features.php:34 msgid "Auto-mention Forums" msgstr "Foren automatisch erwähnen" -#: include/features.php:33 +#: include/features.php:34 msgid "" "Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." -#: include/features.php:38 +#: include/features.php:39 msgid "Network Sidebar Widgets" msgstr "Widgets für Netzwerk und Seitenleiste" -#: include/features.php:39 +#: include/features.php:40 msgid "Search by Date" msgstr "Archiv" -#: include/features.php:39 +#: include/features.php:40 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" -#: include/features.php:40 +#: include/features.php:41 msgid "Group Filter" msgstr "Gruppen Filter" -#: include/features.php:40 +#: include/features.php:41 msgid "Enable widget to display Network posts only from selected group" msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." -#: include/features.php:41 +#: include/features.php:42 msgid "Network Filter" msgstr "Netzwerk Filter" -#: include/features.php:41 +#: include/features.php:42 msgid "Enable widget to display Network posts only from selected network" msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." -#: include/features.php:42 +#: include/features.php:43 msgid "Save search terms for re-use" msgstr "Speichere Suchanfragen für spätere Wiederholung." -#: include/features.php:47 +#: include/features.php:48 msgid "Network Tabs" msgstr "Netzwerk Reiter" -#: include/features.php:48 +#: include/features.php:49 msgid "Network Personal Tab" msgstr "Netzwerk-Reiter: Persönlich" -#: include/features.php:48 +#: include/features.php:49 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast" -#: include/features.php:49 +#: include/features.php:50 msgid "Network New Tab" msgstr "Netzwerk-Reiter: Neue" -#: include/features.php:49 +#: include/features.php:50 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" -#: include/features.php:50 +#: include/features.php:51 msgid "Network Shared Links Tab" msgstr "Netzwerk-Reiter: Geteilte Links" -#: include/features.php:50 +#: include/features.php:51 msgid "Enable tab to display only Network posts with links in them" msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" -#: include/features.php:55 +#: include/features.php:56 msgid "Post/Comment Tools" msgstr "Werkzeuge für Beiträge und Kommentare" -#: include/features.php:56 +#: include/features.php:57 msgid "Multiple Deletion" msgstr "Mehrere Beiträge löschen" -#: include/features.php:56 +#: include/features.php:57 msgid "Select and delete multiple posts/comments at once" msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" -#: include/features.php:57 +#: include/features.php:58 msgid "Edit Sent Posts" msgstr "Gesendete Beiträge editieren" -#: include/features.php:57 +#: include/features.php:58 msgid "Edit and correct posts and comments after sending" msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." -#: include/features.php:58 +#: include/features.php:59 msgid "Tagging" msgstr "Tagging" -#: include/features.php:58 +#: include/features.php:59 msgid "Ability to tag existing posts" msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." -#: include/features.php:59 +#: include/features.php:60 msgid "Post Categories" msgstr "Beitragskategorien" -#: include/features.php:59 +#: include/features.php:60 msgid "Add categories to your posts" msgstr "Eigene Beiträge mit Kategorien versehen" -#: include/features.php:60 +#: include/features.php:61 msgid "Ability to file posts under folders" msgstr "Beiträge in Ordnern speichern aktivieren" -#: include/features.php:61 +#: include/features.php:62 msgid "Dislike Posts" msgstr "Beiträge 'nicht mögen'" -#: include/features.php:61 +#: include/features.php:62 msgid "Ability to dislike posts/comments" msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" -#: include/features.php:62 +#: include/features.php:63 msgid "Star Posts" msgstr "Beiträge Markieren" -#: include/features.php:62 +#: include/features.php:63 msgid "Ability to mark special posts with a star indicator" msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" -#: include/features.php:63 +#: include/features.php:64 msgid "Mute Post Notifications" msgstr "Benachrichtigungen für Beiträge Stumm schalten" -#: include/features.php:63 +#: include/features.php:64 msgid "Ability to mute notifications for a thread" msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" -#: include/follow.php:75 +#: include/follow.php:77 msgid "Connect URL missing." msgstr "Connect-URL fehlt" -#: include/follow.php:102 +#: include/follow.php:104 msgid "" "This site is not configured to allow communications with other networks." msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." -#: include/follow.php:103 include/follow.php:123 +#: include/follow.php:105 include/follow.php:125 msgid "No compatible communication protocols or feeds were discovered." msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: include/follow.php:121 +#: include/follow.php:123 msgid "The profile address specified does not provide adequate information." msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: include/follow.php:125 +#: include/follow.php:127 msgid "An author or name was not found." msgstr "Es wurde kein Autor oder Name gefunden." -#: include/follow.php:127 +#: include/follow.php:129 msgid "No browser URL could be matched to this address." msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." -#: include/follow.php:129 +#: include/follow.php:131 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." -#: include/follow.php:130 +#: include/follow.php:132 msgid "Use mailto: in front of address to force email check." msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." -#: include/follow.php:136 +#: include/follow.php:138 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." -#: include/follow.php:146 +#: include/follow.php:148 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." @@ -6157,27 +6574,27 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." -#: include/group.php:207 +#: include/group.php:209 msgid "Default privacy group for new contacts" msgstr "Voreingestellte Gruppe für neue Kontakte" -#: include/group.php:226 +#: include/group.php:228 msgid "Everybody" msgstr "Alle Kontakte" -#: include/group.php:249 +#: include/group.php:251 msgid "edit" msgstr "bearbeiten" -#: include/group.php:271 +#: include/group.php:273 msgid "Edit group" msgstr "Gruppe bearbeiten" -#: include/group.php:272 +#: include/group.php:274 msgid "Create a new group" msgstr "Neue Gruppe erstellen" -#: include/group.php:275 +#: include/group.php:277 msgid "Contacts not in any group" msgstr "Kontakte in keiner Gruppe" @@ -6189,81 +6606,69 @@ msgstr "Verschiedenes" msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD oder MM-DD" -#: include/datetime.php:256 +#: include/datetime.php:271 msgid "never" msgstr "nie" -#: include/datetime.php:262 +#: include/datetime.php:277 msgid "less than a second ago" msgstr "vor weniger als einer Sekunde" -#: include/datetime.php:272 +#: include/datetime.php:287 msgid "year" msgstr "Jahr" -#: include/datetime.php:272 +#: include/datetime.php:287 msgid "years" msgstr "Jahre" -#: include/datetime.php:273 -msgid "month" -msgstr "Monat" - -#: include/datetime.php:273 +#: include/datetime.php:288 msgid "months" msgstr "Monate" -#: include/datetime.php:274 -msgid "week" -msgstr "Woche" - -#: include/datetime.php:274 +#: include/datetime.php:289 msgid "weeks" msgstr "Wochen" -#: include/datetime.php:275 -msgid "day" -msgstr "Tag" - -#: include/datetime.php:275 +#: include/datetime.php:290 msgid "days" msgstr "Tage" -#: include/datetime.php:276 +#: include/datetime.php:291 msgid "hour" msgstr "Stunde" -#: include/datetime.php:276 +#: include/datetime.php:291 msgid "hours" msgstr "Stunden" -#: include/datetime.php:277 +#: include/datetime.php:292 msgid "minute" msgstr "Minute" -#: include/datetime.php:277 +#: include/datetime.php:292 msgid "minutes" msgstr "Minuten" -#: include/datetime.php:278 +#: include/datetime.php:293 msgid "second" msgstr "Sekunde" -#: include/datetime.php:278 +#: include/datetime.php:293 msgid "seconds" msgstr "Sekunden" -#: include/datetime.php:287 +#: include/datetime.php:302 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: include/datetime.php:459 include/items.php:2432 +#: include/datetime.php:474 include/items.php:2484 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: include/datetime.php:460 include/items.php:2433 +#: include/datetime.php:475 include/items.php:2485 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch %s" @@ -6272,7 +6677,7 @@ msgstr "Herzlichen Glückwunsch %s" msgid "Requested account is not available." msgstr "Das angefragte Profil ist nicht vorhanden." -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 msgid "Edit profile" msgstr "Profil bearbeiten" @@ -6280,7 +6685,7 @@ msgstr "Profil bearbeiten" msgid "Message" msgstr "Nachricht" -#: include/identity.php:226 include/nav.php:184 +#: include/identity.php:226 include/nav.php:185 msgid "Profiles" msgstr "Profile" @@ -6288,124 +6693,124 @@ msgstr "Profile" msgid "Manage/edit profiles" msgstr "Profile verwalten/editieren" -#: include/identity.php:341 +#: include/identity.php:342 msgid "Network:" msgstr "Netzwerk" -#: include/identity.php:373 include/identity.php:459 +#: include/identity.php:374 include/identity.php:460 msgid "g A l F d" msgstr "l, d. F G \\U\\h\\r" -#: include/identity.php:374 include/identity.php:460 +#: include/identity.php:375 include/identity.php:461 msgid "F d" msgstr "d. F" -#: include/identity.php:419 include/identity.php:506 +#: include/identity.php:420 include/identity.php:507 msgid "[today]" msgstr "[heute]" -#: include/identity.php:431 +#: include/identity.php:432 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: include/identity.php:432 +#: include/identity.php:433 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: include/identity.php:493 +#: include/identity.php:494 msgid "[No description]" msgstr "[keine Beschreibung]" -#: include/identity.php:517 +#: include/identity.php:518 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: include/identity.php:518 +#: include/identity.php:519 msgid "Events this week:" msgstr "Veranstaltungen diese Woche" -#: include/identity.php:545 +#: include/identity.php:546 msgid "j F, Y" msgstr "j F, Y" -#: include/identity.php:546 +#: include/identity.php:547 msgid "j F" msgstr "j F" -#: include/identity.php:553 +#: include/identity.php:554 msgid "Birthday:" msgstr "Geburtstag:" -#: include/identity.php:557 +#: include/identity.php:558 msgid "Age:" msgstr "Alter:" -#: include/identity.php:566 +#: include/identity.php:567 #, php-format msgid "for %1$d %2$s" msgstr "für %1$d %2$s" -#: include/identity.php:579 +#: include/identity.php:580 msgid "Religion:" msgstr "Religion:" -#: include/identity.php:583 +#: include/identity.php:584 msgid "Hobbies/Interests:" msgstr "Hobbies/Interessen:" -#: include/identity.php:590 +#: include/identity.php:591 msgid "Contact information and Social Networks:" msgstr "Kontaktinformationen und Soziale Netzwerke:" -#: include/identity.php:592 +#: include/identity.php:593 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: include/identity.php:594 +#: include/identity.php:595 msgid "Books, literature:" msgstr "Literatur/Bücher:" -#: include/identity.php:596 +#: include/identity.php:597 msgid "Television:" msgstr "Fernsehen:" -#: include/identity.php:598 +#: include/identity.php:599 msgid "Film/dance/culture/entertainment:" msgstr "Filme/Tänze/Kultur/Unterhaltung:" -#: include/identity.php:600 +#: include/identity.php:601 msgid "Love/Romance:" msgstr "Liebesleben:" -#: include/identity.php:602 +#: include/identity.php:603 msgid "Work/employment:" msgstr "Arbeit/Beschäftigung:" -#: include/identity.php:604 +#: include/identity.php:605 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: include/identity.php:632 include/nav.php:76 +#: include/identity.php:633 include/nav.php:75 msgid "Status" msgstr "Status" -#: include/identity.php:635 +#: include/identity.php:636 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: include/identity.php:643 +#: include/identity.php:644 msgid "Profile Details" msgstr "Profildetails" -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 +#: include/identity.php:657 include/identity.php:660 include/nav.php:78 msgid "Videos" msgstr "Videos" -#: include/identity.php:670 +#: include/identity.php:672 include/nav.php:140 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: include/identity.php:678 +#: include/identity.php:680 msgid "Only You Can See This" msgstr "Nur Du kannst das sehen" @@ -6423,12 +6828,12 @@ msgid "Visible to everybody" msgstr "Für jeden sichtbar" #: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 msgid "show" msgstr "zeigen" #: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 msgid "don't show" msgstr "nicht zeigen" @@ -6440,41 +6845,34 @@ msgstr "[kein Betreff]" msgid "stopped following" msgstr "wird nicht mehr gefolgt" -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Anstupsen" - -#: include/Contact.php:233 include/conversation.php:875 +#: include/Contact.php:334 include/conversation.php:911 msgid "View Status" msgstr "Pinnwand anschauen" -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Profil anschauen" - -#: include/Contact.php:235 include/conversation.php:877 +#: include/Contact.php:336 include/conversation.php:913 msgid "View Photos" msgstr "Bilder anschauen" -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 +#: include/Contact.php:337 include/conversation.php:914 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 +#: include/Contact.php:338 include/conversation.php:915 msgid "Edit Contact" msgstr "Kontakt bearbeiten" -#: include/Contact.php:238 +#: include/Contact.php:339 msgid "Drop Contact" msgstr "Kontakt löschen" -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 +#: include/Contact.php:340 include/conversation.php:916 msgid "Send PM" msgstr "Private Nachricht senden" +#: include/Contact.php:341 include/conversation.php:920 +msgid "Poke" +msgstr "Anstupsen" + #: include/security.php:22 msgid "Welcome " msgstr "Willkommen " @@ -6493,117 +6891,200 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "Veranstaltung" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil." -#: include/conversation.php:206 +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s nimmt nicht an %2$ss %3$s teil." + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." + +#: include/conversation.php:219 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s" -#: include/conversation.php:290 +#: include/conversation.php:303 msgid "post/item" msgstr "Nachricht/Beitrag" -#: include/conversation.php:291 +#: include/conversation.php:304 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" -#: include/conversation.php:771 +#: include/conversation.php:792 msgid "remove" msgstr "löschen" -#: include/conversation.php:775 +#: include/conversation.php:796 msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: include/conversation.php:874 +#: include/conversation.php:910 msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: include/conversation.php:943 +#: include/conversation.php:1035 #, php-format msgid "%s likes this." msgstr "%s mag das." -#: include/conversation.php:943 +#: include/conversation.php:1038 #, php-format msgid "%s doesn't like this." msgstr "%s mag das nicht." -#: include/conversation.php:948 +#: include/conversation.php:1041 #, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" +msgid "%s attends." +msgstr "%s nimmt teil." -#: include/conversation.php:951 +#: include/conversation.php:1044 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" +msgid "%s doesn't attend." +msgstr "%s nimmt nicht teil." -#: include/conversation.php:965 +#: include/conversation.php:1047 +#, php-format +msgid "%s attends maybe." +msgstr "%s nimmt eventuell teil." + +#: include/conversation.php:1057 msgid "and" msgstr "und" -#: include/conversation.php:971 +#: include/conversation.php:1063 #, php-format msgid ", and %d other people" msgstr " und %d andere" -#: include/conversation.php:973 +#: include/conversation.php:1072 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:1073 #, php-format msgid "%s like this." msgstr "%s mögen das." -#: include/conversation.php:973 +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:1077 #, php-format msgid "%s don't like this." -msgstr "%s mögen das nicht." +msgstr "%s mögen dies nicht." -#: include/conversation.php:1000 include/conversation.php:1018 +#: include/conversation.php:1080 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d Personen nehmen teil" + +#: include/conversation.php:1081 +#, php-format +msgid "%s attend." +msgstr "%s nehmen teil." + +#: include/conversation.php:1084 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d Personen nehmen nicht teil" + +#: include/conversation.php:1085 +#, php-format +msgid "%s don't attend." +msgstr "%s nehmen nicht teil." + +#: include/conversation.php:1088 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "%2$d Personen nehmen eventuell teil" + +#: include/conversation.php:1089 +#, php-format +msgid "%s anttend maybe." +msgstr "%s nehmen vielleicht teil." + +#: include/conversation.php:1128 include/conversation.php:1146 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: include/conversation.php:1002 include/conversation.php:1020 +#: include/conversation.php:1130 include/conversation.php:1148 msgid "Please enter a video link/URL:" msgstr "Bitte Link/URL zum Video einfügen:" -#: include/conversation.php:1003 include/conversation.php:1021 +#: include/conversation.php:1131 include/conversation.php:1149 msgid "Please enter an audio link/URL:" msgstr "Bitte Link/URL zum Audio einfügen:" -#: include/conversation.php:1004 include/conversation.php:1022 +#: include/conversation.php:1132 include/conversation.php:1150 msgid "Tag term:" msgstr "Tag:" -#: include/conversation.php:1006 include/conversation.php:1024 +#: include/conversation.php:1134 include/conversation.php:1152 msgid "Where are you right now?" msgstr "Wo hältst Du Dich jetzt gerade auf?" -#: include/conversation.php:1007 +#: include/conversation.php:1135 msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: include/conversation.php:1076 +#: include/conversation.php:1204 msgid "permissions" msgstr "Zugriffsrechte" -#: include/conversation.php:1099 +#: include/conversation.php:1227 msgid "Post to Groups" msgstr "Poste an Gruppe" -#: include/conversation.php:1100 +#: include/conversation.php:1228 msgid "Post to Contacts" msgstr "Poste an Kontakte" -#: include/conversation.php:1101 +#: include/conversation.php:1229 msgid "Private post" msgstr "Privater Beitrag" -#: include/network.php:959 +#: include/conversation.php:1377 +msgid "View all" +msgstr "Zeige alle" + +#: include/conversation.php:1399 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "mag ich" +msgstr[1] "Mag ich" + +#: include/conversation.php:1402 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "mag ich nicht" +msgstr[1] "Mag ich nicht" + +#: include/conversation.php:1408 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Nicht teilnehmend " +msgstr[1] "Nicht teilnehmend" + +#: include/conversation.php:1411 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Unentschieden" +msgstr[1] "Unentschieden" + +#: include/network.php:967 msgid "view full size" msgstr "Volle Größe anzeigen" @@ -6650,288 +7131,203 @@ msgid_plural "%d Contacts" msgstr[0] "%d Kontakt" msgstr[1] "%d Kontakte" -#: include/text.php:1003 include/nav.php:122 +#: include/text.php:1003 include/nav.php:121 msgid "Full Text" msgstr "Volltext" -#: include/text.php:1004 include/nav.php:123 +#: include/text.php:1004 include/nav.php:122 msgid "Tags" msgstr "Tags" -#: include/text.php:1008 include/nav.php:127 +#: include/text.php:1008 include/nav.php:126 msgid "Forums" msgstr "Foren" -#: include/text.php:1058 +#: include/text.php:1059 msgid "poke" msgstr "anstupsen" -#: include/text.php:1058 +#: include/text.php:1059 msgid "poked" msgstr "stupste" -#: include/text.php:1059 +#: include/text.php:1060 msgid "ping" msgstr "anpingen" -#: include/text.php:1059 +#: include/text.php:1060 msgid "pinged" msgstr "pingte" -#: include/text.php:1060 +#: include/text.php:1061 msgid "prod" msgstr "knuffen" -#: include/text.php:1060 +#: include/text.php:1061 msgid "prodded" msgstr "knuffte" -#: include/text.php:1061 +#: include/text.php:1062 msgid "slap" msgstr "ohrfeigen" -#: include/text.php:1061 +#: include/text.php:1062 msgid "slapped" msgstr "ohrfeigte" -#: include/text.php:1062 +#: include/text.php:1063 msgid "finger" msgstr "befummeln" -#: include/text.php:1062 +#: include/text.php:1063 msgid "fingered" msgstr "befummelte" -#: include/text.php:1063 +#: include/text.php:1064 msgid "rebuff" msgstr "eine Abfuhr erteilen" -#: include/text.php:1063 +#: include/text.php:1064 msgid "rebuffed" msgstr "abfuhrerteilte" -#: include/text.php:1077 +#: include/text.php:1078 msgid "happy" msgstr "glücklich" -#: include/text.php:1078 +#: include/text.php:1079 msgid "sad" msgstr "traurig" -#: include/text.php:1079 +#: include/text.php:1080 msgid "mellow" msgstr "sanft" -#: include/text.php:1080 +#: include/text.php:1081 msgid "tired" msgstr "müde" -#: include/text.php:1081 +#: include/text.php:1082 msgid "perky" msgstr "frech" -#: include/text.php:1082 +#: include/text.php:1083 msgid "angry" msgstr "sauer" -#: include/text.php:1083 +#: include/text.php:1084 msgid "stupified" msgstr "verblüfft" -#: include/text.php:1084 +#: include/text.php:1085 msgid "puzzled" msgstr "verwirrt" -#: include/text.php:1085 +#: include/text.php:1086 msgid "interested" msgstr "interessiert" -#: include/text.php:1086 +#: include/text.php:1087 msgid "bitter" msgstr "verbittert" -#: include/text.php:1087 +#: include/text.php:1088 msgid "cheerful" msgstr "fröhlich" -#: include/text.php:1088 +#: include/text.php:1089 msgid "alive" msgstr "lebendig" -#: include/text.php:1089 +#: include/text.php:1090 msgid "annoyed" msgstr "verärgert" -#: include/text.php:1090 +#: include/text.php:1091 msgid "anxious" msgstr "unruhig" -#: include/text.php:1091 +#: include/text.php:1092 msgid "cranky" msgstr "schrullig" -#: include/text.php:1092 +#: include/text.php:1093 msgid "disturbed" msgstr "verstört" -#: include/text.php:1093 +#: include/text.php:1094 msgid "frustrated" msgstr "frustriert" -#: include/text.php:1094 +#: include/text.php:1095 msgid "motivated" msgstr "motiviert" -#: include/text.php:1095 +#: include/text.php:1096 msgid "relaxed" msgstr "entspannt" -#: include/text.php:1096 +#: include/text.php:1097 msgid "surprised" msgstr "überrascht" -#: include/text.php:1266 -msgid "Monday" -msgstr "Montag" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "Dienstag" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "Mittwoch" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "Donnerstag" - -#: include/text.php:1266 -msgid "Friday" -msgstr "Freitag" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "Samstag" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "Sonntag" - -#: include/text.php:1270 -msgid "January" -msgstr "Januar" - -#: include/text.php:1270 -msgid "February" -msgstr "Februar" - -#: include/text.php:1270 -msgid "March" -msgstr "März" - -#: include/text.php:1270 -msgid "April" -msgstr "April" - -#: include/text.php:1270 -msgid "May" -msgstr "Mai" - -#: include/text.php:1270 -msgid "June" -msgstr "Juni" - -#: include/text.php:1270 -msgid "July" -msgstr "Juli" - -#: include/text.php:1270 -msgid "August" -msgstr "August" - -#: include/text.php:1270 -msgid "September" -msgstr "September" - -#: include/text.php:1270 -msgid "October" -msgstr "Oktober" - -#: include/text.php:1270 -msgid "November" -msgstr "November" - -#: include/text.php:1270 -msgid "December" -msgstr "Dezember" - -#: include/text.php:1492 +#: include/text.php:1490 msgid "bytes" msgstr "Byte" -#: include/text.php:1524 include/text.php:1536 +#: include/text.php:1522 include/text.php:1534 msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" -#: include/text.php:1710 +#: include/text.php:1708 msgid "View on separate page" msgstr "Auf separater Seite ansehen" -#: include/text.php:1711 +#: include/text.php:1709 msgid "view on separate page" msgstr "auf separater Seite ansehen" -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "Standard" - -#: include/text.php:1780 -msgid "Select an alternate language" -msgstr "Alternative Sprache auswählen" - -#: include/text.php:2036 +#: include/text.php:1990 msgid "activity" msgstr "Aktivität" -#: include/text.php:2039 +#: include/text.php:1993 msgid "post" msgstr "Beitrag" -#: include/text.php:2207 +#: include/text.php:2161 msgid "Item filed" msgstr "Beitrag abgelegt" -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +#: include/bbcode.php:474 include/bbcode.php:1132 include/bbcode.php:1133 msgid "Image/photo" msgstr "Bild/Foto" -#: include/bbcode.php:556 +#: include/bbcode.php:572 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: include/bbcode.php:590 +#: include/bbcode.php:606 #, php-format msgid "" "%s wrote the following post" msgstr "%s schrieb den folgenden Beitrag" -#: include/bbcode.php:1076 include/bbcode.php:1096 +#: include/bbcode.php:1092 include/bbcode.php:1112 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: include/bbcode.php:1121 include/bbcode.php:1122 +#: include/bbcode.php:1141 include/bbcode.php:1142 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: include/notifier.php:830 include/delivery.php:456 +#: include/notifier.php:840 include/delivery.php:456 msgid "(no subject)" msgstr "(kein Betreff)" -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 +#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:37 msgid "noreply" msgstr "noreply" @@ -7013,8 +7409,8 @@ msgid "Diaspora Connector" msgstr "Diaspora" #: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" +msgid "GNU Social" +msgstr "GNU Social" #: include/contact_selectors.php:92 msgid "App.net" @@ -7028,11 +7424,11 @@ msgstr "Redmatrix" msgid " on Last.fm" msgstr " bei Last.fm" -#: include/bb2diaspora.php:154 include/event.php:22 +#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 msgid "Starts:" msgstr "Beginnt:" -#: include/bb2diaspora.php:162 include/event.php:32 +#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 msgid "Finishes:" msgstr "Endet:" @@ -7048,195 +7444,195 @@ msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." -#: include/nav.php:73 +#: include/nav.php:72 msgid "End this session" msgstr "Diese Sitzung beenden" -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 +#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 msgid "Your posts and conversations" msgstr "Deine Beiträge und Unterhaltungen" -#: include/nav.php:77 view/theme/diabook/theme.php:124 +#: include/nav.php:76 view/theme/diabook/theme.php:124 msgid "Your profile page" msgstr "Deine Profilseite" -#: include/nav.php:78 view/theme/diabook/theme.php:126 +#: include/nav.php:77 view/theme/diabook/theme.php:126 msgid "Your photos" msgstr "Deine Fotos" -#: include/nav.php:79 +#: include/nav.php:78 msgid "Your videos" msgstr "Deine Videos" -#: include/nav.php:80 view/theme/diabook/theme.php:127 +#: include/nav.php:79 view/theme/diabook/theme.php:127 msgid "Your events" msgstr "Deine Ereignisse" -#: include/nav.php:81 view/theme/diabook/theme.php:128 +#: include/nav.php:80 view/theme/diabook/theme.php:128 msgid "Personal notes" msgstr "Persönliche Notizen" -#: include/nav.php:81 +#: include/nav.php:80 msgid "Your personal notes" msgstr "Deine persönlichen Notizen" -#: include/nav.php:92 +#: include/nav.php:91 msgid "Sign in" msgstr "Anmelden" -#: include/nav.php:105 +#: include/nav.php:104 msgid "Home Page" msgstr "Homepage" -#: include/nav.php:109 +#: include/nav.php:108 msgid "Create an account" msgstr "Nutzerkonto erstellen" -#: include/nav.php:114 +#: include/nav.php:113 msgid "Help and documentation" msgstr "Hilfe und Dokumentation" -#: include/nav.php:117 +#: include/nav.php:116 msgid "Apps" msgstr "Apps" -#: include/nav.php:117 +#: include/nav.php:116 msgid "Addon applications, utilities, games" msgstr "Addon Anwendungen, Dienstprogramme, Spiele" -#: include/nav.php:119 +#: include/nav.php:118 msgid "Search site content" msgstr "Inhalt der Seite durchsuchen" -#: include/nav.php:137 +#: include/nav.php:136 msgid "Conversations on this site" msgstr "Unterhaltungen auf dieser Seite" -#: include/nav.php:139 +#: include/nav.php:138 msgid "Conversations on the network" msgstr "Unterhaltungen im Netzwerk" -#: include/nav.php:141 +#: include/nav.php:142 msgid "Directory" msgstr "Verzeichnis" -#: include/nav.php:141 +#: include/nav.php:142 msgid "People directory" msgstr "Nutzerverzeichnis" -#: include/nav.php:143 +#: include/nav.php:144 msgid "Information" msgstr "Information" -#: include/nav.php:143 +#: include/nav.php:144 msgid "Information about this friendica instance" msgstr "Informationen zu dieser Friendica Instanz" -#: include/nav.php:153 +#: include/nav.php:154 msgid "Conversations from your friends" msgstr "Unterhaltungen Deiner Kontakte" -#: include/nav.php:154 +#: include/nav.php:155 msgid "Network Reset" msgstr "Netzwerk zurücksetzen" -#: include/nav.php:154 +#: include/nav.php:155 msgid "Load Network page with no filters" msgstr "Netzwerk-Seite ohne Filter laden" -#: include/nav.php:161 +#: include/nav.php:162 msgid "Friend Requests" msgstr "Kontaktanfragen" -#: include/nav.php:165 +#: include/nav.php:166 msgid "See all notifications" msgstr "Alle Benachrichtigungen anzeigen" -#: include/nav.php:166 +#: include/nav.php:167 msgid "Mark all system notifications seen" msgstr "Markiere alle Systembenachrichtigungen als gelesen" -#: include/nav.php:170 +#: include/nav.php:171 msgid "Private mail" msgstr "Private E-Mail" -#: include/nav.php:171 +#: include/nav.php:172 msgid "Inbox" msgstr "Eingang" -#: include/nav.php:172 +#: include/nav.php:173 msgid "Outbox" msgstr "Ausgang" -#: include/nav.php:176 +#: include/nav.php:177 msgid "Manage" msgstr "Verwalten" -#: include/nav.php:176 +#: include/nav.php:177 msgid "Manage other pages" msgstr "Andere Seiten verwalten" -#: include/nav.php:181 +#: include/nav.php:182 msgid "Account settings" msgstr "Kontoeinstellungen" -#: include/nav.php:184 +#: include/nav.php:185 msgid "Manage/Edit Profiles" msgstr "Profile Verwalten/Editieren" -#: include/nav.php:186 +#: include/nav.php:187 msgid "Manage/edit friends and contacts" msgstr "Freunde und Kontakte verwalten/editieren" -#: include/nav.php:193 +#: include/nav.php:194 msgid "Site setup and configuration" msgstr "Einstellungen der Seite und Konfiguration" -#: include/nav.php:197 +#: include/nav.php:198 msgid "Navigation" msgstr "Navigation" -#: include/nav.php:197 +#: include/nav.php:198 msgid "Site map" msgstr "Sitemap" #: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1141 include/api.php:1143 +#: include/api.php:1151 include/api.php:1153 msgid "User not found." msgstr "Nutzer nicht gefunden." -#: include/api.php:795 +#: include/api.php:799 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:814 +#: include/api.php:818 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:833 +#: include/api.php:837 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:1350 +#: include/api.php:1360 msgid "There is no status with this id." msgstr "Es gibt keinen Status mit dieser ID." -#: include/api.php:1424 +#: include/api.php:1434 msgid "There is no conversation with this id." msgstr "Es existiert keine Unterhaltung mit dieser ID." -#: include/api.php:1703 +#: include/api.php:1713 msgid "Invalid item." msgstr "Ungültiges Objekt" -#: include/api.php:1713 +#: include/api.php:1723 msgid "Invalid action. " msgstr "Ungültige Aktion" -#: include/api.php:1721 +#: include/api.php:1731 msgid "DB error" msgstr "DB Error" @@ -7302,6 +7698,10 @@ msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." msgid "An error occurred during registration. Please try again." msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." +#: include/user.php:255 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "Standard" + #: include/user.php:265 msgid "An error occurred creating your default profile. Please try again." msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." @@ -7349,19 +7749,19 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." -#: include/diaspora.php:717 +#: include/diaspora.php:719 msgid "Sharing notification from Diaspora network" msgstr "Freigabe-Benachrichtigung von Diaspora" -#: include/diaspora.php:2560 +#: include/diaspora.php:2574 msgid "Attachments:" msgstr "Anhänge:" -#: include/items.php:4853 +#: include/items.php:4933 msgid "Do you really want to delete this item?" msgstr "Möchtest Du wirklich dieses Item löschen?" -#: include/items.php:5128 +#: include/items.php:5208 msgid "Archives" msgstr "Archiv" @@ -7417,10 +7817,6 @@ msgstr "Nicht spezifiziert" msgid "Other" msgstr "Andere" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Männer" @@ -7601,242 +7997,247 @@ msgstr "Friendica-Benachrichtigung" msgid "Thank You," msgstr "Danke," -#: include/enotify.php:23 +#: include/enotify.php:24 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" -#: include/enotify.php:64 +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrator" + +#: include/enotify.php:68 #, php-format msgid "%s " msgstr "%s " -#: include/enotify.php:78 +#: include/enotify.php:82 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" -#: include/enotify.php:80 +#: include/enotify.php:84 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt." -#: include/enotify.php:81 +#: include/enotify.php:85 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s schickte Dir %2$s." -#: include/enotify.php:81 +#: include/enotify.php:85 msgid "a private message" msgstr "eine private Nachricht" -#: include/enotify.php:82 +#: include/enotify.php:86 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: include/enotify.php:134 +#: include/enotify.php:138 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]" -#: include/enotify.php:141 +#: include/enotify.php:145 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]" -#: include/enotify.php:149 +#: include/enotify.php:153 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]" -#: include/enotify.php:159 +#: include/enotify.php:163 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s" -#: include/enotify.php:160 +#: include/enotify.php:164 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hat einen Beitrag kommentiert, dem Du folgst." -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 +#: include/enotify.php:167 include/enotify.php:182 include/enotify.php:195 +#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: include/enotify.php:170 +#: include/enotify.php:174 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben" -#: include/enotify.php:172 +#: include/enotify.php:176 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand" -#: include/enotify.php:174 +#: include/enotify.php:178 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" -#: include/enotify.php:185 +#: include/enotify.php:189 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica-Meldung] %s hat Dich erwähnt" -#: include/enotify.php:186 +#: include/enotify.php:190 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s erwähnte Dich auf %2$s" -#: include/enotify.php:187 +#: include/enotify.php:191 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]erwähnte Dich[/url]." -#: include/enotify.php:198 +#: include/enotify.php:202 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" -#: include/enotify.php:199 +#: include/enotify.php:203 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt" -#: include/enotify.php:200 +#: include/enotify.php:204 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]." -#: include/enotify.php:212 +#: include/enotify.php:216 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica-Meldung] %1$s hat Dich angestupst" -#: include/enotify.php:213 +#: include/enotify.php:217 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s hat Dich auf %2$s angestupst" -#: include/enotify.php:214 +#: include/enotify.php:218 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]." -#: include/enotify.php:229 +#: include/enotify.php:233 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt" -#: include/enotify.php:230 +#: include/enotify.php:234 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s erwähnte Deinen Beitrag auf %2$s" -#: include/enotify.php:231 +#: include/enotify.php:235 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]" -#: include/enotify.php:242 +#: include/enotify.php:246 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" -#: include/enotify.php:243 +#: include/enotify.php:247 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" -#: include/enotify.php:244 +#: include/enotify.php:248 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." -#: include/enotify.php:247 include/enotify.php:289 +#: include/enotify.php:251 include/enotify.php:293 #, php-format msgid "You may visit their profile at %s" msgstr "Hier kannst Du das Profil betrachten: %s" -#: include/enotify.php:249 +#: include/enotify.php:253 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." -#: include/enotify.php:257 +#: include/enotify.php:261 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir" -#: include/enotify.php:258 include/enotify.php:259 +#: include/enotify.php:262 include/enotify.php:263 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s teilt mit Dir auf %2$s" -#: include/enotify.php:265 +#: include/enotify.php:269 msgid "[Friendica:Notify] You have a new follower" msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " -#: include/enotify.php:266 include/enotify.php:267 +#: include/enotify.php:270 include/enotify.php:271 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" -#: include/enotify.php:280 +#: include/enotify.php:284 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" -#: include/enotify.php:281 +#: include/enotify.php:285 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten" -#: include/enotify.php:282 +#: include/enotify.php:286 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten." -#: include/enotify.php:287 +#: include/enotify.php:291 msgid "Name:" msgstr "Name:" -#: include/enotify.php:288 +#: include/enotify.php:292 msgid "Photo:" msgstr "Foto:" -#: include/enotify.php:291 +#: include/enotify.php:295 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: include/enotify.php:299 include/enotify.php:312 +#: include/enotify.php:303 include/enotify.php:316 msgid "[Friendica:Notify] Connection accepted" msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" -#: include/enotify.php:300 include/enotify.php:313 +#: include/enotify.php:304 include/enotify.php:317 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" -#: include/enotify.php:301 include/enotify.php:314 +#: include/enotify.php:305 include/enotify.php:318 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: include/enotify.php:304 +#: include/enotify.php:308 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." -#: include/enotify.php:307 include/enotify.php:321 +#: include/enotify.php:311 include/enotify.php:325 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst." -#: include/enotify.php:317 +#: include/enotify.php:321 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -7845,33 +8246,33 @@ msgid "" "automatically." msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: include/enotify.php:319 +#: include/enotify.php:323 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: include/enotify.php:332 +#: include/enotify.php:336 msgid "[Friendica System:Notify] registration request" msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" -#: include/enotify.php:333 +#: include/enotify.php:337 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: include/enotify.php:334 +#: include/enotify.php:338 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: include/enotify.php:337 +#: include/enotify.php:341 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -#: include/enotify.php:340 +#: include/enotify.php:344 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." @@ -7991,6 +8392,7 @@ msgstr "Latitude (Y) der Earth Layer" #: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 #: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/vier/config.php:111 view/theme/vier/theme.php:230 msgid "Community Pages" msgstr "Foren" @@ -8000,27 +8402,31 @@ msgid "Earth Layers" msgstr "Earth Layers" #: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 +#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 +#: view/theme/vier/theme.php:142 msgid "Community Profiles" msgstr "Community-Profile" #: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 +#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 msgid "Help or @NewHere ?" msgstr "Hilfe oder @NewHere" #: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 +#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 +#: view/theme/vier/theme.php:348 msgid "Connect Services" msgstr "Verbinde Dienste" #: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 +#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 +#: view/theme/vier/theme.php:189 msgid "Find Friends" msgstr "Freunde finden" #: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 +#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 +#: view/theme/vier/theme.php:171 msgid "Last users" msgstr "Letzte Nutzer" @@ -8042,7 +8448,7 @@ msgstr "Deine Kontakte" msgid "Your personal photos" msgstr "Deine privaten Fotos" -#: view/theme/diabook/theme.php:524 +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:190 msgid "Local Directory" msgstr "Lokales Verzeichnis" @@ -8054,10 +8460,22 @@ msgstr "Zoomfaktor der Earth Layer" msgid "Show/hide boxes at right-hand column:" msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" -#: view/theme/vier/config.php:59 +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "Komma-Separierte Liste der Helfer-Foren" + +#: view/theme/vier/config.php:110 msgid "Set style" msgstr "Stil auswählen" +#: view/theme/vier/theme.php:234 +msgid "External link to forum" +msgstr "Externer Link zum Forum" + +#: view/theme/vier/theme.php:266 +msgid "Quick Start" +msgstr "Schnell-Start" + #: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "greenzero" diff --git a/view/de/strings.php b/view/de/strings.php index a800561db6..f01a67e94a 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -69,6 +69,7 @@ $a->strings["Delete contact"] = "Lösche den Kontakt"; $a->strings["Last update:"] = "Letzte Aktualisierung: "; $a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; $a->strings["Update now"] = "Jetzt aktualisieren"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; $a->strings["Currently blocked"] = "Derzeit geblockt"; $a->strings["Currently ignored"] = "Derzeit ignoriert"; $a->strings["Currently archived"] = "Momentan archiviert"; @@ -183,16 +184,31 @@ $a->strings["Tag removed"] = "Tag entfernt"; $a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; $a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; $a->strings["Remove"] = "Entfernen"; +$a->strings["Subsribing to OStatus contacts"] = "OStatus Kontakten folgen"; +$a->strings["No contact provided."] = "Keine Kontakte gefunden."; +$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; +$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; +$a->strings["Done"] = "Erledigt"; +$a->strings["success"] = "Erfolg"; +$a->strings["failed"] = "Fehlgeschlagen"; +$a->strings["ignored"] = "Ignoriert"; +$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; $a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; $a->strings["- select -"] = "- auswählen -"; $a->strings["Save"] = "Speichern"; +$a->strings["Submit Request"] = "Anfrage abschicken"; $a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."; $a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; $a->strings["Does %s know you?"] = "Kennt %s Dich?"; $a->strings["No"] = "Nein"; $a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; $a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["Submit Request"] = "Anfrage abschicken"; +$a->strings["Location:"] = "Ort:"; +$a->strings["About:"] = "Über:"; +$a->strings["Tags:"] = "Tags"; $a->strings["Contact added"] = "Kontakt hinzugefügt"; $a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; $a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; @@ -271,8 +287,12 @@ $a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; $a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; $a->strings["Reset"] = "Zurücksetzen"; +$a->strings["event"] = "Event"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil."; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil."; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil."; $a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; $a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; $a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; @@ -303,9 +323,6 @@ $a->strings["Sharer"] = "Teilenden"; $a->strings["Fan/Admirer"] = "Fan/Verehrer"; $a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; $a->strings["New Follower"] = "Neuer Bewunderer"; -$a->strings["Location:"] = "Ort:"; -$a->strings["About:"] = "Über:"; -$a->strings["Tags:"] = "Tags"; $a->strings["Gender:"] = "Geschlecht:"; $a->strings["No introductions."] = "Keine Kontaktanfragen."; $a->strings["Notifications"] = "Benachrichtigungen"; @@ -355,29 +372,29 @@ $a->strings["Upload photo"] = "Foto hochladen"; $a->strings["Insert web link"] = "Einen Link einfügen"; $a->strings["Please wait"] = "Bitte warten"; $a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; $a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; $a->strings["You and %s"] = "Du und %s"; $a->strings["%s and You"] = "%s und Du"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; $a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; $a->strings["%d message"] = array( 0 => "%d Nachricht", 1 => "%d Nachrichten", ); -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; $a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; $a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; $a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; $a->strings["No mirroring"] = "Kein Spiegeln"; $a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; $a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; +$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; +$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; $a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; $a->strings["Name"] = "Name"; $a->strings["Account Nickname"] = "Konto-Spitzname"; @@ -394,10 +411,12 @@ $a->strings["Mark this contact as remote_self, this will cause friendica to repo $a->strings["Login"] = "Anmeldung"; $a->strings["The post was created"] = "Der Beitrag wurde angelegt"; $a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["People Search - %s"] = "Personensuche - %s"; $a->strings["Connect"] = "Verbinden"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["People Search - %s"] = "Personensuche - %s"; $a->strings["No matches"] = "Keine Übereinstimmungen"; $a->strings["Photos"] = "Bilder"; +$a->strings["Contact Photos"] = "Kontaktbilder"; $a->strings["Files"] = "Dateien"; $a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; @@ -434,6 +453,7 @@ $a->strings["Pending registrations"] = "Anstehende Anmeldungen"; $a->strings["Version"] = "Version"; $a->strings["Active plugins"] = "Aktive Plugins"; $a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen"; +$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 benötigt die PHP Extension mcrypt."; $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; $a->strings["No community page"] = "Keine Gemeinschaftsseite"; @@ -512,8 +532,8 @@ $a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."; $a->strings["Force publish"] = "Erzwinge Veröffentlichung"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."; -$a->strings["Global directory update URL"] = "URL für Updates beim weltweiten Verzeichnis"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."; +$a->strings["Global directory URL"] = "URL des weltweiten Verzeichnisses"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."; $a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen"; $a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite."; $a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer"; @@ -542,6 +562,8 @@ $a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren"; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."; $a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen"; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."; +$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."; $a->strings["Enable Diaspora support"] = "Diaspora Unterstützung aktivieren"; $a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung."; $a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben"; @@ -562,8 +584,10 @@ $a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."; $a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen"; $a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."; +$a->strings["Days between requery"] = "Tage zwischen erneuten Abfragen"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."; $a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken"; -$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."; $a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte"; $a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."; $a->strings["Search the local directory"] = "Lokales Verzeichnis durchsuchen"; @@ -656,8 +680,10 @@ $a->strings["Enable"] = "Einschalten"; $a->strings["Toggle"] = "Umschalten"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Betreuer:"; +$a->strings["Reload active plugins"] = "Aktive Plugins neu laden"; $a->strings["No themes found."] = "Keine Themen gefunden."; $a->strings["Screenshot"] = "Bildschirmfoto"; +$a->strings["Reload active themes"] = "Aktives Theme neu laden"; $a->strings["[Experimental]"] = "[Experimentell]"; $a->strings["[Unsupported]"] = "[Nicht unterstützt]"; $a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert."; @@ -697,10 +723,52 @@ $a->strings["Group: %s"] = "Gruppe: %s"; $a->strings["Contact: %s"] = "Kontakt: %s"; $a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; $a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["Friends of %s"] = "Freunde von %s"; $a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["Forum"] = "Forum"; +$a->strings["Friends of %s"] = "Freunde von %s"; $a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; +$a->strings["Sun"] = "So"; +$a->strings["Mon"] = "Mo"; +$a->strings["Tue"] = "Di"; +$a->strings["Wed"] = "Mi"; +$a->strings["Thu"] = "Do"; +$a->strings["Fri"] = "Fr"; +$a->strings["Sat"] = "Sa"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "März"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "Mai"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Juli"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sept"] = "Sep"; +$a->strings["Oct"] = "Okt"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dez"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; +$a->strings["today"] = "Heute"; +$a->strings["month"] = "Monat"; +$a->strings["week"] = "Woche"; +$a->strings["day"] = "Tag"; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Veranstaltung bearbeiten"; $a->strings["link to source"] = "Link zum Originalbeitrag"; @@ -719,6 +787,8 @@ $a->strings["Description:"] = "Beschreibung"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Veranstaltung teilen"; $a->strings["Preview"] = "Vorschau"; +$a->strings["Credits"] = "Credits"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"; $a->strings["Select"] = "Auswählen"; $a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; $a->strings["%s from %s"] = "%s von %s"; @@ -784,7 +854,7 @@ $a->strings["Your account email address must match this in order to use the web $a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; $a->strings["Site settings"] = "Server-Einstellungen"; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; -$a->strings["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. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; +$a->strings["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. See 'Setup the poller'"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Setup the poller'"; $a->strings["PHP executable path"] = "Pfad zu PHP"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; $a->strings["Command line PHP"] = "Kommandozeilen-PHP"; @@ -802,6 +872,7 @@ $a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; $a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; $a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; $a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; +$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul"; $a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; $a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; @@ -809,6 +880,9 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in $a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; $a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; $a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert"; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."; +$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function"; $a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; $a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; $a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; @@ -821,6 +895,8 @@ $a->strings["Note: as a security measure, you should give the web server write a $a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; $a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; +$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF"; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; $a->strings["

    What next

    "] = "

    Wie geht es weiter?

    "; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; @@ -838,9 +914,9 @@ $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allow $a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; $a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; $a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Profile Match"] = "Profilübereinstimmungen"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; $a->strings["is interested in:"] = "ist interessiert an:"; +$a->strings["Profile Match"] = "Profilübereinstimmungen"; $a->strings["link"] = "Link"; $a->strings["Not available."] = "Nicht verfügbar."; $a->strings["Community"] = "Gemeinschaft"; @@ -891,6 +967,9 @@ $a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen auss $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."; $a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"; $a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."; +$a->strings["Your legacy GNU Social account"] = "Dein alter GNU Social Account"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."; +$a->strings["Repair OStatus subscriptions"] = "OStatus Abonnements reparieren"; $a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; $a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "eingeschaltet"; @@ -921,6 +1000,8 @@ $a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die p $a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; $a->strings["Don't show emoticons"] = "Keine Smilies anzeigen"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Beginning of week:"] = "Wochenbeginn:"; $a->strings["Don't show notices"] = "Info-Popups nicht anzeigen"; $a->strings["Infinite scroll"] = "Endloses Scrollen"; $a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."; @@ -971,6 +1052,8 @@ $a->strings["Basic Settings"] = "Grundeinstellungen"; $a->strings["Full Name:"] = "Kompletter Name:"; $a->strings["Email Address:"] = "E-Mail-Adresse:"; $a->strings["Your Timezone:"] = "Deine Zeitzone:"; +$a->strings["Your Language:"] = "Deine Sprache:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"; $a->strings["Default Post Location:"] = "Standardstandort:"; $a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; $a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; @@ -1054,7 +1137,7 @@ $a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; $a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; $a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; $a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"; $a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; $a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; @@ -1063,16 +1146,20 @@ $a->strings["Register"] = "Registrieren"; $a->strings["Import"] = "Import"; $a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; $a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; +$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet."; +$a->strings["Too Many Requests"] = "Zu viele Abfragen"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."; $a->strings["Search"] = "Suche"; $a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; $a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Site Directory"] = "Verzeichnis"; $a->strings["Age: "] = "Alter: "; $a->strings["Gender: "] = "Geschlecht:"; $a->strings["Status:"] = "Status:"; $a->strings["Homepage:"] = "Homepage:"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Finding:"] = "Funde:"; +$a->strings["Site Directory"] = "Verzeichnis"; $a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; $a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; $a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; @@ -1082,8 +1169,8 @@ $a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die S $a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; $a->strings["Add"] = "Hinzufügen"; $a->strings["No entries."] = "Keine Einträge."; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; $a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; $a->strings["Export account"] = "Account exportieren"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; $a->strings["Export all"] = "Alles exportieren"; @@ -1092,9 +1179,9 @@ $a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; $a->strings["Mood"] = "Stimmung"; $a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; $a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; $a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; $a->strings["Profile deleted."] = "Profil gelöscht."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Neues Profil angelegt."; @@ -1121,6 +1208,7 @@ $a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; $a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"; +$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:"; $a->strings["Edit Profile Details"] = "Profil bearbeiten"; $a->strings["Change Profile Photo"] = "Profilbild ändern"; $a->strings["View this profile"] = "Dieses Profil anzeigen"; @@ -1222,6 +1310,8 @@ $a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder $a->strings["Recipient"] = "Empfänger"; $a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:"; $a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["Resubsribing to OStatus contacts"] = "Erneuern der OStatus Abonements"; +$a->strings["Error"] = "Fehler"; $a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; $a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; $a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; @@ -1242,7 +1332,6 @@ $a->strings["You are cordially invited to join me and other close friends on Fri $a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; -$a->strings["Contact Photos"] = "Kontaktbilder"; $a->strings["Photo Albums"] = "Fotoalben"; $a->strings["Recent Photos"] = "Neueste Fotos"; $a->strings["Upload New Photos"] = "Neue Fotos hochladen"; @@ -1286,6 +1375,13 @@ $a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; $a->strings["Private photo"] = "Privates Foto"; $a->strings["Public photo"] = "Öffentliches Foto"; $a->strings["Share"] = "Teilen"; +$a->strings["Attending"] = array( + 0 => "Teilnehmend", + 1 => "Teilnehmend", +); +$a->strings["Not attending"] = "Nicht teilnehmend"; +$a->strings["Might attend"] = "Eventuell teilnehmend"; +$a->strings["Map"] = "Karte"; $a->strings["Not Extended"] = "Nicht erweitert."; $a->strings["Account approved."] = "Konto freigegeben."; $a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; @@ -1293,7 +1389,7 @@ $a->strings["Please login."] = "Bitte melde Dich an."; $a->strings["Move account"] = "Account umziehen"; $a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; $a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"; $a->strings["Account file"] = "Account Datei"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; $a->strings["Item not available."] = "Beitrag nicht verfügbar."; @@ -1313,10 +1409,12 @@ $a->strings["terms of service"] = "Nutzungsbedingungen"; $a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; $a->strings["privacy policy"] = "Datenschutzerklärung"; $a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["I will attend"] = "Ich werde teilnehmen"; +$a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; +$a->strings["I might attend"] = "Ich werde eventuell teilnehmen"; $a->strings["ignore thread"] = "Thread ignorieren"; $a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; $a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["ignored"] = "Ignoriert"; $a->strings["Categories:"] = "Kategorien:"; $a->strings["Filed under:"] = "Abgelegt unter:"; $a->strings["via"] = "via"; @@ -1336,7 +1434,6 @@ $a->strings["%d invitation available"] = array( ); $a->strings["Find People"] = "Leute finden"; $a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; $a->strings["Similar Interests"] = "Ähnliche Interessen"; $a->strings["Random Profile"] = "Zufälliges Profil"; @@ -1349,6 +1446,8 @@ $a->strings["Categories"] = "Kategorien"; $a->strings["General Features"] = "Allgemeine Features"; $a->strings["Multiple Profiles"] = "Mehrere Profile"; $a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; +$a->strings["Photo Location"] = "Aufnahmeort"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."; $a->strings["Post Composition Features"] = "Beitragserstellung Features"; $a->strings["Richtext Editor"] = "Web-Editor"; $a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren"; @@ -1412,11 +1511,8 @@ $a->strings["never"] = "nie"; $a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; $a->strings["year"] = "Jahr"; $a->strings["years"] = "Jahre"; -$a->strings["month"] = "Monat"; $a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; $a->strings["weeks"] = "Wochen"; -$a->strings["day"] = "Tag"; $a->strings["days"] = "Tage"; $a->strings["hour"] = "Stunde"; $a->strings["hours"] = "Stunden"; @@ -1469,19 +1565,20 @@ $a->strings["show"] = "zeigen"; $a->strings["don't show"] = "nicht zeigen"; $a->strings["[no subject]"] = "[kein Betreff]"; $a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Poke"] = "Anstupsen"; $a->strings["View Status"] = "Pinnwand anschauen"; -$a->strings["View Profile"] = "Profil anschauen"; $a->strings["View Photos"] = "Bilder anschauen"; $a->strings["Network Posts"] = "Netzwerkbeiträge"; $a->strings["Edit Contact"] = "Kontakt bearbeiten"; $a->strings["Drop Contact"] = "Kontakt löschen"; $a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings["Poke"] = "Anstupsen"; $a->strings["Welcome "] = "Willkommen "; $a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; $a->strings["Welcome back "] = "Willkommen zurück "; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; -$a->strings["event"] = "Veranstaltung"; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil."; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil."; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil."; $a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; $a->strings["post/item"] = "Nachricht/Beitrag"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; @@ -1490,12 +1587,21 @@ $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; $a->strings["Follow Thread"] = "Folge der Unterhaltung"; $a->strings["%s likes this."] = "%s mag das."; $a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["%s attends."] = "%s nimmt teil."; +$a->strings["%s doesn't attend."] = "%s nimmt nicht teil."; +$a->strings["%s attends maybe."] = "%s nimmt eventuell teil."; $a->strings["and"] = "und"; $a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; $a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["%s don't like this."] = "%s mögen dies nicht."; +$a->strings["%2\$d people attend"] = "%2\$d Personen nehmen teil"; +$a->strings["%s attend."] = "%s nehmen teil."; +$a->strings["%2\$d people don't attend"] = "%2\$d Personen nehmen nicht teil"; +$a->strings["%s don't attend."] = "%s nehmen nicht teil."; +$a->strings["%2\$d people anttend maybe"] = "%2\$d Personen nehmen eventuell teil"; +$a->strings["%s anttend maybe."] = "%s nehmen vielleicht teil."; $a->strings["Visible to everybody"] = "Für jedermann sichtbar"; $a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; $a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; @@ -1506,6 +1612,23 @@ $a->strings["permissions"] = "Zugriffsrechte"; $a->strings["Post to Groups"] = "Poste an Gruppe"; $a->strings["Post to Contacts"] = "Poste an Kontakte"; $a->strings["Private post"] = "Privater Beitrag"; +$a->strings["View all"] = "Zeige alle"; +$a->strings["Like"] = array( + 0 => "mag ich", + 1 => "Mag ich", +); +$a->strings["Dislike"] = array( + 0 => "mag ich nicht", + 1 => "Mag ich nicht", +); +$a->strings["Not Attending"] = array( + 0 => "Nicht teilnehmend ", + 1 => "Nicht teilnehmend", +); +$a->strings["Undecided"] = array( + 0 => "Unentschieden", + 1 => "Unentschieden", +); $a->strings["view full size"] = "Volle Größe anzeigen"; $a->strings["newer"] = "neuer"; $a->strings["older"] = "älter"; @@ -1555,31 +1678,10 @@ $a->strings["frustrated"] = "frustriert"; $a->strings["motivated"] = "motiviert"; $a->strings["relaxed"] = "entspannt"; $a->strings["surprised"] = "überrascht"; -$a->strings["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; $a->strings["bytes"] = "Byte"; $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; $a->strings["View on separate page"] = "Auf separater Seite ansehen"; $a->strings["view on separate page"] = "auf separater Seite ansehen"; -$a->strings["default"] = "Standard"; -$a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["activity"] = "Aktivität"; $a->strings["post"] = "Beitrag"; $a->strings["Item filed"] = "Beitrag abgelegt"; @@ -1609,7 +1711,7 @@ $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; $a->strings["Diaspora Connector"] = "Diaspora"; -$a->strings["Statusnet"] = "StatusNet"; +$a->strings["GNU Social"] = "GNU Social"; $a->strings["App.net"] = "App.net"; $a->strings["Redmatrix"] = "Redmatrix"; $a->strings[" on Last.fm"] = " bei Last.fm"; @@ -1680,6 +1782,7 @@ $a->strings["Nickname is already registered. Please choose another."] = "Dieser $a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; $a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["default"] = "Standard"; $a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; $a->strings["Friends"] = "Freunde"; $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; @@ -1701,7 +1804,6 @@ $a->strings["Hermaphrodite"] = "Hermaphrodit"; $a->strings["Neuter"] = "Neuter"; $a->strings["Non-specific"] = "Nicht spezifiziert"; $a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = "Unentschieden"; $a->strings["Males"] = "Männer"; $a->strings["Females"] = "Frauen"; $a->strings["Gay"] = "Schwul"; @@ -1748,6 +1850,7 @@ $a->strings["Ask me"] = "Frag mich"; $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator"; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt."; @@ -1846,7 +1949,10 @@ $a->strings["Your personal photos"] = "Deine privaten Fotos"; $a->strings["Local Directory"] = "Lokales Verzeichnis"; $a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; $a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; +$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren"; $a->strings["Set style"] = "Stil auswählen"; +$a->strings["External link to forum"] = "Externer Link zum Forum"; +$a->strings["Quick Start"] = "Schnell-Start"; $a->strings["greenzero"] = "greenzero"; $a->strings["purplezero"] = "purplezero"; $a->strings["easterbunny"] = "easterbunny"; diff --git a/view/fonts/README.md b/view/fonts/README.md new file mode 100644 index 0000000000..ca35ddadbf --- /dev/null +++ b/view/fonts/README.md @@ -0,0 +1,21 @@ +ShaShape Font +============= + +Font created by Andi Stadler for the Friendica project. + +History +------- + +The iconset started from the new default user avatar (letter "p") Andi made for the Hackathon 2014 in Berlin. To accompany that avatar, he developed the other icons. + +License +------- + +The iconset is published unter the [CC-BY-SA 4.0][cc] license. + +Preview +------- + +![](shashape.jpg) + +[cc]: https://creativecommons.org/licenses/by-sa/4.0 diff --git a/view/fonts/friendica_shashape.ttf b/view/fonts/friendica_shashape.ttf new file mode 100644 index 0000000000..0bb5a577a0 Binary files /dev/null and b/view/fonts/friendica_shashape.ttf differ diff --git a/view/fonts/shashape.css b/view/fonts/shashape.css new file mode 100644 index 0000000000..b34cac7980 --- /dev/null +++ b/view/fonts/shashape.css @@ -0,0 +1,218 @@ +/* + * Friendica ShaShape font by Andi Stadler, 2015 + */ + +@font-face { + font-family: 'ShaShape'; + src: url('friendica_shashape.ttf') format('truetype'); +} +.shashape { + font-family: ShaShape; + font-weight: normal; + font-style: normal; +} +.shashape.friendica:before { + content: "3"; +} +.shashape.archive:before{ + content: "a"; +} +.shashape.base:before{ + content: "b"; +} +.shashape.cloud:before{ + content: "c"; +} +.shashape.download:before{ + content: "d"; +} +.shashape.event:before{ + content: "e"; +} +.shashape.friends:before{ + content: "f"; +} +.shashape.group:before{ + content: "g"; +} +.shashape.home:before{ + content: "h"; +} +.shashape.iglu:before{ + content: "i"; +} +.shashape.flag:before{ + content: "j"; +} +.shashape.star:before{ + content: "k"; +} +.shashape.star-full:before{ + content: "l"; +} +.shashape.message:before{ + content: "m"; +} +.shashape.network:before{ + content: "n"; +} +.shashape.settings:before{ + content: "o"; +} +.shashape.profile:before{ + content: "p"; +} +.shashape.skip:before{ + content: "q"; +} +.shashape.reload:before{ + content: "r"; +} +.shashape.search:before{ + content: "s"; +} +.shashape.time:before{ + content: "t"; +} +.shashape.undo:before{ + content: "u"; +} +.shashape.logout:before, +.shashape.logged-in:before{ + content: "v"; +} +.shashape.login:before, +.shashape.logged-out:before{ + content: "w"; +} +.shashape.delete:before{ + content: "x"; +} +.shashape.source:before{ + content: "y"; +} +.shashape.signature:before{ + content: "z"; +} +.shashape.like:before{ + content: "A"; +} +.shashape.hesitate:before{ + content: "B"; +} +.shashape.unlike:before, +.shashape.nolike:before{ + content: "C"; +} +/* uppercase D is not defined at the moment + .shashape.hash:before{ + content: "D"; +} */ +.shashape.arrow7:before{ + content: "E"; +} +.shashape.follow:before{ + content: "F"; +} +.shashape.follower:before{ + content: "G"; +} +.shashape.hand:before{ + content: "H"; +} +.shashape.help:before{ + content: "I"; +} +.shashape.arrow-leftright:before{ + content: "J"; +} +.shashape.arrow-updown:before{ + content: "K"; +} +/* uppercase L is not defined at the moment +.shashape.lock:before{ + content: "L"; +} */ +.shashape.arrow-left:before{ + content: "M"; +} +.shashape.arrow-right:before{ + content: "N"; +} +.shashape.setting2:before, +.shashape.admin:before{ + content: "O"; +} +.shashape.arrow-down:before{ + content: "P"; +} +.shashape.arrow-up:before{ + content: "Q"; +} +.shashape.request:before{ + content: "R"; +} +.shashape.arrow-up2:before{ + content: "S"; +} +.shashape.arrow-down2:before{ + content: "T"; +} +.shashape.arrow-left2:before{ + content: "U"; +} +.shashape.arrow-right2:before{ + content: "V"; +} +.shashape.arrow-updown2:before{ + content: "W"; +} +.shashape.arrow-leftright2:before{ + content: "X"; +} +.shashape.arrow-leftright3:before{ + content: "Y"; +} +.shashape.arrow-updown3:before{ + content: "Z"; +} +.shashape.hash:before{ + content: "/"; +} +.shashape.tag:before{ + content: "="; +} +.shashape.lock-open:before{ + content: "?"; +} +.shashape.lock-closed:before{ + content: ")"; +} +.shashape.yes:before{ + content: "+"; +} +.shashape.hmm:before{ + content: ","; +} +.shashape.no:before{ + content: "-"; +} +.shashape.blank:before{ + content: "."; +} +.shashape.see:before{ + content: ":"; +} +.shashape.blind:before{ + content: ";"; +} +.shashape.edit:before{ + content: "<"; +} +.shashape.stamp:before{ + content: ">"; +} +.shashape.heart:before{ + content: "_"; +} + diff --git a/view/fonts/shashape.jpg b/view/fonts/shashape.jpg new file mode 100644 index 0000000000..a4f20ce645 Binary files /dev/null and b/view/fonts/shashape.jpg differ diff --git a/view/global.css b/view/global.css index c2f5840039..24d0819db5 100644 --- a/view/global.css +++ b/view/global.css @@ -212,3 +212,104 @@ a { clip: rect(0,0,0,0); border: 0; } + +.itentity-match-wrapper { + float: left; + padding: 10px; + width: 120px; + height: 140px; + margin-bottom: 20px; +} + +.identity-match-photo { + float: left; + text-align: center; + width: 120px; +} + +.identity-match-name { + text-align: center; +} + +.identity-match-details { + float: left; + text-align: center; + width: 120px; + overflow: hidden; + font-size: 10px; + font-weight: 500; + color: #999999; +} + +.identity-match-break, .identity-match-end { + clear: both; +} + +.identity-match-photo button { + border: none; + padding: 0; + margin: 0; + background: none; + height: 80px; + width: 80px; + cursor: pointer; +} + +.selected-identity img { + border: 2px solid #ff0000; +} +/* poke */ +#poke-desc { + margin: 5px 0 10px; +} + +#poke-wrapper { + padding: 10px 0 0px; +} + +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} + +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 10px; +} +ul.credits { + list-style: none; +} +ul.credits li { + float: left; + width: 240px; +} + +.contact-entry-photo img { + max-width: 80px; + max-height: 80px; +} + +/* forumlist widget */ +#hide-forum-list { + opacity: 0.3; + filter:alpha(opacity=30); +} + +#hide-forum-list:hover { + opacity: 1.0; + filter:alpha(opacity=100); +} + + +#forumlist-settings-label, #forumlist-random-label, #forumlist-profile-label, #forumlist-network-label { + float: left; + width: 200px; + margin-bottom: 25px; +} + +#forumlist-max-forumlists, #forumlist-random, #forumlist-profile, #forumlist-network { + float: left; +} + +.forumlist-img { + height: 20px; + width: 20px; +} diff --git a/view/install/green.png b/view/install/green.png new file mode 100644 index 0000000000..a4de276be9 Binary files /dev/null and b/view/install/green.png differ diff --git a/view/install/info.png b/view/install/info.png new file mode 100644 index 0000000000..760eca5c3c Binary files /dev/null and b/view/install/info.png differ diff --git a/view/install/red.png b/view/install/red.png new file mode 100644 index 0000000000..fcd655bf65 Binary files /dev/null and b/view/install/red.png differ diff --git a/view/install/style.css b/view/install/style.css new file mode 100644 index 0000000000..2f995d5993 --- /dev/null +++ b/view/install/style.css @@ -0,0 +1,58 @@ +/*** + * Friendica Communcation Server + * + * This is the static css for the install procedure + */ + +body { + background-color: #FFF; + max-width: 750px; + margin: 0 auto; +} + +section { + background-color: rgb(252, 252, 252); + padding: 0.5em 2em; +} + +h1 img { + vertical-align: sub; +} + +td { + padding: 0.2em; + border-bottom: 1px solid rgb(238, 238, 238); +} +td.help { + border-width: 0px 0px 2px 2px; + border-style: solid; + border-color: #000; + background: transparent url("/friendica/view/install/info.png") no-repeat scroll 5px 5px; +} +td.help blockquote { + margin-left: 60px; +} +input[type="submit"] { + margin: 2em 0; +} + +tt { + background-color: rgb(238, 238, 238); + padding: 0.1em 0.2em; +} + +.field { + margin-bottom: 0.5em; +} +.field label, +.field input, .field select, .field textarea { + width: 100%; + display: block; +} +.field .field_help { + color: #999; + text-align: right; + width: 100%; + display: block; + font-size: 0.8em; +} diff --git a/view/install/yellow.png b/view/install/yellow.png new file mode 100644 index 0000000000..52b31f3d34 Binary files /dev/null and b/view/install/yellow.png differ diff --git a/view/it/messages.po b/view/it/messages.po index 292e417db5..efe44618a7 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-01 07:09+0200\n" -"PO-Revision-Date: 2015-09-01 12:05+0000\n" +"POT-Creation-Date: 2015-09-22 09:58+0200\n" +"PO-Revision-Date: 2015-10-06 17:43+0000\n" "Last-Translator: Sandro Santilli \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,3084 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" + +#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 +msgid "Private Message" +msgstr "Messaggio privato" + +#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 +msgid "Edit" +msgstr "Modifica" + +#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 +#: mod/content.php:742 include/conversation.php:612 +msgid "Select" +msgstr "Seleziona" + +#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 +#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 +#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 +msgid "Delete" +msgstr "Rimuovi" + +#: object/Item.php:134 mod/content.php:765 +msgid "save to folder" +msgstr "salva nella cartella" + +#: object/Item.php:196 mod/content.php:755 +msgid "add star" +msgstr "aggiungi a speciali" + +#: object/Item.php:197 mod/content.php:756 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: object/Item.php:198 mod/content.php:757 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: object/Item.php:201 mod/content.php:760 +msgid "starred" +msgstr "preferito" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "ignora la discussione" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "non ignorare la discussione" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" + +#: object/Item.php:214 mod/ostatus_subscribe.php:69 +msgid "ignored" +msgstr "ignorato" + +#: object/Item.php:221 mod/content.php:761 +msgid "add tag" +msgstr "aggiungi tag" + +#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: object/Item.php:232 mod/content.php:686 +msgid "like" +msgstr "mi piace" + +#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: object/Item.php:233 mod/content.php:687 +msgid "dislike" +msgstr "non mi piace" + +#: object/Item.php:235 mod/content.php:689 +msgid "Share this" +msgstr "Condividi questo" + +#: object/Item.php:235 mod/content.php:689 +msgid "share" +msgstr "condividi" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Categorie:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: object/Item.php:328 object/Item.php:329 mod/content.php:473 +#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: object/Item.php:330 mod/content.php:856 +msgid "to" +msgstr "a" + +#: object/Item.php:331 +msgid "via" +msgstr "via" + +#: object/Item.php:332 mod/content.php:857 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: object/Item.php:333 mod/content.php:858 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: object/Item.php:342 mod/content.php:483 mod/content.php:866 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 +#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 +msgid "Comment" +msgstr "Commento" + +#: object/Item.php:366 mod/message.php:335 mod/message.php:566 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 +#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Attendi" + +#: object/Item.php:389 mod/content.php:605 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: object/Item.php:391 object/Item.php:404 mod/content.php:607 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 +#: include/contact_widgets.php:205 +msgid "show more" +msgstr "mostra di più" + +#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 mod/content.php:709 +msgid "This is you" +msgstr "Questo sei tu" + +#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 +#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 +#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 +#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 +#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 +#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 +#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 +#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 +#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 +#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/cleanzero/config.php:80 +msgid "Submit" +msgstr "Invia" + +#: object/Item.php:681 mod/content.php:713 +msgid "Bold" +msgstr "Grassetto" + +#: object/Item.php:682 mod/content.php:714 +msgid "Italic" +msgstr "Corsivo" + +#: object/Item.php:683 mod/content.php:715 +msgid "Underline" +msgstr "Sottolineato" + +#: object/Item.php:684 mod/content.php:716 +msgid "Quote" +msgstr "Citazione" + +#: object/Item.php:685 mod/content.php:717 +msgid "Code" +msgstr "Codice" + +#: object/Item.php:686 mod/content.php:718 +msgid "Image" +msgstr "Immagine" + +#: object/Item.php:687 mod/content.php:719 +msgid "Link" +msgstr "Link" + +#: object/Item.php:688 mod/content.php:720 +msgid "Video" +msgstr "Video" + +#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: mod/content.php:721 include/conversation.php:1089 +msgid "Preview" +msgstr "Anteprima" + +#: index.php:225 mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." + +#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 +msgid "Not Found" +msgstr "Non trovato" + +#: index.php:272 mod/help.php:45 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: index.php:381 mod/profperm.php:19 mod/group.php:72 +msgid "Permission denied" +msgstr "Permesso negato" + +#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 +#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 +#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 +#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 +#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 +#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 +#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 +#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 +#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 +#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 +#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 +#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 +#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 +#: mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 +#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 +#: mod/crepair.php:120 include/items.php:5036 +msgid "Permission denied." +msgstr "Permesso negato." + +#: index.php:441 +msgid "toggle mobile" +msgstr "commuta tema mobile" + +#: mod/update_notes.php:37 mod/update_profile.php:41 +#: mod/update_community.php:18 mod/update_network.php:25 +#: mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: mod/dfrn_request.php:576 mod/contacts.php:194 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Conferma" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 +#: mod/search.php:93 mod/search.php:98 mod/display.php:223 +#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 +msgid "Public access denied." +msgstr "Accesso negato." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" + +#: mod/dfrn_request.php:840 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" + +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: mod/dfrn_request.php:846 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:847 mod/follow.php:58 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: mod/dfrn_request.php:848 mod/follow.php:59 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 +#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 +#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 +#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 +#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 +#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 +#: mod/profiles.php:662 +msgid "No" +msgstr "No" + +#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 +#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 +#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 +#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 +#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 +#: mod/suggest.php:29 include/items.php:4868 +msgid "Yes" +msgstr "Si" + +#: mod/dfrn_request.php:852 mod/follow.php:60 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:856 mod/settings.php:793 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/dfrn_request.php:857 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." + +#: mod/dfrn_request.php:858 mod/follow.php:66 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: mod/dfrn_request.php:861 mod/follow.php:69 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 +#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 +#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 +#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 +#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 +#: include/conversation.php:1093 +msgid "Cancel" +msgstr "Annulla" + +#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Guarda Video" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: mod/profile.php:155 mod/display.php:343 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Scarta" + +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 +#: mod/contacts.php:799 +msgid "Ignore" +msgstr "Ignora" + +#: mod/notifications.php:78 +msgid "System" +msgstr "Sistema" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Rete" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Personale" + +#: mod/notifications.php:96 view/theme/diabook/theme.php:123 +#: include/nav.php:105 include/nav.php:156 +msgid "Home" +msgstr "Home" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Presentazioni" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Amico suggerito" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" + +#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "se applicabile" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 +msgid "Approve" +msgstr "Approva" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "si" + +#: mod/notifications.php:191 +msgid "no" +msgstr "no" + +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: mod/notifications.php:203 +msgid "Friend" +msgstr "Amico" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Condivisore" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/event.php:42 include/identity.php:268 +#: include/bb2diaspora.php:170 +msgid "Location:" +msgstr "Posizione:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:582 +msgid "About:" +msgstr "Informazioni:" + +#: mod/notifications.php:224 include/identity.php:576 +msgid "Tags:" +msgstr "Tag:" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "Genere:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Notifiche" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:471 include/text.php:2034 +#: include/diaspora.php:2134 include/conversation.php:126 +#: include/conversation.php:253 +msgid "photo" +msgstr "foto" + +#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: include/diaspora.php:2134 include/conversation.php:121 +#: include/conversation.php:130 include/conversation.php:248 +#: include/conversation.php:257 +msgid "status" +msgstr "stato" + +#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 +#: include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Sorgente (formato Diaspora):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: mod/admin.php:104 mod/admin.php:687 +msgid "Site" +msgstr "Sito" + +#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093 +msgid "Users" +msgstr "Utenti" + +#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugin" + +#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444 +msgid "Themes" +msgstr "Temi" + +#: mod/admin.php:108 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Ispeziona Coda di invio" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531 +msgid "Logs" +msgstr "Log" + +#: mod/admin.php:125 +msgid "probe address" +msgstr "controlla indirizzo" + +#: mod/admin.php:126 +msgid "check webfinger" +msgstr "verifica webfinger" + +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Amministrazione" + +#: mod/admin.php:132 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: mod/admin.php:134 +msgid "diagnostics" +msgstr "diagnostiche" + +#: mod/admin.php:135 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 include/items.php:4827 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 +#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 +#: mod/admin.php:1530 +msgid "Administration" +msgstr "Amministrazione" + +#: mod/admin.php:202 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Nome Destinatario" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Profilo Destinatario" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Creato" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Ultimo Tentativo" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire." + +#: mod/admin.php:220 mod/admin.php:1031 +msgid "Normal Account" +msgstr "Account normale" + +#: mod/admin.php:221 mod/admin.php:1032 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: mod/admin.php:222 mod/admin.php:1033 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: mod/admin.php:223 mod/admin.php:1034 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Account Blog" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Forum Privato" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Code messaggi" + +#: mod/admin.php:250 +msgid "Summary" +msgstr "Sommario" + +#: mod/admin.php:252 +msgid "Registered users" +msgstr "Utenti registrati" + +#: mod/admin.php:254 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: mod/admin.php:255 +msgid "Version" +msgstr "Versione" + +#: mod/admin.php:260 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: mod/admin.php:283 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" + +#: mod/admin.php:556 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:564 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: mod/admin.php:599 mod/settings.php:885 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: mod/admin.php:616 +msgid "No community page" +msgstr "Nessuna pagina Comunità" + +#: mod/admin.php:617 +msgid "Public postings from users of this site" +msgstr "Messaggi pubblici dagli utenti di questo sito" + +#: mod/admin.php:618 +msgid "Global community page" +msgstr "Pagina Comunità globale" + +#: mod/admin.php:623 mod/contacts.php:526 +msgid "Never" +msgstr "Mai" + +#: mod/admin.php:624 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" + +#: mod/admin.php:625 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: mod/admin.php:626 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: mod/admin.php:627 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: mod/admin.php:628 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" + +#: mod/admin.php:632 mod/contacts.php:585 +msgid "Disabled" +msgstr "Disabilitato" + +#: mod/admin.php:634 +msgid "Users, Global Contacts" +msgstr "Utenti, Contatti Globali" + +#: mod/admin.php:635 +msgid "Users, Global Contacts/fallback" +msgstr "Utenti, Contatti Globali/fallback" + +#: mod/admin.php:639 +msgid "One month" +msgstr "Un mese" + +#: mod/admin.php:640 +msgid "Three months" +msgstr "Tre mesi" + +#: mod/admin.php:641 +msgid "Half a year" +msgstr "Sei mesi" + +#: mod/admin.php:642 +msgid "One year" +msgstr "Un anno" + +#: mod/admin.php:647 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: mod/admin.php:670 +msgid "Closed" +msgstr "Chiusa" + +#: mod/admin.php:671 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: mod/admin.php:672 +msgid "Open" +msgstr "Aperta" + +#: mod/admin.php:676 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" + +#: mod/admin.php:677 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: mod/admin.php:678 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" + +#: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 +#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: mod/admin.php:689 mod/register.php:260 +msgid "Registration" +msgstr "Registrazione" + +#: mod/admin.php:690 +msgid "File upload" +msgstr "Caricamento file" + +#: mod/admin.php:691 +msgid "Policies" +msgstr "Politiche" + +#: mod/admin.php:692 +msgid "Advanced" +msgstr "Avanzate" + +#: mod/admin.php:693 +msgid "Auto Discovered Contact Directory" +msgstr "Elenco Contatti Scoperto Automaticamente" + +#: mod/admin.php:694 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:695 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." + +#: mod/admin.php:698 +msgid "Site name" +msgstr "Nome del sito" + +#: mod/admin.php:699 +msgid "Host name" +msgstr "Nome host" + +#: mod/admin.php:700 +msgid "Sender Email" +msgstr "Mittente email" + +#: mod/admin.php:700 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." + +#: mod/admin.php:701 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:702 +msgid "Shortcut icon" +msgstr "Icona shortcut" + +#: mod/admin.php:702 +msgid "Link to an icon that will be used for browsers." +msgstr "Link verso un'icona che verrà usata dai browsers." + +#: mod/admin.php:703 +msgid "Touch icon" +msgstr "Icona touch" + +#: mod/admin.php:703 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." + +#: mod/admin.php:704 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" + +#: mod/admin.php:704 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." + +#: mod/admin.php:705 +msgid "System language" +msgstr "Lingua di sistema" + +#: mod/admin.php:706 +msgid "System theme" +msgstr "Tema di sistema" + +#: mod/admin.php:706 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" + +#: mod/admin.php:707 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: mod/admin.php:707 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: mod/admin.php:708 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: mod/admin.php:708 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se i link generati devono essere forzati a usare SSL" + +#: mod/admin.php:709 +msgid "Force SSL" +msgstr "Forza SSL" + +#: mod/admin.php:709 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" + +#: mod/admin.php:710 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" + +#: mod/admin.php:710 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" + +#: mod/admin.php:711 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: mod/admin.php:711 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." + +#: mod/admin.php:712 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: mod/admin.php:712 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" + +#: mod/admin.php:713 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: mod/admin.php:713 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." + +#: mod/admin.php:714 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: mod/admin.php:714 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." + +#: mod/admin.php:715 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: mod/admin.php:715 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." + +#: mod/admin.php:717 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: mod/admin.php:718 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: mod/admin.php:718 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." + +#: mod/admin.php:719 +msgid "Register text" +msgstr "Testo registrazione" + +#: mod/admin.php:719 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: mod/admin.php:720 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: mod/admin.php:720 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." + +#: mod/admin.php:721 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: mod/admin.php:721 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:722 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: mod/admin.php:722 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:723 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: mod/admin.php:723 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." + +#: mod/admin.php:724 +msgid "Force publish" +msgstr "Forza publicazione" + +#: mod/admin.php:724 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." + +#: mod/admin.php:725 +msgid "Global directory URL" +msgstr "URL della directory globale" + +#: mod/admin.php:725 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:726 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: mod/admin.php:726 +msgid "Allow infinite level threading for items on this site." +msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." + +#: mod/admin.php:727 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: mod/admin.php:727 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." + +#: mod/admin.php:728 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: mod/admin.php:728 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" + +#: mod/admin.php:729 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." + +#: mod/admin.php:729 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" + +#: mod/admin.php:730 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" + +#: mod/admin.php:730 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." + +#: mod/admin.php:731 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" + +#: mod/admin.php:731 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." + +#: mod/admin.php:732 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: mod/admin.php:732 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Non permette all'utente di registrare account extra da usare come pagine." + +#: mod/admin.php:733 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: mod/admin.php:733 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: mod/admin.php:734 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: mod/admin.php:734 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" + +#: mod/admin.php:735 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: mod/admin.php:735 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: mod/admin.php:736 +msgid "Community Page Style" +msgstr "Stile pagina Comunità" + +#: mod/admin.php:736 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." + +#: mod/admin.php:737 +msgid "Posts per user on community page" +msgstr "Messaggi per utente nella pagina Comunità" + +#: mod/admin.php:737 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" + +#: mod/admin.php:738 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: mod/admin.php:738 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." + +#: mod/admin.php:739 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" + +#: mod/admin.php:739 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." + +#: mod/admin.php:740 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: mod/admin.php:740 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: mod/admin.php:741 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: mod/admin.php:741 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." + +#: mod/admin.php:742 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: mod/admin.php:742 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." + +#: mod/admin.php:743 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: mod/admin.php:744 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: mod/admin.php:745 +msgid "Network timeout" +msgstr "Timeout rete" + +#: mod/admin.php:745 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." + +#: mod/admin.php:746 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: mod/admin.php:746 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." + +#: mod/admin.php:747 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: mod/admin.php:747 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." + +#: mod/admin.php:748 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: mod/admin.php:748 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." + +#: mod/admin.php:749 +msgid "Maximum Load Average (Frontend)" +msgstr "Media Massimo Carico (Frontend)" + +#: mod/admin.php:749 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." + +#: mod/admin.php:751 +msgid "Periodical check of global contacts" +msgstr "Check periodico dei contatti globali" + +#: mod/admin.php:751 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server." + +#: mod/admin.php:752 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:752 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:753 +msgid "Discover contacts from other servers" +msgstr "Trova contatti dagli altri server" + +#: mod/admin.php:753 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." + +#: mod/admin.php:754 +msgid "Timeframe for fetching global contacts" +msgstr "Termine per il recupero contatti globali" + +#: mod/admin.php:754 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." + +#: mod/admin.php:755 +msgid "Search the local directory" +msgstr "Cerca la directory locale" + +#: mod/admin.php:755 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." + +#: mod/admin.php:757 +msgid "Publish server information" +msgstr "Pubblica informazioni server" + +#: mod/admin.php:757 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." + +#: mod/admin.php:759 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: mod/admin.php:759 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." + +#: mod/admin.php:760 +msgid "Suppress Language" +msgstr "Disattiva lingua" + +#: mod/admin.php:760 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." + +#: mod/admin.php:761 +msgid "Suppress Tags" +msgstr "Sopprimi Tags" + +#: mod/admin.php:761 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Non mostra la lista di hashtag in coda al messaggio" + +#: mod/admin.php:762 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: mod/admin.php:762 +msgid "The item caches buffers generated bbcode and external images." +msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." + +#: mod/admin.php:763 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: mod/admin.php:763 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." + +#: mod/admin.php:764 +msgid "Maximum numbers of comments per post" +msgstr "Numero massimo di commenti per post" + +#: mod/admin.php:764 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." + +#: mod/admin.php:765 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: mod/admin.php:765 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." + +#: mod/admin.php:766 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: mod/admin.php:766 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." + +#: mod/admin.php:767 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: mod/admin.php:767 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." + +#: mod/admin.php:768 +msgid "Disable picture proxy" +msgstr "Disabilita il proxy immagini" + +#: mod/admin.php:768 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." + +#: mod/admin.php:769 +msgid "Enable old style pager" +msgstr "Abilita la paginazione vecchio stile" + +#: mod/admin.php:769 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." + +#: mod/admin.php:770 +msgid "Only search in tags" +msgstr "Cerca solo nei tag" + +#: mod/admin.php:770 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." + +#: mod/admin.php:772 +msgid "New base url" +msgstr "Nuovo url base" + +#: mod/admin.php:772 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." + +#: mod/admin.php:774 +msgid "RINO Encryption" +msgstr "Crittografia RINO" + +#: mod/admin.php:774 +msgid "Encryption layer between nodes." +msgstr "Crittografia delle comunicazioni tra nodi." + +#: mod/admin.php:775 +msgid "Embedly API key" +msgstr "Embedly API key" + +#: mod/admin.php:775 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." + +#: mod/admin.php:793 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: mod/admin.php:801 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aggiornamento struttura database %s applicata con successo." + +#: mod/admin.php:804 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Aggiornamento struttura database %s fallita con errore: %s" + +#: mod/admin.php:816 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Esecuzione di %s fallita con errore: %s" + +#: mod/admin.php:819 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: mod/admin.php:823 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." + +#: mod/admin.php:825 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." + +#: mod/admin.php:844 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: mod/admin.php:845 +msgid "Check database structure" +msgstr "Controlla struttura database" + +#: mod/admin.php:850 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: mod/admin.php:851 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." + +#: mod/admin.php:852 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: mod/admin.php:853 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: mod/admin.php:885 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." + +#: mod/admin.php:888 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" + +#: mod/admin.php:920 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: mod/admin.php:932 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" + +#: mod/admin.php:939 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: mod/admin.php:978 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: mod/admin.php:1079 +msgid "Add User" +msgstr "Aggiungi utente" + +#: mod/admin.php:1080 +msgid "select all" +msgstr "seleziona tutti" + +#: mod/admin.php:1081 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: mod/admin.php:1082 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: mod/admin.php:1083 +msgid "Request date" +msgstr "Data richiesta" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 +#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 +msgid "Name" +msgstr "Nome" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: mod/admin.php:1084 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: mod/admin.php:1086 +msgid "Deny" +msgstr "Nega" + +#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Block" +msgstr "Blocca" + +#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Unblock" +msgstr "Sblocca" + +#: mod/admin.php:1090 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: mod/admin.php:1091 +msgid "Account expired" +msgstr "Account scaduto" + +#: mod/admin.php:1094 +msgid "New User" +msgstr "Nuovo Utente" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Register date" +msgstr "Data registrazione" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last login" +msgstr "Ultimo accesso" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last item" +msgstr "Ultimo elemento" + +#: mod/admin.php:1095 +msgid "Deleted since" +msgstr "Rimosso da" + +#: mod/admin.php:1096 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1098 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" + +#: mod/admin.php:1099 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" + +#: mod/admin.php:1109 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: mod/admin.php:1110 +msgid "Nickname" +msgstr "Nome utente" + +#: mod/admin.php:1110 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: mod/admin.php:1111 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: mod/admin.php:1144 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: mod/admin.php:1148 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: mod/admin.php:1158 mod/admin.php:1381 +msgid "Disable" +msgstr "Disabilita" + +#: mod/admin.php:1160 mod/admin.php:1383 +msgid "Enable" +msgstr "Abilita" + +#: mod/admin.php:1183 mod/admin.php:1411 +msgid "Toggle" +msgstr "Inverti" + +#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 +#: mod/settings.php:99 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 include/nav.php:181 +msgid "Settings" +msgstr "Impostazioni" + +#: mod/admin.php:1191 mod/admin.php:1421 +msgid "Author: " +msgstr "Autore: " + +#: mod/admin.php:1192 mod/admin.php:1422 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: mod/admin.php:1341 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: mod/admin.php:1403 +msgid "Screenshot" +msgstr "Anteprima" + +#: mod/admin.php:1449 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: mod/admin.php:1450 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: mod/admin.php:1477 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: mod/admin.php:1533 +msgid "Clear" +msgstr "Pulisci" + +#: mod/admin.php:1539 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: mod/admin.php:1540 +msgid "Log file" +msgstr "File di Log" + +#: mod/admin.php:1540 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." + +#: mod/admin.php:1541 +msgid "Log level" +msgstr "Livello di Log" + +#: mod/admin.php:1590 mod/contacts.php:619 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: mod/admin.php:1591 include/acl_selectors.php:347 +msgid "Close" +msgstr "Chiudi" + +#: mod/admin.php:1597 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: mod/admin.php:1598 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: mod/admin.php:1599 +msgid "FTP User" +msgstr "Utente FTP" + +#: mod/admin.php:1600 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Messaggi" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "A:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Oggetto:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 +#: mod/wallmessage.php:154 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Carica foto" + +#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 +#: mod/wallmessage.php:155 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Inserisci link" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Nessun messaggio." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: mod/message.php:549 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Salva" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "carica foto" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Allega file" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "allega file" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "link web" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "link video" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "link audio" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "La tua posizione" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "posizione" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "canc. pos." + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Scegli un titolo" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: mod/dfrn_confirm.php:487 include/diaspora.php:633 +#: include/conversation.php:172 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Un evento non puo' finire prima di iniziare." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l j F" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Modifca l'evento" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: mod/events.php:396 view/theme/diabook/theme.php:127 +#: include/identity.php:668 include/nav.php:80 +msgid "Events" +msgstr "Eventi" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Precendente" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Successivo" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "La data di inizio e il titolo sono richiesti." + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Richiesto" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Descrizione:" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titolo:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 +#: include/identity.php:649 include/nav.php:78 +msgid "Photos" +msgstr "Foto" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "File" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nessun destinatario." + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." + +#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 +#: mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: mod/nogroup.php:41 mod/contacts.php:839 +msgid "Edit contact" +msgstr "Modifca contatto" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "il bugtracker su github" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La dimensione dell'immagine supera il limite di %s" + +#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 +#: mod/item.php:486 include/message.php:145 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: 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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: mod/photos.php:84 include/identity.php:652 +msgid "Photo Albums" +msgstr "Album foto" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "tutti" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 +#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 +#: mod/profile_photo.php:88 mod/profile_photo.php:204 +#: mod/profile_photo.php:296 mod/profile_photo.php:305 +#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 +#: include/user.php:357 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album non trovato." + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: mod/photos.php:220 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" + +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: mod/photos.php:684 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s è stato taggato in %2$s da %3$s" + +#: mod/photos.php:684 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: mod/photos.php:952 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: mod/photos.php:1053 mod/videos.php:298 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." + +#: mod/photos.php:1149 +msgid "Upload Photos" +msgstr "Carica foto" + +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Permessi" + +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Foto privata" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Modifica album" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Vedi foto" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Vedi foto" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Modifica foto" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Tag: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Titolo" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Non ruotare" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Foto privata" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Condividi" + +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
    login: %s
    password: %s

    Puoi cambiare la password dopo il login." + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco pubblico?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Il tuo nome completo (es. Mario Rossi): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Il tuo indirizzo email: " + +#: mod/register.php:271 mod/settings.php:1174 +msgid "New Password:" +msgstr "Nuova password:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Lascia vuoto per generare automaticamente una password." + +#: mod/register.php:272 mod/settings.php:1175 +msgid "Confirm:" +msgstr "Conferma:" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Scegli un nome utente: " + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "Registrati" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Importa" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Importa il tuo profilo in questo server friendica" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Richiesta reimpostazione password su %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." + +#: mod/lostpass.php:109 boot.php:1287 +msgid "Password Reset" +msgstr "Reimpostazione password" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "clicca qui per entrare" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reimposta" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: mod/help.php:31 +msgid "Help:" +msgstr "Guida:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Guida" + #: mod/contacts.php:114 #, php-format msgid "%d contact edited." @@ -32,7 +3110,7 @@ msgid_plural "%d contacts edited" msgstr[0] "%d contatto modificato" msgstr[1] "%d contatti modificati" -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:145 mod/contacts.php:368 msgid "Could not access contact record." msgstr "Non è possibile accedere al contatto." @@ -44,490 +3122,416 @@ msgstr "Non riesco a trovare il profilo selezionato." msgid "Contact updated." msgstr "Contatto aggiornato." -#: mod/contacts.php:194 mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 -#: mod/profile_photo.php:19 mod/profile_photo.php:169 -#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 -#: mod/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 -#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 -#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 -#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 -#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 -#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 -#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 -#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5023 index.php:382 -msgid "Permission denied." -msgstr "Permesso negato." - -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been unignored" msgstr "Il contatto non è più ignorato" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been archived" msgstr "Il contatto è stato archiviato" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been unarchived" msgstr "Il contatto è stato dearchiviato" -#: mod/contacts.php:411 mod/contacts.php:767 +#: mod/contacts.php:439 mod/contacts.php:795 msgid "Do you really want to delete this contact?" msgstr "Vuoi veramente cancellare questo contatto?" -#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 -#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 -#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 -#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 -#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 -#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 -#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/api.php:105 include/items.php:4855 -msgid "Yes" -msgstr "Si" - -#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 -#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 -#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 -#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 -#: include/items.php:4858 -msgid "Cancel" -msgstr "Annulla" - -#: mod/contacts.php:428 +#: mod/contacts.php:456 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." -#: mod/contacts.php:466 +#: mod/contacts.php:494 #, php-format msgid "You are mutual friends with %s" msgstr "Sei amico reciproco con %s" -#: mod/contacts.php:470 +#: mod/contacts.php:498 #, php-format msgid "You are sharing with %s" msgstr "Stai condividendo con %s" -#: mod/contacts.php:475 +#: mod/contacts.php:503 #, php-format msgid "%s is sharing with you" msgstr "%s sta condividendo con te" -#: mod/contacts.php:495 +#: mod/contacts.php:523 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: mod/contacts.php:498 mod/admin.php:618 -msgid "Never" -msgstr "Mai" - -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was not successful)" msgstr "(L'aggiornamento non è stato completato)" -#: mod/contacts.php:504 +#: mod/contacts.php:532 msgid "Suggest friends" msgstr "Suggerisci amici" -#: mod/contacts.php:508 +#: mod/contacts.php:536 #, php-format msgid "Network type: %s" msgstr "Tipo di rete: %s" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:539 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" -#: mod/contacts.php:516 +#: mod/contacts.php:544 msgid "View all contacts" msgstr "Vedi tutti i contatti" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 -msgid "Unblock" -msgstr "Sblocca" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 -msgid "Block" -msgstr "Blocca" - -#: mod/contacts.php:524 +#: mod/contacts.php:552 msgid "Toggle Blocked status" msgstr "Inverti stato \"Blocca\"" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 msgid "Unignore" msgstr "Non ignorare" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 -msgid "Ignore" -msgstr "Ignora" - -#: mod/contacts.php:531 +#: mod/contacts.php:559 msgid "Toggle Ignored status" msgstr "Inverti stato \"Ignora\"" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Unarchive" msgstr "Dearchivia" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Archive" msgstr "Archivia" -#: mod/contacts.php:539 +#: mod/contacts.php:567 msgid "Toggle Archive status" msgstr "Inverti stato \"Archiviato\"" -#: mod/contacts.php:543 +#: mod/contacts.php:571 msgid "Repair" msgstr "Ripara" -#: mod/contacts.php:546 +#: mod/contacts.php:574 msgid "Advanced Contact Settings" msgstr "Impostazioni avanzate Contatto" -#: mod/contacts.php:553 +#: mod/contacts.php:581 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: mod/contacts.php:556 +#: mod/contacts.php:584 msgid "Fetch further information for feeds" msgstr "Recupera maggiori infomazioni per i feed" -#: mod/contacts.php:557 mod/admin.php:627 -msgid "Disabled" -msgstr "Disabilitato" - -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information" msgstr "Recupera informazioni" -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information and keywords" msgstr "Recupera informazioni e parole chiave" -#: mod/contacts.php:566 +#: mod/contacts.php:594 msgid "Contact Editor" msgstr "Editor dei Contatti" -#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 -#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 -#: mod/events.php:511 mod/content.php:712 mod/install.php:250 -#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 -#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 -#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 -#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 -#: object/Item.php:680 view/theme/cleanzero/config.php:80 -#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 -#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 -#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Invia" - -#: mod/contacts.php:569 +#: mod/contacts.php:597 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: mod/contacts.php:570 +#: mod/contacts.php:598 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." -#: mod/contacts.php:571 +#: mod/contacts.php:599 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: mod/contacts.php:572 +#: mod/contacts.php:600 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 -#: mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: mod/contacts.php:578 +#: mod/contacts.php:606 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: mod/contacts.php:579 +#: mod/contacts.php:607 msgid "Ignore contact" msgstr "Ignora il contatto" -#: mod/contacts.php:580 +#: mod/contacts.php:608 msgid "Repair URL settings" msgstr "Impostazioni riparazione URL" -#: mod/contacts.php:581 +#: mod/contacts.php:609 msgid "View conversations" msgstr "Vedi conversazioni" -#: mod/contacts.php:583 +#: mod/contacts.php:611 msgid "Delete contact" msgstr "Rimuovi contatto" -#: mod/contacts.php:587 +#: mod/contacts.php:615 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: mod/contacts.php:589 +#: mod/contacts.php:617 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: mod/contacts.php:591 mod/admin.php:1584 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: mod/contacts.php:598 +#: mod/contacts.php:626 msgid "Currently blocked" msgstr "Bloccato" -#: mod/contacts.php:599 +#: mod/contacts.php:627 msgid "Currently ignored" msgstr "Ignorato" -#: mod/contacts.php:600 +#: mod/contacts.php:628 msgid "Currently archived" msgstr "Al momento archiviato" -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: mod/contacts.php:601 +#: mod/contacts.php:629 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Notification for new posts" msgstr "Notifica per i nuovi messaggi" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Send a notification of every new post of this contact" msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" -#: mod/contacts.php:605 +#: mod/contacts.php:633 msgid "Blacklisted keywords" msgstr "Parole chiave in blacklist" -#: mod/contacts.php:605 +#: mod/contacts.php:633 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato" -#: mod/contacts.php:612 +#: mod/contacts.php:640 msgid "Profile URL" msgstr "URL Profilo" -#: mod/contacts.php:658 +#: mod/contacts.php:686 msgid "Suggestions" msgstr "Suggerimenti" -#: mod/contacts.php:661 +#: mod/contacts.php:689 msgid "Suggest potential friends" msgstr "Suggerisci potenziali amici" -#: mod/contacts.php:665 mod/group.php:192 +#: mod/contacts.php:693 mod/group.php:192 msgid "All Contacts" msgstr "Tutti i contatti" -#: mod/contacts.php:668 +#: mod/contacts.php:696 msgid "Show all contacts" msgstr "Mostra tutti i contatti" -#: mod/contacts.php:672 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Sbloccato" -#: mod/contacts.php:675 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Mostra solo contatti non bloccati" -#: mod/contacts.php:680 +#: mod/contacts.php:708 msgid "Blocked" msgstr "Bloccato" -#: mod/contacts.php:683 +#: mod/contacts.php:711 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: mod/contacts.php:688 +#: mod/contacts.php:716 msgid "Ignored" msgstr "Ignorato" -#: mod/contacts.php:691 +#: mod/contacts.php:719 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: mod/contacts.php:696 +#: mod/contacts.php:724 msgid "Archived" msgstr "Achiviato" -#: mod/contacts.php:699 +#: mod/contacts.php:727 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: mod/contacts.php:704 +#: mod/contacts.php:732 msgid "Hidden" msgstr "Nascosto" -#: mod/contacts.php:707 +#: mod/contacts.php:735 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 +#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 +#: include/nav.php:124 include/nav.php:186 msgid "Contacts" msgstr "Contatti" -#: mod/contacts.php:762 +#: mod/contacts.php:790 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: mod/contacts.php:763 mod/directory.php:63 +#: mod/contacts.php:791 mod/directory.php:63 msgid "Finding: " msgstr "Ricerca: " -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Trova" -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Aggiorna" -#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 -#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 -msgid "Delete" -msgstr "Rimuovi" - -#: mod/contacts.php:786 +#: mod/contacts.php:814 msgid "Mutual Friendship" msgstr "Amicizia reciproca" -#: mod/contacts.php:790 +#: mod/contacts.php:818 msgid "is a fan of yours" msgstr "è un tuo fan" -#: mod/contacts.php:794 +#: mod/contacts.php:822 msgid "you are a fan of" msgstr "sei un fan di" -#: mod/contacts.php:811 mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Modifca contatto" +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Vuoi veramente cancellare questo video?" -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Rimuovi video" -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Nessun video selezionato" -#: mod/manage.php:107 +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Amici in comune" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: mod/follow.php:108 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Accedi" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Il messaggio è stato creato" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: mod/uimport.php:68 msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" +#: mod/uimport.php:70 +msgid "Account file" +msgstr "File account" -#: mod/profperm.php:19 mod/group.php:72 index.php:381 -msgid "Permission denied" -msgstr "Permesso negato" +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 -#: include/identity.php:610 include/identity.php:640 include/nav.php:77 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profilo" +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Visibile a" +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 -#: mod/notice.php:15 include/items.php:4814 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 -#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 -#: mod/directory.php:35 mod/photos.php:942 -msgid "Public access denied." -msgstr "Accesso negato." - -#: mod/display.php:343 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Rimuovi" #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -560,12 +3564,6 @@ msgid "" " join." msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." -#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 -#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Impostazioni" - #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Vai alle tue Impostazioni" @@ -585,7 +3583,13 @@ msgid "" "potential friends know exactly how to find you." msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 +#: include/identity.php:530 include/identity.php:611 include/identity.php:641 +#: include/nav.php:77 +msgid "Profile" +msgstr "Profilo" + +#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" @@ -724,3097 +3728,123 @@ msgid "" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Accesso fallito." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:204 mod/profile_photo.php:296 -#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 -#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 -#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La dimensione dell'immagine supera il limite di %s" - -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "Carica" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 -#: view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "foto" - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 -#: include/conversation.php:121 include/conversation.php:130 -#: include/conversation.php:248 include/conversation.php:257 -#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "stato" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Rimuovi" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Salva" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "Hai già aggiunto questo contatto." - -#: mod/follow.php:58 mod/dfrn_request.php:847 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: mod/follow.php:59 mod/dfrn_request.php:848 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 -#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 -#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 -#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 -#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 -#: mod/api.php:106 -msgid "No" -msgstr "No" - -#: mod/follow.php:60 mod/dfrn_request.php:852 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: mod/follow.php:66 mod/dfrn_request.php:858 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: mod/follow.php:69 mod/dfrn_request.php:861 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Contatto aggiunto" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 -#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 -#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: mod/item.php:989 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." - -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" - -#: mod/item.php:992 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." - -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Salva gruppo" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Nome del gruppo:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppo rimosso." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Modifica gruppo" - -#: mod/group.php:190 -msgid "Members" -msgstr "Membri" - -#: mod/apps.php:7 index.php:225 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare gli addons." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Applicazioni" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." - -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:634 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" - -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Vuoi veramente cancellare questo video?" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Rimuovi video" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Nessun video selezionato" - -#: mod/videos.php:298 mod/photos.php:1053 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Guarda Video" - -#: mod/videos.php:380 mod/photos.php:1827 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Video Recenti" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" - -#: mod/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 -msgid "Invalid request." -msgstr "Richiesta non valida." - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta reimpostazione password su %s" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "Reimpostazione password" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "clicca qui per entrare" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La tua password presso %s è stata cambiata" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Reimposta" - -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nessun contatto." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Scarta" - -#: mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Rete" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Personale" - -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Home" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Presentazioni" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "se applicabile" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 -msgid "Approve" -msgstr "Approva" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "si" - -#: mod/notifications.php:191 -msgid "no" -msgstr "no" - -#: mod/notifications.php:192 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:195 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:203 -msgid "Friend" -msgstr "Amico" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Condivisore" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 -#: include/event.php:42 -msgid "Location:" -msgstr "Posizione:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "Informazioni:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Tag:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 -msgid "Gender:" -msgstr "Genere:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Notifiche" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Sorgente:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML grezzo):" - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Sorgente (formato Diaspora):" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Messaggi" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "A:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Oggetto:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Carica foto" - -#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Inserisci link" - -#: mod/message.php:335 mod/message.php:566 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Attendi" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Nessun messaggio." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: mod/message.php:451 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." - -#: mod/message.php:553 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: mod/update_display.php:22 mod/update_community.php:18 -#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: mod/crepair.php:142 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" - -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." - -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Non duplicare" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Ricarica dati contatto" - -#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 -#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 -#: mod/settings.php:660 -msgid "Name" -msgstr "Nome" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Nome utente" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL dell'utente" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "URL Feed" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Io remoto" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Accedi" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Il messaggio è stato creato" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Cerca persone - %s" - -#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 -#: include/contact_widgets.php:10 include/identity.php:188 -msgid "Connect" -msgstr "Connetti" - -#: mod/dirfind.php:139 mod/match.php:73 -msgid "No matches" -msgstr "Nessun risultato" - -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Foto" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "File" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." - -#: mod/admin.php:104 mod/admin.php:682 -msgid "Site" -msgstr "Sito" - -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 -msgid "Users" -msgstr "Utenti" - -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 -msgid "Plugins" -msgstr "Plugin" - -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 -msgid "Themes" -msgstr "Temi" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "Ispeziona Coda di invio" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 -msgid "Logs" -msgstr "Log" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "controlla indirizzo" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "verifica webfinger" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Amministrazione" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "diagnostiche" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 -#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 -#: mod/admin.php:1524 -msgid "Administration" -msgstr "Amministrazione" - -#: mod/admin.php:202 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "Nome Destinatario" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "Profilo Destinatario" - -#: mod/admin.php:206 -msgid "Created" -msgstr "Creato" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "Ultimo Tentativo" - -#: mod/admin.php:208 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire." - -#: mod/admin.php:220 mod/admin.php:1025 -msgid "Normal Account" -msgstr "Account normale" - -#: mod/admin.php:221 mod/admin.php:1026 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: mod/admin.php:222 mod/admin.php:1027 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: mod/admin.php:223 mod/admin.php:1028 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Account Blog" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Forum Privato" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Code messaggi" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Sommario" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Utenti registrati" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: mod/admin.php:255 -msgid "Version" -msgstr "Versione" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" - -#: mod/admin.php:565 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: mod/admin.php:594 mod/settings.php:883 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: mod/admin.php:611 -msgid "No community page" -msgstr "Nessuna pagina Comunità" - -#: mod/admin.php:612 -msgid "Public postings from users of this site" -msgstr "Messaggi pubblici dagli utenti di questo sito" - -#: mod/admin.php:613 -msgid "Global community page" -msgstr "Pagina Comunità globale" - -#: mod/admin.php:619 -msgid "At post arrival" -msgstr "All'arrivo di un messaggio" - -#: mod/admin.php:620 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: mod/admin.php:621 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" - -#: mod/admin.php:622 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: mod/admin.php:623 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Giornalmente" - -#: mod/admin.php:629 -msgid "Users, Global Contacts" -msgstr "Utenti, Contatti Globali" - -#: mod/admin.php:630 -msgid "Users, Global Contacts/fallback" -msgstr "Utenti, Contatti Globali/fallback" - -#: mod/admin.php:634 -msgid "One month" -msgstr "Un meso" - -#: mod/admin.php:635 -msgid "Three months" -msgstr "Tre mesi" - -#: mod/admin.php:636 -msgid "Half a year" -msgstr "Sei mesi" - -#: mod/admin.php:637 -msgid "One year" -msgstr "Un anno" - -#: mod/admin.php:642 -msgid "Multi user instance" -msgstr "Istanza multi utente" - -#: mod/admin.php:665 -msgid "Closed" -msgstr "Chiusa" - -#: mod/admin.php:666 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: mod/admin.php:667 -msgid "Open" -msgstr "Aperta" - -#: mod/admin.php:671 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" - -#: mod/admin.php:672 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: mod/admin.php:673 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" - -#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 -#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 -msgid "Save Settings" -msgstr "Salva Impostazioni" - -#: mod/admin.php:684 mod/register.php:260 -msgid "Registration" -msgstr "Registrazione" - -#: mod/admin.php:685 -msgid "File upload" -msgstr "Caricamento file" - -#: mod/admin.php:686 -msgid "Policies" -msgstr "Politiche" - -#: mod/admin.php:687 -msgid "Advanced" -msgstr "Avanzate" - -#: mod/admin.php:688 -msgid "Auto Discovered Contact Directory" -msgstr "Elenco Contatti Scoperto Automaticamente" - -#: mod/admin.php:689 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:690 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." - -#: mod/admin.php:693 -msgid "Site name" -msgstr "Nome del sito" - -#: mod/admin.php:694 -msgid "Host name" -msgstr "Nome host" - -#: mod/admin.php:695 -msgid "Sender Email" -msgstr "Mittente email" - -#: mod/admin.php:695 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." - -#: mod/admin.php:696 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:697 -msgid "Shortcut icon" -msgstr "Icona shortcut" - -#: mod/admin.php:697 -msgid "Link to an icon that will be used for browsers." -msgstr "Link verso un'icona che verrà usata dai browsers." - -#: mod/admin.php:698 -msgid "Touch icon" -msgstr "Icona touch" - -#: mod/admin.php:698 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." - -#: mod/admin.php:699 -msgid "Additional Info" -msgstr "Informazioni aggiuntive" - -#: mod/admin.php:699 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." - -#: mod/admin.php:700 -msgid "System language" -msgstr "Lingua di sistema" - -#: mod/admin.php:701 -msgid "System theme" -msgstr "Tema di sistema" - -#: mod/admin.php:701 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" - -#: mod/admin.php:702 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" - -#: mod/admin.php:702 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" - -#: mod/admin.php:703 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: mod/admin.php:703 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se i link generati devono essere forzati a usare SSL" - -#: mod/admin.php:704 -msgid "Force SSL" -msgstr "Forza SSL" - -#: mod/admin.php:704 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" - -#: mod/admin.php:705 -msgid "Old style 'Share'" -msgstr "Ricondivisione vecchio stile" - -#: mod/admin.php:705 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" - -#: mod/admin.php:706 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" - -#: mod/admin.php:706 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." - -#: mod/admin.php:707 -msgid "Single user instance" -msgstr "Instanza a singolo utente" - -#: mod/admin.php:707 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" - -#: mod/admin.php:708 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: mod/admin.php:708 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." - -#: mod/admin.php:709 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" - -#: mod/admin.php:709 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." - -#: mod/admin.php:710 -msgid "JPEG image quality" -msgstr "Qualità immagini JPEG" - -#: mod/admin.php:710 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." - -#: mod/admin.php:712 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: mod/admin.php:713 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" - -#: mod/admin.php:713 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." - -#: mod/admin.php:714 -msgid "Register text" -msgstr "Testo registrazione" - -#: mod/admin.php:714 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: mod/admin.php:715 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: mod/admin.php:715 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." - -#: mod/admin.php:716 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: mod/admin.php:716 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: mod/admin.php:717 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: mod/admin.php:717 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: mod/admin.php:718 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: mod/admin.php:718 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." - -#: mod/admin.php:719 -msgid "Force publish" -msgstr "Forza publicazione" - -#: mod/admin.php:719 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." - -#: mod/admin.php:720 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" - -#: mod/admin.php:720 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." - -#: mod/admin.php:721 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" - -#: mod/admin.php:721 -msgid "Allow infinite level threading for items on this site." -msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." - -#: mod/admin.php:722 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" - -#: mod/admin.php:722 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." - -#: mod/admin.php:723 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" - -#: mod/admin.php:723 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" - -#: mod/admin.php:724 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." - -#: mod/admin.php:724 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" - -#: mod/admin.php:725 -msgid "Don't embed private images in posts" -msgstr "Non inglobare immagini private nei post" - -#: mod/admin.php:725 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." - -#: mod/admin.php:726 -msgid "Allow Users to set remote_self" -msgstr "Permetti agli utenti di impostare 'io remoto'" - -#: mod/admin.php:726 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." - -#: mod/admin.php:727 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: mod/admin.php:727 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Non permette all'utente di registrare account extra da usare come pagine." - -#: mod/admin.php:728 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: mod/admin.php:728 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: mod/admin.php:729 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: mod/admin.php:729 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" - -#: mod/admin.php:730 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: mod/admin.php:730 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: mod/admin.php:731 -msgid "Community Page Style" -msgstr "Stile pagina Comunità" - -#: mod/admin.php:731 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." - -#: mod/admin.php:732 -msgid "Posts per user on community page" -msgstr "Messaggi per utente nella pagina Comunità" - -#: mod/admin.php:732 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" - -#: mod/admin.php:733 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" - -#: mod/admin.php:733 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." - -#: mod/admin.php:734 -msgid "OStatus conversation completion interval" -msgstr "Intervallo completamento conversazioni OStatus" - -#: mod/admin.php:734 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." - -#: mod/admin.php:735 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: mod/admin.php:735 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: mod/admin.php:736 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: mod/admin.php:736 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." - -#: mod/admin.php:737 -msgid "Verify SSL" -msgstr "Verifica SSL" - -#: mod/admin.php:737 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." - -#: mod/admin.php:738 -msgid "Proxy user" -msgstr "Utente Proxy" - -#: mod/admin.php:739 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: mod/admin.php:740 -msgid "Network timeout" -msgstr "Timeout rete" - -#: mod/admin.php:740 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." - -#: mod/admin.php:741 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: mod/admin.php:741 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." - -#: mod/admin.php:742 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: mod/admin.php:742 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." - -#: mod/admin.php:743 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" - -#: mod/admin.php:743 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." - -#: mod/admin.php:744 -msgid "Maximum Load Average (Frontend)" -msgstr "Media Massimo Carico (Frontend)" - -#: mod/admin.php:744 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." - -#: mod/admin.php:746 -msgid "Periodical check of global contacts" -msgstr "Check periodico dei contatti globali" - -#: mod/admin.php:746 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server." - -#: mod/admin.php:747 -msgid "Discover contacts from other servers" -msgstr "Trova contatti dagli altri server" - -#: mod/admin.php:747 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." - -#: mod/admin.php:748 -msgid "Timeframe for fetching global contacts" -msgstr "Termine per il recupero contatti globali" - -#: mod/admin.php:748 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." - -#: mod/admin.php:749 -msgid "Search the local directory" -msgstr "Cerca la directory locale" - -#: mod/admin.php:749 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." - -#: mod/admin.php:751 -msgid "Publish server information" -msgstr "Pubblica informazioni server" - -#: mod/admin.php:751 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." - -#: mod/admin.php:753 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: mod/admin.php:753 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." - -#: mod/admin.php:754 -msgid "Suppress Language" -msgstr "Disattiva lingua" - -#: mod/admin.php:754 -msgid "Suppress language information in meta information about a posting." -msgstr "Disattiva le informazioni sulla lingua nei meta di un post." - -#: mod/admin.php:755 -msgid "Suppress Tags" -msgstr "Sopprimi Tags" - -#: mod/admin.php:755 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Non mostra la lista di hashtag in coda al messaggio" - -#: mod/admin.php:756 -msgid "Path to item cache" -msgstr "Percorso cache elementi" - -#: mod/admin.php:756 -msgid "The item caches buffers generated bbcode and external images." -msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." - -#: mod/admin.php:757 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" - -#: mod/admin.php:757 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." - -#: mod/admin.php:758 -msgid "Maximum numbers of comments per post" -msgstr "Numero massimo di commenti per post" - -#: mod/admin.php:758 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." - -#: mod/admin.php:759 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: mod/admin.php:759 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." - -#: mod/admin.php:760 -msgid "Temp path" -msgstr "Percorso file temporanei" - -#: mod/admin.php:760 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." - -#: mod/admin.php:761 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" - -#: mod/admin.php:761 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." - -#: mod/admin.php:762 -msgid "Disable picture proxy" -msgstr "Disabilita il proxy immagini" - -#: mod/admin.php:762 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." - -#: mod/admin.php:763 -msgid "Enable old style pager" -msgstr "Abilita la paginazione vecchio stile" - -#: mod/admin.php:763 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." - -#: mod/admin.php:764 -msgid "Only search in tags" -msgstr "Cerca solo nei tag" - -#: mod/admin.php:764 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." - -#: mod/admin.php:766 -msgid "New base url" -msgstr "Nuovo url base" - -#: mod/admin.php:766 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." - -#: mod/admin.php:768 -msgid "RINO Encryption" -msgstr "Crittografia RINO" - -#: mod/admin.php:768 -msgid "Encryption layer between nodes." -msgstr "Crittografia delle comunicazioni tra nodi." - -#: mod/admin.php:769 -msgid "Embedly API key" -msgstr "Embedly API key" - -#: mod/admin.php:769 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." - -#: mod/admin.php:787 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: mod/admin.php:795 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aggiornamento struttura database %s applicata con successo." - -#: mod/admin.php:798 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Aggiornamento struttura database %s fallita con errore: %s" - -#: mod/admin.php:810 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Esecuzione di %s fallita con errore: %s" - -#: mod/admin.php:813 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: mod/admin.php:817 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." - -#: mod/admin.php:819 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." - -#: mod/admin.php:838 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: mod/admin.php:839 -msgid "Check database structure" -msgstr "Controlla struttura database" - -#: mod/admin.php:844 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: mod/admin.php:845 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." - -#: mod/admin.php:846 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" - -#: mod/admin.php:847 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" - -#: mod/admin.php:879 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." - -#: mod/admin.php:882 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" - -#: mod/admin.php:914 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: mod/admin.php:926 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" - -#: mod/admin.php:933 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: mod/admin.php:972 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: mod/admin.php:1073 -msgid "Add User" -msgstr "Aggiungi utente" - -#: mod/admin.php:1074 -msgid "select all" -msgstr "seleziona tutti" - -#: mod/admin.php:1075 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: mod/admin.php:1076 -msgid "User waiting for permanent deletion" -msgstr "Utente in attesa di cancellazione definitiva" - -#: mod/admin.php:1077 -msgid "Request date" -msgstr "Data richiesta" - -#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "Email" - -#: mod/admin.php:1078 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: mod/admin.php:1080 -msgid "Deny" -msgstr "Nega" - -#: mod/admin.php:1084 -msgid "Site admin" -msgstr "Amministrazione sito" - -#: mod/admin.php:1085 -msgid "Account expired" -msgstr "Account scaduto" - -#: mod/admin.php:1088 -msgid "New User" -msgstr "Nuovo Utente" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Register date" -msgstr "Data registrazione" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last login" -msgstr "Ultimo accesso" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last item" -msgstr "Ultimo elemento" - -#: mod/admin.php:1089 -msgid "Deleted since" -msgstr "Rimosso da" - -#: mod/admin.php:1090 mod/settings.php:41 -msgid "Account" -msgstr "Account" - -#: mod/admin.php:1092 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1093 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1103 -msgid "Name of the new user." -msgstr "Nome del nuovo utente." - -#: mod/admin.php:1104 -msgid "Nickname" -msgstr "Nome utente" - -#: mod/admin.php:1104 -msgid "Nickname of the new user." -msgstr "Nome utente del nuovo utente." - -#: mod/admin.php:1105 -msgid "Email address of the new user." -msgstr "Indirizzo Email del nuovo utente." - -#: mod/admin.php:1138 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: mod/admin.php:1142 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: mod/admin.php:1152 mod/admin.php:1375 -msgid "Disable" -msgstr "Disabilita" - -#: mod/admin.php:1154 mod/admin.php:1377 -msgid "Enable" -msgstr "Abilita" - -#: mod/admin.php:1177 mod/admin.php:1405 -msgid "Toggle" -msgstr "Inverti" - -#: mod/admin.php:1185 mod/admin.php:1415 -msgid "Author: " -msgstr "Autore: " - -#: mod/admin.php:1186 mod/admin.php:1416 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: mod/admin.php:1335 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: mod/admin.php:1397 -msgid "Screenshot" -msgstr "Anteprima" - -#: mod/admin.php:1443 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: mod/admin.php:1444 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: mod/admin.php:1471 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: mod/admin.php:1527 -msgid "Clear" -msgstr "Pulisci" - -#: mod/admin.php:1533 -msgid "Enable Debugging" -msgstr "Abilita Debugging" - -#: mod/admin.php:1534 -msgid "Log file" -msgstr "File di Log" - -#: mod/admin.php:1534 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." - -#: mod/admin.php:1535 -msgid "Log level" -msgstr "Livello di Log" - -#: mod/admin.php:1585 include/acl_selectors.php:347 -msgid "Close" -msgstr "Chiudi" - -#: mod/admin.php:1591 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: mod/admin.php:1592 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: mod/admin.php:1593 -msgid "FTP User" -msgstr "Utente FTP" - -#: mod/admin.php:1594 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/network.php:187 mod/search.php:25 +#: mod/search.php:25 mod/network.php:187 msgid "Remove term" msgstr "Rimuovi termine" -#: mod/network.php:196 mod/search.php:34 include/features.php:42 +#: mod/search.php:34 mod/network.php:196 include/features.php:42 msgid "Saved Searches" msgstr "Ricerche salvate" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "aggiungi" +#: mod/search.php:107 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Cerca" -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: mod/network.php:385 -msgid "New" -msgstr "Nuovo" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Links condivisi" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Preferiti" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: mod/network.php:466 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." -msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." - -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:532 mod/content.php:119 -msgid "No such group" -msgstr "Nessun gruppo" - -#: mod/network.php:549 mod/content.php:130 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: mod/network.php:560 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Gruppo: %s" - -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "Contatto: %s" - -#: mod/network.php:582 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Un evento non puo' finire prima di iniziare." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l j F" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Eventi" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Precendente" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Successivo" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "La data di inizio e il titolo sono richiesti." - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Richiesto" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Descrizione:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: object/Item.php:689 include/conversation.php:1089 -msgid "Preview" -msgstr "Anteprima" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 -msgid "Select" -msgstr "Seleziona" - -#: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: mod/content.php:605 object/Item.php:389 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" - -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5134 -msgid "show more" -msgstr "mostra di più" - -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Messaggio privato" - -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: mod/content.php:686 object/Item.php:232 -msgid "like" -msgstr "mi piace" - -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: mod/content.php:687 object/Item.php:233 -msgid "dislike" -msgstr "non mi piace" - -#: mod/content.php:689 object/Item.php:235 -msgid "Share this" -msgstr "Condividi questo" - -#: mod/content.php:689 object/Item.php:235 -msgid "share" -msgstr "condividi" - -#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 object/Item.php:677 -msgid "This is you" -msgstr "Questo sei tu" - -#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 -#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 -msgid "Comment" -msgstr "Commento" - -#: mod/content.php:713 object/Item.php:681 -msgid "Bold" -msgstr "Grassetto" - -#: mod/content.php:714 object/Item.php:682 -msgid "Italic" -msgstr "Corsivo" - -#: mod/content.php:715 object/Item.php:683 -msgid "Underline" -msgstr "Sottolineato" - -#: mod/content.php:716 object/Item.php:684 -msgid "Quote" -msgstr "Citazione" - -#: mod/content.php:717 object/Item.php:685 -msgid "Code" -msgstr "Codice" - -#: mod/content.php:718 object/Item.php:686 -msgid "Image" -msgstr "Immagine" - -#: mod/content.php:719 object/Item.php:687 -msgid "Link" -msgstr "Link" - -#: mod/content.php:720 object/Item.php:688 -msgid "Video" -msgstr "Video" - -#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 -msgid "Edit" -msgstr "Modifica" - -#: mod/content.php:755 object/Item.php:196 -msgid "add star" -msgstr "aggiungi a speciali" - -#: mod/content.php:756 object/Item.php:197 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: mod/content.php:757 object/Item.php:198 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: mod/content.php:760 object/Item.php:201 -msgid "starred" -msgstr "preferito" - -#: mod/content.php:761 object/Item.php:221 -msgid "add tag" -msgstr "aggiungi tag" - -#: mod/content.php:765 object/Item.php:134 -msgid "save to folder" -msgstr "salva nella cartella" - -#: mod/content.php:856 object/Item.php:330 -msgid "to" -msgstr "a" - -#: mod/content.php:857 object/Item.php:332 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: mod/content.php:858 object/Item.php:333 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Comunicazione Server - Impostazioni" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Database già in uso." - -#: mod/install.php:205 -msgid "System check" -msgstr "Controllo sistema" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Controlla ancora" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Connessione al database" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Nome del database server" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Nome utente database" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Password utente database" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Nome database" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Impostazioni sito" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" - -#: mod/install.php:324 -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. See 'Activating scheduled tasks'" -msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Versione PHP:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "Binario PHP cli" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Modulo mod_rewrite di Apache" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." - -#: mod/install.php:440 -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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." - -#: mod/install.php:441 -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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." - -#: mod/install.php:442 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: mod/install.php:456 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." - -#: mod/install.php:457 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." - -#: mod/install.php:458 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." - -#: mod/install.php:459 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 è scrivibile" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "La riscrittura degli url funziona" - -#: mod/install.php:489 -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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." - -#: mod/install.php:528 -msgid "

    What next

    " -msgstr "

    Cosa fare ora

    " - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Guida:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Guida" - -#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 -msgid "Not Found" -msgstr "Non trovato" - -#: mod/help.php:45 index.php:272 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%s dà il benvenuto a %s" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: mod/match.php:22 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." - -#: mod/match.php:64 -msgid "is interested in:" -msgstr "è interessato a:" - -#: mod/share.php:38 -msgid "link" -msgstr "collegamento" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." - -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Comunità" - -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +#: mod/search.php:199 mod/community.php:62 mod/community.php:71 msgid "No results." msgstr "Nessun risultato." -#: mod/settings.php:34 mod/photos.php:102 -msgid "everybody" -msgstr "tutti" +#: mod/search.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" + +#: mod/search.php:207 +#, php-format +msgid "Search results for: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Unisiciti a noi su Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." + +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Invia inviti" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una volta registrato, connettiti con me dal mio profilo:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" #: mod/settings.php:47 msgid "Additional features" @@ -3824,7 +3854,7 @@ msgstr "Funzionalità aggiuntive" msgid "Display" msgstr "Visualizzazione" -#: mod/settings.php:60 mod/settings.php:835 +#: mod/settings.php:60 mod/settings.php:837 msgid "Social Networks" msgstr "Social Networks" @@ -4002,869 +4032,494 @@ msgid "" "unknown user." msgstr "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto." -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:779 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:781 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:784 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:793 mod/settings.php:794 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Il supporto integrato per la connettività con %s è %s" -#: mod/settings.php:791 mod/dfrn_request.php:856 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "enabled" msgstr "abilitato" -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "disabled" msgstr "disabilitato" -#: mod/settings.php:792 +#: mod/settings.php:794 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:828 +#: mod/settings.php:830 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: mod/settings.php:840 +#: mod/settings.php:842 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: mod/settings.php:841 +#: mod/settings.php:843 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" -#: mod/settings.php:842 +#: mod/settings.php:844 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: mod/settings.php:844 +#: mod/settings.php:846 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: mod/settings.php:845 +#: mod/settings.php:847 msgid "IMAP port:" msgstr "Porta IMAP:" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Security:" msgstr "Sicurezza:" -#: mod/settings.php:846 mod/settings.php:851 +#: mod/settings.php:848 mod/settings.php:853 msgid "None" msgstr "Nessuna" -#: mod/settings.php:847 +#: mod/settings.php:849 msgid "Email login name:" msgstr "Nome utente email:" -#: mod/settings.php:848 +#: mod/settings.php:850 msgid "Email password:" msgstr "Password email:" -#: mod/settings.php:849 +#: mod/settings.php:851 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: mod/settings.php:850 +#: mod/settings.php:852 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Action after import:" msgstr "Azione post importazione:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Mark as seen" msgstr "Segna come letto" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Move to folder" msgstr "Sposta nella cartella" -#: mod/settings.php:852 +#: mod/settings.php:854 msgid "Move to folder:" msgstr "Sposta nella cartella:" -#: mod/settings.php:933 +#: mod/settings.php:935 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: mod/settings.php:939 mod/settings.php:955 +#: mod/settings.php:941 mod/settings.php:957 msgid "Display Theme:" msgstr "Tema:" -#: mod/settings.php:940 +#: mod/settings.php:942 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimo 10 secondi, nessun limite massimo" -#: mod/settings.php:942 +#: mod/settings.php:944 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: mod/settings.php:942 mod/settings.php:943 +#: mod/settings.php:944 mod/settings.php:945 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: mod/settings.php:943 +#: mod/settings.php:945 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: mod/settings.php:944 +#: mod/settings.php:946 msgid "Don't show emoticons" msgstr "Non mostrare le emoticons" -#: mod/settings.php:945 +#: mod/settings.php:947 msgid "Don't show notices" msgstr "Non mostrare gli avvisi" -#: mod/settings.php:946 +#: mod/settings.php:948 msgid "Infinite scroll" msgstr "Scroll infinito" -#: mod/settings.php:947 +#: mod/settings.php:949 msgid "Automatic updates only at the top of the network page" msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" -#: mod/settings.php:949 view/theme/cleanzero/config.php:82 -#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/duepuntozero/config.php:61 +#: mod/settings.php:951 view/theme/diabook/config.php:150 +#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 +#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 +#: view/theme/cleanzero/config.php:82 msgid "Theme settings" msgstr "Impostazioni tema" -#: mod/settings.php:1025 +#: mod/settings.php:1027 msgid "User Types" msgstr "Tipi di Utenti" -#: mod/settings.php:1026 +#: mod/settings.php:1028 msgid "Community Types" msgstr "Tipi di Comunità" -#: mod/settings.php:1027 +#: mod/settings.php:1029 msgid "Normal Account Page" msgstr "Pagina Account Normale" -#: mod/settings.php:1028 +#: mod/settings.php:1030 msgid "This account is a normal personal profile" msgstr "Questo account è un normale profilo personale" -#: mod/settings.php:1031 +#: mod/settings.php:1033 msgid "Soapbox Page" msgstr "Pagina Sandbox" -#: mod/settings.php:1032 +#: mod/settings.php:1034 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" -#: mod/settings.php:1035 +#: mod/settings.php:1037 msgid "Community Forum/Celebrity Account" msgstr "Account Celebrità/Forum comunitario" -#: mod/settings.php:1036 +#: mod/settings.php:1038 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" -#: mod/settings.php:1039 +#: mod/settings.php:1041 msgid "Automatic Friend Page" msgstr "Pagina con amicizia automatica" -#: mod/settings.php:1040 +#: mod/settings.php:1042 msgid "Automatically approve all connection/friend requests as friends" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" -#: mod/settings.php:1043 +#: mod/settings.php:1045 msgid "Private Forum [Experimental]" msgstr "Forum privato [sperimentale]" -#: mod/settings.php:1044 +#: mod/settings.php:1046 msgid "Private forum - approved members only" msgstr "Forum privato - solo membri approvati" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: mod/settings.php:1066 +#: mod/settings.php:1068 msgid "Publish your default profile in your local site directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" -#: mod/settings.php:1072 +#: mod/settings.php:1074 msgid "Publish your default profile in the global social directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" -#: mod/settings.php:1080 +#: mod/settings.php:1082 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" -#: mod/settings.php:1084 include/acl_selectors.php:330 +#: mod/settings.php:1086 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" -#: mod/settings.php:1084 +#: mod/settings.php:1086 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" -#: mod/settings.php:1089 +#: mod/settings.php:1091 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: mod/settings.php:1095 +#: mod/settings.php:1097 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di taggare i tuoi messaggi?" -#: mod/settings.php:1101 +#: mod/settings.php:1103 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" -#: mod/settings.php:1107 +#: mod/settings.php:1109 msgid "Permit unknown people to send you private mail?" msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" -#: mod/settings.php:1115 +#: mod/settings.php:1117 msgid "Profile is not published." msgstr "Il profilo non è pubblicato." -#: mod/settings.php:1123 +#: mod/settings.php:1125 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L'indirizzo della tua identità è '%s' or '%s'." -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i post automaticamente dopo x giorni:" -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: mod/settings.php:1131 +#: mod/settings.php:1133 msgid "Advanced expiration settings" msgstr "Impostazioni avanzate di scandenza" -#: mod/settings.php:1132 +#: mod/settings.php:1134 msgid "Advanced Expiration" msgstr "Scadenza avanzata" -#: mod/settings.php:1133 +#: mod/settings.php:1135 msgid "Expire posts:" msgstr "Fai scadere i post:" -#: mod/settings.php:1134 +#: mod/settings.php:1136 msgid "Expire personal notes:" msgstr "Fai scadere le Note personali:" -#: mod/settings.php:1135 +#: mod/settings.php:1137 msgid "Expire starred posts:" msgstr "Fai scadere i post Speciali:" -#: mod/settings.php:1136 +#: mod/settings.php:1138 msgid "Expire photos:" msgstr "Fai scadere le foto:" -#: mod/settings.php:1137 +#: mod/settings.php:1139 msgid "Only expire posts by others:" msgstr "Fai scadere solo i post degli altri:" -#: mod/settings.php:1163 +#: mod/settings.php:1165 msgid "Account Settings" msgstr "Impostazioni account" -#: mod/settings.php:1171 +#: mod/settings.php:1173 msgid "Password Settings" msgstr "Impostazioni password" -#: mod/settings.php:1172 mod/register.php:271 -msgid "New Password:" -msgstr "Nuova password:" - -#: mod/settings.php:1173 mod/register.php:272 -msgid "Confirm:" -msgstr "Conferma:" - -#: mod/settings.php:1173 +#: mod/settings.php:1175 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: mod/settings.php:1174 +#: mod/settings.php:1176 msgid "Current Password:" msgstr "Password Attuale:" -#: mod/settings.php:1174 mod/settings.php:1175 +#: mod/settings.php:1176 mod/settings.php:1177 msgid "Your current password to confirm the changes" msgstr "La tua password attuale per confermare le modifiche" -#: mod/settings.php:1175 +#: mod/settings.php:1177 msgid "Password:" msgstr "Password:" -#: mod/settings.php:1179 +#: mod/settings.php:1181 msgid "Basic Settings" msgstr "Impostazioni base" -#: mod/settings.php:1180 include/identity.php:538 +#: mod/settings.php:1182 include/identity.php:539 msgid "Full Name:" msgstr "Nome completo:" -#: mod/settings.php:1181 +#: mod/settings.php:1183 msgid "Email Address:" msgstr "Indirizzo Email:" -#: mod/settings.php:1182 +#: mod/settings.php:1184 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: mod/settings.php:1183 +#: mod/settings.php:1185 msgid "Default Post Location:" msgstr "Località predefinita:" -#: mod/settings.php:1184 +#: mod/settings.php:1186 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: mod/settings.php:1187 +#: mod/settings.php:1189 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: mod/settings.php:1189 +#: mod/settings.php:1191 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: mod/settings.php:1189 mod/settings.php:1219 +#: mod/settings.php:1191 mod/settings.php:1221 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: mod/settings.php:1190 +#: mod/settings.php:1192 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: mod/settings.php:1191 +#: mod/settings.php:1193 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: mod/settings.php:1202 +#: mod/settings.php:1204 msgid "Default Private Post" msgstr "Default Post Privato" -#: mod/settings.php:1203 +#: mod/settings.php:1205 msgid "Default Public Post" msgstr "Default Post Pubblico" -#: mod/settings.php:1207 +#: mod/settings.php:1209 msgid "Default Permissions for New Posts" msgstr "Permessi predefiniti per i nuovi post" -#: mod/settings.php:1219 +#: mod/settings.php:1221 msgid "Maximum private messages per day from unknown people:" msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" -#: mod/settings.php:1222 +#: mod/settings.php:1224 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: mod/settings.php:1223 +#: mod/settings.php:1225 msgid "By default post a status message when:" msgstr "Invia un messaggio di stato quando:" -#: mod/settings.php:1224 +#: mod/settings.php:1226 msgid "accepting a friend request" msgstr "accetti una richiesta di amicizia" -#: mod/settings.php:1225 +#: mod/settings.php:1227 msgid "joining a forum/community" msgstr "ti unisci a un forum/comunità" -#: mod/settings.php:1226 +#: mod/settings.php:1228 msgid "making an interesting profile change" msgstr "fai un interessante modifica al profilo" -#: mod/settings.php:1227 +#: mod/settings.php:1229 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: mod/settings.php:1228 +#: mod/settings.php:1230 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: mod/settings.php:1229 +#: mod/settings.php:1231 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: mod/settings.php:1230 +#: mod/settings.php:1232 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: mod/settings.php:1231 +#: mod/settings.php:1233 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: mod/settings.php:1232 +#: mod/settings.php:1234 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: mod/settings.php:1233 +#: mod/settings.php:1235 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: mod/settings.php:1234 +#: mod/settings.php:1236 msgid "You are tagged in a post" msgstr "Sei stato taggato in un post" -#: mod/settings.php:1235 +#: mod/settings.php:1237 msgid "You are poked/prodded/etc. in a post" msgstr "Sei 'toccato'/'spronato'/ecc. in un post" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Activate desktop notifications" msgstr "Attiva notifiche desktop" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Show desktop popup on new notifications" msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" -#: mod/settings.php:1239 +#: mod/settings.php:1241 msgid "Text-only notification emails" msgstr "Email di notifica in solo testo" -#: mod/settings.php:1241 +#: mod/settings.php:1243 msgid "Send text only notification emails, without the html part" msgstr "Invia le email di notifica in solo testo, senza la parte in html" -#: mod/settings.php:1243 +#: mod/settings.php:1245 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: mod/settings.php:1244 +#: mod/settings.php:1246 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: mod/settings.php:1247 +#: mod/settings.php:1249 msgid "Relocate" msgstr "Trasloca" -#: mod/settings.php:1248 +#: mod/settings.php:1250 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." -#: mod/settings.php:1249 +#: mod/settings.php:1251 msgid "Resend relocate message to contacts" msgstr "Reinvia il messaggio di trasloco" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/dirfind.php:36 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" +msgid "People Search - %s" +msgstr "Cerca persone - %s" -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Presentazione completa." +#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 +#: include/identity.php:188 include/contact_widgets.php:10 +msgid "Connect" +msgstr "Connetti" -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Conferma" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: mod/dfrn_request.php:840 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: mod/dfrn_request.php:845 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:857 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." - -#: mod/register.php:97 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
    login: %s
    password: %s

    Puoi cambiare la password dopo il login." - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." - -#: mod/register.php:188 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Lascia vuoto per generare automaticamente una password." - -#: mod/register.php:273 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrati" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "Importa il tuo profilo in questo server friendica" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" - -#: mod/search.php:100 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Cerca" - -#: mod/search.php:198 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" - -#: mod/search.php:200 -#, php-format -msgid "Search results for: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Elenco globale" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: mod/directory.php:129 mod/profiles.php:747 -msgid "Age: " -msgstr "Età : " - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Genere:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Stato:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: mod/delegate.php:132 -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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Aggiungi" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Nessuna voce." - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Amici in comune" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Esporta account" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Esporta tutto" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" - -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Umore" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Condividi il tuo umore con i tuoi amici" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: mod/suggest.php:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" +#: mod/dirfind.php:141 mod/match.php:77 +msgid "No matches" +msgstr "Nessun risultato" #: mod/profiles.php:37 msgid "Profile deleted." @@ -5073,7 +4728,7 @@ msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Dal [data]:" -#: mod/profiles.php:711 include/identity.php:569 +#: mod/profiles.php:711 include/identity.php:570 msgid "Sexual Preference:" msgstr "Preferenze sessuali:" @@ -5081,11 +4736,11 @@ msgstr "Preferenze sessuali:" msgid "Homepage URL:" msgstr "Homepage:" -#: mod/profiles.php:713 include/identity.php:573 +#: mod/profiles.php:713 include/identity.php:574 msgid "Hometown:" msgstr "Paese natale:" -#: mod/profiles.php:714 include/identity.php:577 +#: mod/profiles.php:714 include/identity.php:578 msgid "Political Views:" msgstr "Orientamento politico:" @@ -5101,11 +4756,11 @@ msgstr "Parole chiave visibili a tutti:" msgid "Private Keywords:" msgstr "Parole chiave private:" -#: mod/profiles.php:718 include/identity.php:585 +#: mod/profiles.php:718 include/identity.php:586 msgid "Likes:" msgstr "Mi piace:" -#: mod/profiles.php:719 include/identity.php:587 +#: mod/profiles.php:719 include/identity.php:588 msgid "Dislikes:" msgstr "Non mi piace:" @@ -5167,6 +4822,10 @@ msgid "" "be visible to anybody using the internet." msgstr "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet." +#: mod/profiles.php:747 mod/directory.php:129 +msgid "Age: " +msgstr "Età : " + #: mod/profiles.php:800 msgid "Edit/Manage Profiles" msgstr "Modifica / Gestisci profili" @@ -5191,153 +4850,284 @@ msgstr "visibile a tutti" msgid "Edit visibility" msgstr "Modifica visibilità" -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" +#: mod/share.php:38 +msgid "link" +msgstr "collegamento" -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Modifica messaggio" +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Esporta account" -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "carica foto" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Allega file" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "allega file" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "link web" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "link video" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "link audio" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "La tua posizione" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "posizione" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "canc. pos." - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Scegli un titolo" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: mod/friendica.php:62 +#: mod/uexport.php:77 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Esporta tutto" -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "il bugtracker su github" - -#: mod/friendica.php:65 +#: mod/uexport.php:78 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" -#: mod/api.php:104 +#: mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 +#: include/nav.php:139 +msgid "Community" +msgstr "Comunità" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: mod/wall_attach.php:83 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: mod/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Il file supera la dimensione massima di %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" + +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Visibile a" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: mod/suggest.php:69 view/theme/diabook/theme.php:527 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: mod/suggest.php:76 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." -#: mod/notes.php:44 include/identity.php:675 +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" + +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." + +#: mod/delegate.php:130 include/nav.php:179 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: mod/delegate.php:132 +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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Aggiungi" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Nessuna voce." + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Nessun contatto." + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: mod/notes.php:44 include/identity.php:676 msgid "Personal Notes" msgstr "Note personali" -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatario" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendi questo post privato" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Elenco globale" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Genere:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "Stato:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" @@ -5370,303 +5160,440 @@ msgstr "Ora locale convertita: %s" msgid "Please select your timezone:" msgstr "Selezionare il tuo fuso orario:" -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." - -#: mod/invite.php:49 +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento del'immagine [%s] è fallito." -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Unisiciti a noi su Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: mod/invite.php:120 -#, php-format +#: mod/profile_photo.php:118 msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." -#: mod/invite.php:122 -#, php-format +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Carica un file:" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: mod/profile_photo.php:245 +#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 +msgid "Upload" +msgstr "Carica" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "o" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'imagine per una visualizzazione migliore." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Finito" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Comunicazione Server - Impostazioni" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr " Impossibile collegarsi con il database." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "Il tuo Friendica è stato installato." + +#: mod/install.php:140 msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" -#: mod/invite.php:123 -#, php-format +#: mod/install.php:141 mod/install.php:208 mod/install.php:537 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Leggi il file \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "Database già in uso." + +#: mod/install.php:205 +msgid "System check" +msgstr "Controllo sistema" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Controlla ancora" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Connessione al database" + +#: mod/install.php:230 msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." -#: mod/invite.php:126 +#: mod/install.php:231 msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Invia inviti" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: mod/invite.php:135 +#: mod/install.php:232 msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Nome del database server" -#: mod/invite.php:137 +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Nome utente database" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Password utente database" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Nome database" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" + +#: mod/install.php:240 mod/install.php:279 msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." -#: mod/invite.php:139 +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Impostazioni sito" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" + +#: mod/install.php:324 msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" +"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. See 'Activating scheduled tasks'" +msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'" -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "Percorso eseguibile PHP" -#: mod/photos.php:84 include/identity.php:651 -msgid "Photo Albums" -msgstr "Album foto" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album non trovato." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Carica foto" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Permessi" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Foto privata" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Modifica album" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Vedi foto" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Vedi foto" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Modifica foto" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tag: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Titolo" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: mod/photos.php:1522 +#: mod/install.php:328 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Non ruotare" +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Versione PHP:" -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Foto privata" +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "Binario PHP cli" -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Foto pubblica" +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Condividi" +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "modulo PHP mysqli" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: mod/install.php:395 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:400 mod/install.php:402 +msgid "Apache mod_rewrite module" +msgstr "Modulo mod_rewrite di Apache" + +#: mod/install.php:400 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" + +#: mod/install.php:408 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:412 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." + +#: mod/install.php:416 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:420 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" + +#: mod/install.php:424 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." + +#: mod/install.php:428 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:447 +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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." + +#: mod/install.php:448 +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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." + +#: mod/install.php:449 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" + +#: mod/install.php:450 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." + +#: mod/install.php:453 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: mod/install.php:463 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." + +#: mod/install.php:464 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." + +#: mod/install.php:465 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." + +#: mod/install.php:466 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." + +#: mod/install.php:469 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 è scrivibile" + +#: mod/install.php:485 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." + +#: mod/install.php:487 +msgid "Url rewrite is working" +msgstr "La riscrittura degli url funziona" + +#: mod/install.php:496 +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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." + +#: mod/install.php:535 +msgid "

    What next

    " +msgstr "

    Cosa fare ora

    " + +#: mod/install.php:536 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." #: mod/p.php:9 msgid "Not Extended" msgstr "Not Extended" +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Salva gruppo" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Modifica gruppo" + +#: mod/group.php:190 +msgid "Members" +msgstr "Membri" + +#: mod/content.php:119 mod/network.php:532 +msgid "No such group" +msgstr "Nessun gruppo" + +#: mod/content.php:130 mod/network.php:549 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: mod/content.php:135 mod/network.php:560 +#, php-format +msgid "Group: %s" +msgstr "Gruppo: %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Vedi nel contesto" + #: mod/regmod.php:55 msgid "Account approved." msgstr "Account approvato." @@ -5680,44 +5607,523 @@ msgstr "Registrazione revocata per %s" msgid "Please login." msgstr "Accedi." -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" +#: mod/match.php:18 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." +#: mod/match.php:27 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." -#: mod/uimport.php:68 +#: mod/match.php:69 +msgid "is interested in:" +msgstr "è interessato a:" + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: mod/item.php:989 +#, php-format msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." -#: mod/uimport.php:69 +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: mod/item.php:992 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." -#: mod/uimport.php:70 -msgid "Account file" -msgstr "File account" +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." -#: mod/uimport.php:70 +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Umore" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "aggiungi" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: mod/network.php:385 +msgid "New" +msgstr "Nuovo" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "Links condivisi" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: mod/network.php:405 +msgid "Starred" +msgstr "Preferiti" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: mod/network.php:466 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." +msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." + +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." + +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "Contatto: %s" + +#: mod/network.php:582 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." + +#: mod/network.php:587 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Contatto modificato." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" + +#: mod/crepair.php:142 msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Non duplicare" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Ricarica dati contatto" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Nome utente" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "URL dell'utente" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Io remoto" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." + +#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: view/theme/diabook/theme.php:124 include/nav.php:77 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: view/theme/diabook/theme.php:126 include/nav.php:78 +msgid "Your photos" +msgstr "Le tue foto" + +#: view/theme/diabook/theme.php:127 include/nav.php:80 +msgid "Your events" +msgstr "I tuoi eventi" + +#: view/theme/diabook/theme.php:128 include/nav.php:81 +msgid "Personal notes" +msgstr "Note personali" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 +#: view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 +#: view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Ultimi utenti" + +#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 +#: view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: view/theme/diabook/theme.php:463 include/text.php:2032 +#: include/conversation.php:118 include/conversation.php:245 +msgid "event" +msgstr "l'evento" + +#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Ultime foto" + +#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 +#: view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Trova Amici" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Elenco Locale" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Interessi simili" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Invita amici" + +#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 +#: view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" + +#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" + +#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" + +#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 +#: view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" + +#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 +#: view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Servizi di conessione" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:337 +msgid "don't show" +msgstr "non mostrare" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:336 +msgid "show" +msgstr "mostra" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 +#: view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" + +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Imposta stile" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: view/theme/duepuntozero/config.php:44 include/text.php:1768 +#: include/user.php:255 +msgid "default" +msgstr "default" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Varianti" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Schema colori" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 +msgid "Click here to download" +msgstr "" + +#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 +#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 +msgid "Create new pull request" +msgstr "" + +#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 +msgid "Reload active plugins" +msgstr "" + +#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 +msgid "Drop contact" +msgstr "" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 +msgid "Public projects on this node" +msgstr "" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " +"undone." +msgstr "" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 +msgid "Visibility" +msgstr "" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 +msgid "Create" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 +msgid "No pull requests to show" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 +msgid "opened by" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 +msgid "closed" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 +msgid "merged" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 +msgid "Projects" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 +msgid "add new" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 +msgid "delete" +msgstr "" + +#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 +#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 +#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 +msgid "Clone this project:" +msgstr "" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 +msgid "New pull request" +msgstr "" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 +msgid "Can't show you the diff at the moment. Sorry" +msgstr "" #: boot.php:763 msgid "Delete this item?" @@ -5776,144 +6182,6 @@ msgstr "Politiche di privacy del sito" msgid "privacy policy" msgstr "politiche di privacy" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: object/Item.php:214 -msgid "ignored" -msgstr "ignorato" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Categorie:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: object/Item.php:331 -msgid "via" -msgstr "via" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Il messaggio di errore è\n[pre]%s[/pre]" - -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." - -#: include/auth.php:38 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: include/auth.php:128 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." - -#: include/auth.php:128 include/user.php:75 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trova persone" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" - -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Invita amici" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Reti" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: include/contact_widgets.php:104 include/features.php:60 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tutto" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorie" - #: include/features.php:23 msgid "General Features" msgstr "Funzionalità generali" @@ -6051,6 +6319,10 @@ msgstr "Cateorie post" msgid "Add categories to your posts" msgstr "Aggiungi categorie ai tuoi post" +#: include/features.php:60 include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Cartelle Salvate" + #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "Permette di archiviare i post in cartelle" @@ -6079,517 +6351,35 @@ msgstr "Silenzia le notifiche di nuovi post" msgid "Ability to mute notifications for a thread" msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" -#: include/follow.php:75 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." +#: include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." -#: include/follow.php:102 +#: include/auth.php:128 include/user.php:75 msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." -#: include/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." +#: include/event.php:22 include/bb2diaspora.php:154 +msgid "Starts:" +msgstr "Inizia:" -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." - -#: include/follow.php:129 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." - -#: include/follow.php:130 -msgid "Use mailto: in front of address to force email check." -msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." - -#: include/follow.php:136 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." - -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." - -#: include/follow.php:249 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." - -#: include/follow.php:302 -msgid "following" -msgstr "segue" - -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Tutti" - -#: include/group.php:249 -msgid "edit" -msgstr "modifica" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG o MM-GG" - -#: include/datetime.php:256 -msgid "never" -msgstr "mai" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: include/datetime.php:272 -msgid "year" -msgstr "anno" - -#: include/datetime.php:272 -msgid "years" -msgstr "anni" - -#: include/datetime.php:273 -msgid "month" -msgstr "mese" - -#: include/datetime.php:273 -msgid "months" -msgstr "mesi" - -#: include/datetime.php:274 -msgid "week" -msgstr "settimana" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "settimane" - -#: include/datetime.php:275 -msgid "day" -msgstr "giorno" - -#: include/datetime.php:275 -msgid "days" -msgstr "giorni" - -#: include/datetime.php:276 -msgid "hour" -msgstr "ora" - -#: include/datetime.php:276 -msgid "hours" -msgstr "ore" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minuti" - -#: include/datetime.php:278 -msgid "second" -msgstr "secondo" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "secondi" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: include/datetime.php:459 include/items.php:2432 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" - -#: include/datetime.php:460 include/items.php:2433 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Modifica il profilo" - -#: include/identity.php:220 -msgid "Message" -msgstr "Messaggio" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profili" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: include/identity.php:341 -msgid "Network:" -msgstr "Rete:" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "g A l d F" - -#: include/identity.php:374 include/identity.php:460 -msgid "F d" -msgstr "d F" - -#: include/identity.php:419 include/identity.php:506 -msgid "[today]" -msgstr "[oggi]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Promemoria" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: include/identity.php:545 -msgid "j F, Y" -msgstr "j F Y" - -#: include/identity.php:546 -msgid "j F" -msgstr "j F" - -#: include/identity.php:553 -msgid "Birthday:" -msgstr "Compleanno:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Età:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Religione:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Interessi musicali:" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Televisione:" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Amore:" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "Scuola:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Stato" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" - -#: include/identity.php:643 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 -msgid "Videos" -msgstr "Video" - -#: include/identity.php:670 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: include/identity.php:678 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Invia a email" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "show" -msgstr "mostra" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "non mostrare" +#: include/event.php:32 include/bb2diaspora.php:162 +msgid "Finishes:" +msgstr "Finisce:" #: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "[nessun oggetto]" -#: include/Contact.php:119 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Stuzzica" - -#: include/Contact.php:233 include/conversation.php:875 -msgid "View Status" -msgstr "Visualizza stato" - -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: include/Contact.php:235 include/conversation.php:877 -msgid "View Photos" -msgstr "Visualizza foto" - -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 -msgid "Network Posts" -msgstr "Post della Rete" - -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Ciao" - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " - -#: include/security.php:375 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." - -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "l'evento" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "post/elemento" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: include/conversation.php:771 -msgid "remove" -msgstr "rimuovi" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: include/conversation.php:965 -msgid "and" -msgstr "e" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "permessi" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Post privato" - -#: include/network.php:959 -msgid "view full size" -msgstr "vedi a schermo intero" +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr "su Last.fm" #: include/text.php:299 msgid "newer" @@ -6866,11 +6656,6 @@ msgstr "Vedi in una pagina separata" msgid "view on separate page" msgstr "vedi in una pagina separata" -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "default" - #: include/text.php:1780 msgid "Select an alternate language" msgstr "Seleziona una diversa lingua" @@ -6887,303 +6672,6 @@ msgstr "messaggio" msgid "Item filed" msgstr "Messaggio salvato" -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: include/bbcode.php:556 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:590 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente messaggio" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: include/notifier.php:830 include/delivery.php:456 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 -msgid "noreply" -msgstr "nessuna risposta" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Connettore Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:22 -msgid "Starts:" -msgstr "Inizia:" - -#: include/bb2diaspora.php:162 include/event.php:32 -msgid "Finishes:" -msgstr "Finisce:" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." - -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: include/nav.php:77 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: include/nav.php:78 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Le tue foto" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "I tuoi video" - -#: include/nav.php:80 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "I tuoi eventi" - -#: include/nav.php:81 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Note personali" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Entra" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Applicazioni" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Conversazioni nella rete" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Elenco" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Elenco delle persone" - -#: include/nav.php:143 -msgid "Information" -msgstr "Informazioni" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Posta privata" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "In arrivo" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Inviati" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Gestisci" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Parametri account" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigazione" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Mappa del sito" - #: include/api.php:321 include/api.php:332 include/api.php:441 #: include/api.php:1141 include/api.php:1143 msgid "User not found." @@ -7224,131 +6712,259 @@ msgstr "Azione non valida." msgid "DB error" msgstr "Errore database" -#: include/user.php:48 -msgid "An invitation is required." -msgstr "E' richiesto un invito." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Il nome è troppo corto." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." - -#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amici" - -#: include/user.php:385 +#: include/dba.php:56 include/dba_pdo.php:72 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: include/user.php:389 +#: include/items.php:2445 include/datetime.php:459 #, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" +msgid "%s's birthday" +msgstr "Compleanno di %s" -#: include/diaspora.php:717 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" +#: include/items.php:2446 include/datetime.php:460 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" -#: include/diaspora.php:2560 -msgid "Attachments:" -msgstr "Allegati:" - -#: include/items.php:4853 +#: include/items.php:4866 msgid "Do you really want to delete this item?" msgstr "Vuoi veramente cancellare questo elemento?" -#: include/items.php:5128 +#: include/items.php:5141 msgid "Archives" msgstr "Archivi" +#: include/delivery.php:456 include/notifier.php:834 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 +msgid "noreply" +msgstr "nessuna risposta" + +#: include/diaspora.php:716 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: include/diaspora.php:2567 +msgid "Attachments:" +msgstr "Allegati:" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: include/identity.php:220 +msgid "Message" +msgstr "Messaggio" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Profili" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: include/identity.php:342 +msgid "Network:" +msgstr "Rete:" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "g A l d F" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "d F" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "[oggi]" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "Promemoria" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "j F Y" + +#: include/identity.php:547 +msgid "j F" +msgstr "j F" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "Compleanno:" + +#: include/identity.php:558 +msgid "Age:" +msgstr "Età:" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "Religione:" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: include/identity.php:597 +msgid "Television:" +msgstr "Televisione:" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "Amore:" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "Scuola:" + +#: include/identity.php:633 include/nav.php:76 +msgid "Status" +msgstr "Stato" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +msgid "Videos" +msgstr "Video" + +#: include/identity.php:671 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: include/identity.php:679 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" + +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." + +#: include/follow.php:102 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." + +#: include/follow.php:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." + +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." + +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" + +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." + +#: include/follow.php:129 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." + +#: include/follow.php:130 +msgid "Use mailto: in front of address to force email check." +msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." + +#: include/follow.php:136 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." + +#: include/follow.php:146 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." + +#: include/follow.php:253 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." + +#: include/follow.php:306 +msgid "following" +msgstr "segue" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Ciao" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Carica una foto per il profilo." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Ciao " + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." + #: include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -7493,6 +7109,10 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 +msgid "Friends" +msgstr "Amici" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amici con benefici" @@ -7577,6 +7197,461 @@ msgstr "Non interessa" msgid "Ask me" msgstr "Chiedimelo" +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" + +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "post/elemento" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" + +#: include/conversation.php:771 +msgid "remove" +msgstr "rimuovi" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: include/conversation.php:875 include/Contact.php:233 +msgid "View Status" +msgstr "Visualizza stato" + +#: include/conversation.php:876 include/Contact.php:234 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: include/conversation.php:877 include/Contact.php:235 +msgid "View Photos" +msgstr "Visualizza foto" + +#: include/conversation.php:878 include/Contact.php:236 +#: include/Contact.php:259 +msgid "Network Posts" +msgstr "Post della Rete" + +#: include/conversation.php:879 include/Contact.php:237 +#: include/Contact.php:259 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: include/conversation.php:880 include/Contact.php:239 +#: include/Contact.php:259 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: include/conversation.php:881 include/Contact.php:232 +msgid "Poke" +msgstr "Stuzzica" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: include/conversation.php:965 +msgid "and" +msgstr "e" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "permessi" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Post privato" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Reti" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tutte le Reti" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tutto" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorie" + +#: include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "I tuoi video" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Le tue note personali" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Entra" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Home Page" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Crea un account" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Applicazioni" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Conversazioni nella rete" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Elenco" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Elenco delle persone" + +#: include/nav.php:143 +msgid "Information" +msgstr "Informazioni" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Posta privata" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "In arrivo" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Inviati" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Gestisci" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Parametri account" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigazione" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Mappa del sito" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Notifica Friendica" @@ -7860,6 +7935,148 @@ msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" msgid "Please visit %s to approve or reject the request." msgstr "Visita %s per approvare o rifiutare la richiesta." +#: include/user.php:48 +msgid "An invitation is required." +msgstr "E' richiesto un invito." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Il nome è troppo corto." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." + +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Invia a email" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: include/bbcode.php:556 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:590 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente messaggio" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Contenuto criptato" + #: include/oembed.php:220 msgid "Embedded content" msgstr "Contenuto incorporato" @@ -7868,204 +8085,147 @@ msgstr "Contenuto incorporato" msgid "Embedding disabled" msgstr "Embed disabilitato" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Errore! Non posso controllare il nickname" +#: include/group.php:226 +msgid "Everybody" +msgstr "Tutti" -#: include/uimport.php:120 include/uimport.php:131 +#: include/group.php:249 +msgid "edit" +msgstr "modifica" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG o MM-GG" + +#: include/datetime.php:256 +msgid "never" +msgstr "mai" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: include/datetime.php:272 +msgid "year" +msgstr "anno" + +#: include/datetime.php:272 +msgid "years" +msgstr "anni" + +#: include/datetime.php:273 +msgid "month" +msgstr "mese" + +#: include/datetime.php:273 +msgid "months" +msgstr "mesi" + +#: include/datetime.php:274 +msgid "week" +msgstr "settimana" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "settimane" + +#: include/datetime.php:275 +msgid "day" +msgstr "giorno" + +#: include/datetime.php:275 +msgid "days" +msgstr "giorni" + +#: include/datetime.php:276 +msgid "hour" +msgstr "ora" + +#: include/datetime.php:276 +msgid "hours" +msgstr "ore" + +#: include/datetime.php:277 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "minuti" + +#: include/datetime.php:278 +msgid "second" +msgstr "secondo" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "secondi" + +#: include/datetime.php:287 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Errore creando l'utente" +#: include/network.php:959 +msgid "view full size" +msgstr "vedi a schermo intero" -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" - -#: include/uimport.php:222 +#: include/dbstructure.php:26 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contatto non importato" -msgstr[1] "%d contatti non importati" +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Il messaggio di errore è\n[pre]%s[/pre]" -#: index.php:441 -msgid "toggle mobile" -msgstr "commuta tema mobile" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" - -#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 -#: view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" - -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schema colori" - -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Livello di zoom per Earth Layer" - -#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitudine (X) per Earth Layers" - -#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitudine (Y) per Earth Layers" - -#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Pagine Comunitarie" - -#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 -#: view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trova Amici" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Ultimi utenti" - -#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 -#: view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ultime foto" - -#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 -#: view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Livello di zoom per Earth Layers" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Imposta stile" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Varianti" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." diff --git a/view/it/strings.php b/view/it/strings.php index 3ccaba7f42..2e186c8b8f 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,281 +5,123 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "%d contatto modificato", - 1 => "%d contatti modificati", -); -$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; -$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -$a->strings["Contact updated."] = "Contatto aggiornato."; -$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; -$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; -$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; -$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; -$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; -$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; -$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; -$a->strings["Yes"] = "Si"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; -$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; -$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; -$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; -$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; -$a->strings["Never"] = "Mai"; -$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; -$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; -$a->strings["Suggest friends"] = "Suggerisci amici"; -$a->strings["Network type: %s"] = "Tipo di rete: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Block"] = "Blocca"; -$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; -$a->strings["Unarchive"] = "Dearchivia"; -$a->strings["Archive"] = "Archivia"; -$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; -$a->strings["Repair"] = "Ripara"; -$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; -$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; -$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; -$a->strings["Disabled"] = "Disabilitato"; -$a->strings["Fetch information"] = "Recupera informazioni"; -$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; -$a->strings["Contact Editor"] = "Editor dei Contatti"; -$a->strings["Submit"] = "Invia"; -$a->strings["Profile Visibility"] = "Visibilità del profilo"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; -$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; -$a->strings["Edit contact notes"] = "Modifica note contatto"; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; -$a->strings["Ignore contact"] = "Ignora il contatto"; -$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; -$a->strings["View conversations"] = "Vedi conversazioni"; -$a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Currently blocked"] = "Bloccato"; -$a->strings["Currently ignored"] = "Ignorato"; -$a->strings["Currently archived"] = "Al momento archiviato"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; -$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; -$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; -$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; -$a->strings["Profile URL"] = "URL Profilo"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; -$a->strings["All Contacts"] = "Tutti i contatti"; -$a->strings["Show all contacts"] = "Mostra tutti i contatti"; -$a->strings["Unblocked"] = "Sbloccato"; -$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; -$a->strings["Blocked"] = "Bloccato"; -$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; -$a->strings["Ignored"] = "Ignorato"; -$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; -$a->strings["Archived"] = "Achiviato"; -$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; -$a->strings["Hidden"] = "Nascosto"; -$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; -$a->strings["Contacts"] = "Contatti"; -$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Find"] = "Trova"; -$a->strings["Update"] = "Aggiorna"; +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Edit"] = "Modifica"; +$a->strings["Select"] = "Seleziona"; $a->strings["Delete"] = "Rimuovi"; -$a->strings["Mutual Friendship"] = "Amicizia reciproca"; -$a->strings["is a fan of yours"] = "è un tuo fan"; -$a->strings["you are a fan of"] = "sei un fan di"; -$a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Public access denied."] = "Accesso negato."; -$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = "Come Iniziare"; -$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; -$a->strings["Login failed."] = "Accesso fallito."; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Image exceeds size limit of %s"] = "La dimensione dell'immagine supera il limite di %s"; -$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = "Seleziona un profilo:"; -$a->strings["Upload"] = "Carica"; -$a->strings["or"] = "o"; -$a->strings["skip this step"] = "salta questo passaggio"; -$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -$a->strings["Crop Image"] = "Ritaglia immagine"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; -$a->strings["Done Editing"] = "Finito"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "stato"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["Save"] = "Salva"; -$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; -$a->strings["Please answer the following:"] = "Rispondi:"; -$a->strings["Does %s know you?"] = "%s ti conosce?"; -$a->strings["No"] = "No"; -$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Save Group"] = "Salva gruppo"; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["ignore thread"] = "ignora la discussione"; +$a->strings["unignore thread"] = "non ignorare la discussione"; +$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; +$a->strings["ignored"] = "ignorato"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato in:"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["to"] = "a"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["Comment"] = "Commento"; +$a->strings["Please wait"] = "Attendi"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "commento", +); +$a->strings["show more"] = "mostra di più"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Submit"] = "Invia"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Anteprima"; $a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; -$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; $a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; -$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; -$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; -$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; -$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; -$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; -$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; -$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; -$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; -$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; -$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; -$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; -$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; -$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; -$a->strings["Delete Video"] = "Rimuovi video"; -$a->strings["No videos selected"] = "Nessun video selezionato"; -$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; -$a->strings["View Video"] = "Guarda Video"; -$a->strings["View Album"] = "Sfoglia l'album"; -$a->strings["Recent Videos"] = "Video Recenti"; -$a->strings["Upload New Videos"] = "Carica Nuovo Video"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; $a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; $a->strings["Suggest Friends"] = "Suggerisci amici"; $a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["Invalid request."] = "Richiesta non valida."; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; -$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; -$a->strings["Password Reset"] = "Reimpostazione password"; -$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per entrare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; -$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; -$a->strings["Nickname or Email: "] = "Nome utente o email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["No contacts."] = "Nessun contatto."; -$a->strings["View Contacts"] = "Visualizza i contatti"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Confirm"] = "Conferma"; +$a->strings["Hide this contact"] = "Nascondi questo contatto"; +$a->strings["Welcome home %s."] = "Bentornato a casa %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["Public access denied."] = "Accesso negato."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; +$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Rispondi:"; +$a->strings["Does %s know you?"] = "%s ti conosce?"; +$a->strings["No"] = "No"; +$a->strings["Yes"] = "Si"; +$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; +$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; +$a->strings["Submit Request"] = "Invia richiesta"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["View Video"] = "Guarda Video"; +$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; $a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; $a->strings["Discard"] = "Scarta"; +$a->strings["Ignore"] = "Ignora"; $a->strings["System"] = "Sistema"; $a->strings["Network"] = "Rete"; $a->strings["Personal"] = "Personale"; @@ -290,6 +132,7 @@ $a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; $a->strings["Notification type: "] = "Tipo di notifica: "; $a->strings["Friend Suggestion"] = "Amico suggerito"; $a->strings["suggested by %s"] = "sugerito da %s"; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; $a->strings["if applicable"] = "se applicabile"; $a->strings["Approve"] = "Approva"; @@ -322,6 +165,13 @@ $a->strings["No more personal notifications."] = "Nessuna nuova."; $a->strings["Personal Notifications"] = "Notifiche personali"; $a->strings["No more home notifications."] = "Nessuna nuova."; $a->strings["Home Notifications"] = "Notifiche bacheca"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "stato"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["Login failed."] = "Accesso fallito."; $a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; $a->strings["Source input: "] = "Sorgente:"; @@ -334,72 +184,6 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; $a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", -); -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["Refetch contact data"] = "Ricarica dati contatto"; -$a->strings["Name"] = "Nome"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; -$a->strings["Remote Self"] = "Io remoto"; -$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; -$a->strings["Login"] = "Accedi"; -$a->strings["The post was created"] = "Il messaggio è stato creato"; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["People Search - %s"] = "Cerca persone - %s"; -$a->strings["Connect"] = "Connetti"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Photos"] = "Foto"; -$a->strings["Files"] = "File"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; $a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; @@ -414,6 +198,7 @@ $a->strings["Admin"] = "Amministrazione"; $a->strings["Plugin Features"] = "Impostazioni Plugins"; $a->strings["diagnostics"] = "diagnostiche"; $a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; +$a->strings["Item not found."] = "Elemento non trovato."; $a->strings["Administration"] = "Amministrazione"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Nome Destinatario"; @@ -434,19 +219,22 @@ $a->strings["Pending registrations"] = "Registrazioni in attesa"; $a->strings["Version"] = "Versione"; $a->strings["Active plugins"] = "Plugin attivi"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; $a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; $a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; $a->strings["No community page"] = "Nessuna pagina Comunità"; $a->strings["Public postings from users of this site"] = "Messaggi pubblici dagli utenti di questo sito"; $a->strings["Global community page"] = "Pagina Comunità globale"; +$a->strings["Never"] = "Mai"; $a->strings["At post arrival"] = "All'arrivo di un messaggio"; $a->strings["Frequently"] = "Frequentemente"; $a->strings["Hourly"] = "Ogni ora"; $a->strings["Twice daily"] = "Due volte al dì"; $a->strings["Daily"] = "Giornalmente"; +$a->strings["Disabled"] = "Disabilitato"; $a->strings["Users, Global Contacts"] = "Utenti, Contatti Globali"; $a->strings["Users, Global Contacts/fallback"] = "Utenti, Contatti Globali/fallback"; -$a->strings["One month"] = "Un meso"; +$a->strings["One month"] = "Un mese"; $a->strings["Three months"] = "Tre mesi"; $a->strings["Half a year"] = "Sei mesi"; $a->strings["One year"] = "Un anno"; @@ -512,8 +300,8 @@ $a->strings["Block public"] = "Blocca pagine pubbliche"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; $a->strings["Force publish"] = "Forza publicazione"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; -$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; +$a->strings["Global directory URL"] = "URL della directory globale"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; $a->strings["Allow threaded items"] = "Permetti commenti nidificati"; $a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; $a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; @@ -562,6 +350,8 @@ $a->strings["Maximum Load Average (Frontend)"] = "Media Massimo Carico (Frontend $a->strings["Maximum system load before the frontend quits service - default 50."] = "Massimo carico di sistema prima che il frontend fermi il servizio - default 50."; $a->strings["Periodical check of global contacts"] = "Check periodico dei contatti globali"; $a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server."; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; $a->strings["Discover contacts from other servers"] = "Trova contatti dagli altri server"; $a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"."; $a->strings["Timeframe for fetching global contacts"] = "Termine per il recupero contatti globali"; @@ -632,9 +422,12 @@ $a->strings["select all"] = "seleziona tutti"; $a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; $a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva"; $a->strings["Request date"] = "Data richiesta"; +$a->strings["Name"] = "Nome"; $a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $a->strings["Deny"] = "Nega"; +$a->strings["Block"] = "Blocca"; +$a->strings["Unblock"] = "Sblocca"; $a->strings["Site admin"] = "Amministrazione sito"; $a->strings["Account expired"] = "Account scaduto"; $a->strings["New User"] = "Nuovo Utente"; @@ -654,6 +447,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; $a->strings["Disable"] = "Disabilita"; $a->strings["Enable"] = "Abilita"; $a->strings["Toggle"] = "Inverti"; +$a->strings["Settings"] = "Impostazioni"; $a->strings["Author: "] = "Autore: "; $a->strings["Maintainer: "] = "Manutentore: "; $a->strings["No themes found."] = "Nessun tema trovato."; @@ -666,39 +460,83 @@ $a->strings["Enable Debugging"] = "Abilita Debugging"; $a->strings["Log file"] = "File di Log"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; $a->strings["Log level"] = "Livello di Log"; +$a->strings["Update now"] = "Aggiorna adesso"; $a->strings["Close"] = "Chiudi"; $a->strings["FTP Host"] = "Indirizzo FTP"; $a->strings["FTP Path"] = "Percorso FTP"; $a->strings["FTP User"] = "Utente FTP"; $a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["add"] = "aggiungi"; -$a->strings["Commented Order"] = "Ordina per commento"; -$a->strings["Sort by Comment Date"] = "Ordina per data commento"; -$a->strings["Posted Order"] = "Ordina per invio"; -$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; -$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; -$a->strings["New"] = "Nuovo"; -$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; -$a->strings["Shared Links"] = "Links condivisi"; -$a->strings["Interesting Links"] = "Link Interessanti"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Messaggi preferiti"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", - 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; +$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["Insert web link"] = "Inserisci link"; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["%d message"] = array( + 0 => "%d messaggio", + 1 => "%d messaggi", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: %s"] = "Gruppo: %s"; -$a->strings["Contact: %s"] = "Contatto: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; -$a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["Save"] = "Salva"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserire collegamento video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci collegamento audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua posizione"; +$a->strings["set location"] = "posizione"; +$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; +$a->strings["clear location"] = "canc. pos."; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Public post"] = "Messaggio pubblico"; +$a->strings["Set title"] = "Scegli un titolo"; +$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; +$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; +$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; +$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; +$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; +$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; $a->strings["Event can not end before it has started."] = "Un evento non puo' finire prima di iniziare."; $a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; $a->strings["l, F j"] = "l j F"; @@ -718,134 +556,306 @@ $a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di ch $a->strings["Description:"] = "Descrizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Select"] = "Seleziona"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["%s from %s"] = "%s da %s"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["show more"] = "mostra di più"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Comment"] = "Commento"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; -$a->strings["Image"] = "Immagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Edit"] = "Modifica"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; -$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; -$a->strings["Could not create table."] = "Impossibile creare le tabelle."; -$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Database già in uso."; -$a->strings["System check"] = "Controllo sistema"; -$a->strings["Check again"] = "Controlla ancora"; -$a->strings["Database connection"] = "Connessione al database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Nome del database server"; -$a->strings["Database Login Name"] = "Nome utente database"; -$a->strings["Database Login Password"] = "Password utente database"; -$a->strings["Database Name"] = "Nome database"; -$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; -$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; -$a->strings["Site settings"] = "Impostazioni sito"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; -$a->strings["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. See 'Activating scheduled tasks'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; -$a->strings["Command line PHP"] = "PHP da riga di comando"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; -$a->strings["Found PHP version: "] = "Versione PHP:"; -$a->strings["PHP cli binary"] = "Binario PHP cli"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; -$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; -$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; -$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; -$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; -$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; -$a->strings["

    What next

    "] = "

    Cosa fare ora

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; +$a->strings["Photos"] = "Foto"; +$a->strings["Files"] = "File"; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; $a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; $a->strings["No recipient."] = "Nessun destinatario."; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["Edit contact"] = "Modifca contatto"; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; +$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; +$a->strings["the bugtracker at github"] = "il bugtracker su github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; +$a->strings["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Invalid request."] = "Richiesta non valida."; +$a->strings["Image exceeds size limit of %s"] = "La dimensione dell'immagine supera il limite di %s"; +$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Effettua il login per continuare."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["everybody"] = "tutti"; +$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Rimuovi album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; +$a->strings["Delete Photo"] = "Rimuovi foto"; +$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["New album name: "] = "Nome nuovo album: "; +$a->strings["or existing album name: "] = "o nome di un album esistente: "; +$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Show to Groups"] = "Mostra ai gruppi"; +$a->strings["Show to Contacts"] = "Mostra ai contatti"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["Public Photo"] = "Foto pubblica"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; +$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; +$a->strings["View Photo"] = "Vedi foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["View photo"] = "Vedi foto"; +$a->strings["Edit photo"] = "Modifica foto"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["View Full Size"] = "Vedi dimensione intera"; +$a->strings["Tags: "] = "Tag: "; +$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; +$a->strings["New album name"] = "Nuovo nome dell'album"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Non ruotare"; +$a->strings["Rotate CW (right)"] = "Ruota a destra"; +$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; +$a->strings["Private photo"] = "Foto privata"; +$a->strings["Public photo"] = "Foto pubblica"; +$a->strings["Share"] = "Condividi"; +$a->strings["View Album"] = "Sfoglia l'album"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Si è verificato un errore inviando l'email. I dettagli del tuo account:
    login: %s
    password: %s

    Puoi cambiare la password dopo il login."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; +$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; +$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; +$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; +$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; +$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Leave empty for an auto generated password."] = "Lascia vuoto per generare automaticamente una password."; +$a->strings["Confirm:"] = "Conferma:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; +$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; +$a->strings["Register"] = "Registrati"; +$a->strings["Import"] = "Importa"; +$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; +$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per entrare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; +$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; +$a->strings["Nickname or Email: "] = "Nome utente o email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; $a->strings["Help:"] = "Guida:"; $a->strings["Help"] = "Guida"; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; -$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; -$a->strings["File exceeds size limit of %s"] = "Il file supera la dimensione massima di %s"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["link"] = "collegamento"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato", + 1 => "%d contatti modificati", +); +$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; +$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +$a->strings["Contact updated."] = "Contatto aggiornato."; +$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; +$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; +$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; +$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; +$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; +$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; +$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; +$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; +$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; +$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; +$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; +$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; +$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; +$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; +$a->strings["Suggest friends"] = "Suggerisci amici"; +$a->strings["Network type: %s"] = "Tipo di rete: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; +$a->strings["Unarchive"] = "Dearchivia"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; +$a->strings["Repair"] = "Ripara"; +$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; +$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; +$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; +$a->strings["Fetch information"] = "Recupera informazioni"; +$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; +$a->strings["Contact Editor"] = "Editor dei Contatti"; +$a->strings["Profile Visibility"] = "Visibilità del profilo"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; +$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; +$a->strings["Edit contact notes"] = "Modifica note contatto"; +$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; +$a->strings["Ignore contact"] = "Ignora il contatto"; +$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; +$a->strings["View conversations"] = "Vedi conversazioni"; +$a->strings["Delete contact"] = "Rimuovi contatto"; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; +$a->strings["Currently blocked"] = "Bloccato"; +$a->strings["Currently ignored"] = "Ignorato"; +$a->strings["Currently archived"] = "Al momento archiviato"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; +$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; +$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; +$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; +$a->strings["Profile URL"] = "URL Profilo"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; +$a->strings["All Contacts"] = "Tutti i contatti"; +$a->strings["Show all contacts"] = "Mostra tutti i contatti"; +$a->strings["Unblocked"] = "Sbloccato"; +$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; +$a->strings["Blocked"] = "Bloccato"; +$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; +$a->strings["Ignored"] = "Ignorato"; +$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; +$a->strings["Archived"] = "Achiviato"; +$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; +$a->strings["Hidden"] = "Nascosto"; +$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["Find"] = "Trova"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Mutual Friendship"] = "Amicizia reciproca"; +$a->strings["is a fan of yours"] = "è un tuo fan"; +$a->strings["you are a fan of"] = "sei un fan di"; +$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; +$a->strings["Delete Video"] = "Rimuovi video"; +$a->strings["No videos selected"] = "Nessun video selezionato"; +$a->strings["Recent Videos"] = "Video Recenti"; +$a->strings["Upload New Videos"] = "Carica Nuovo Video"; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["Login"] = "Accedi"; +$a->strings["The post was created"] = "Il messaggio è stato creato"; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Profile"] = "Profilo"; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["Search"] = "Cerca"; $a->strings["No results."] = "Nessun risultato."; -$a->strings["everybody"] = "tutti"; +$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; +$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; $a->strings["Additional features"] = "Funzionalità aggiuntive"; $a->strings["Display"] = "Visualizzazione"; $a->strings["Social Networks"] = "Social Networks"; @@ -891,8 +901,10 @@ $a->strings["Disable intelligent shortening"] = "Disabilita accorciamento intell $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica."; $a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Segui automanticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni"; $a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto."; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; $a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; -$a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "abilitato"; $a->strings["disabled"] = "disabilitato"; $a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; @@ -961,8 +973,6 @@ $a->strings["Expire photos:"] = "Fai scadere le foto:"; $a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; $a->strings["Account Settings"] = "Impostazioni account"; $a->strings["Password Settings"] = "Impostazioni password"; -$a->strings["New Password:"] = "Nuova password:"; -$a->strings["Confirm:"] = "Conferma:"; $a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; $a->strings["Current Password:"] = "Password Attuale:"; $a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche"; @@ -978,8 +988,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di am $a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; $a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; $a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$a->strings["Show to Groups"] = "Mostra ai gruppi"; -$a->strings["Show to Contacts"] = "Mostra ai contatti"; $a->strings["Default Private Post"] = "Default Post Privato"; $a->strings["Default Public Post"] = "Default Post Pubblico"; $a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; @@ -1007,94 +1015,10 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo $a->strings["Relocate"] = "Trasloca"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; $a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Si è verificato un errore inviando l'email. I dettagli del tuo account:
    login: %s
    password: %s

    Puoi cambiare la password dopo il login."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; -$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; -$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; -$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; -$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["Leave empty for an auto generated password."] = "Lascia vuoto per generare automaticamente una password."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; -$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; -$a->strings["Register"] = "Registrati"; -$a->strings["Import"] = "Importa"; -$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; -$a->strings["System down for maintenance"] = "Sistema in manutenzione"; -$a->strings["Search"] = "Cerca"; -$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Age: "] = "Età : "; -$a->strings["Gender: "] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$a->strings["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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; -$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; -$a->strings["Potential Delegates"] = "Delegati Potenziali"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessuna voce."; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["Export account"] = "Esporta account"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; -$a->strings["Export all"] = "Esporta tutto"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; -$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["People Search - %s"] = "Cerca persone - %s"; +$a->strings["Connect"] = "Connetti"; +$a->strings["No matches"] = "Nessun risultato"; $a->strings["Profile deleted."] = "Profilo elminato."; $a->strings["Profile-"] = "Profilo-"; $a->strings["New profile created."] = "Il nuovo profilo è stato creato."; @@ -1169,47 +1093,78 @@ $a->strings["Love/romance"] = "Amore"; $a->strings["Work/employment"] = "Lavoro/impiego"; $a->strings["School/education"] = "Scuola/educazione"; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
    Potrebbe essere visto da chiunque attraverso internet."; +$a->strings["Age: "] = "Età : "; $a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; $a->strings["Change profile photo"] = "Cambia la foto del profilo"; $a->strings["Create New Profile"] = "Crea un nuovo profilo"; $a->strings["Profile Image"] = "Immagine del Profilo"; $a->strings["visible to everybody"] = "visibile a tutti"; $a->strings["Edit visibility"] = "Modifica visibilità"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserire collegamento video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci collegamento audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua posizione"; -$a->strings["set location"] = "posizione"; -$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; -$a->strings["clear location"] = "canc. pos."; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Public post"] = "Messaggio pubblico"; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; -$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; -$a->strings["the bugtracker at github"] = "il bugtracker su github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; -$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; -$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Effettua il login per continuare."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["link"] = "collegamento"; +$a->strings["Export account"] = "Esporta account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; +$a->strings["Export all"] = "Esporta tutto"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; +$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; +$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; +$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Community"] = "Comunità"; +$a->strings["Save to Folder:"] = "Salva nella Cartella:"; +$a->strings["- select -"] = "- seleziona -"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; +$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; +$a->strings["File exceeds size limit of %s"] = "Il file supera la dimensione massima di %s"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["Resubsribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$a->strings["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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; +$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; +$a->strings["Potential Delegates"] = "Delegati Potenziali"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessuna voce."; +$a->strings["No contacts."] = "Nessun contatto."; +$a->strings["View Contacts"] = "Visualizza i contatti"; $a->strings["Personal Notes"] = "Note personali"; +$a->strings["Poke/Prod"] = "Tocca/Pungola"; +$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; +$a->strings["Make this post private"] = "Rendi questo post privato"; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["Gender: "] = "Genere:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["Subsribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Time Conversion"] = "Conversione Ora"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; @@ -1217,87 +1172,226 @@ $a->strings["UTC time: %s"] = "Ora UTC: %s"; $a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; $a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; $a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["Poke/Prod"] = "Tocca/Pungola"; -$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; -$a->strings["Make this post private"] = "Rendi questo post privato"; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Rimuovi album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; -$a->strings["Delete Photo"] = "Rimuovi foto"; -$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; -$a->strings["a photo"] = "una foto"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["New album name: "] = "Nome nuovo album: "; -$a->strings["or existing album name: "] = "o nome di un album esistente: "; -$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Private Photo"] = "Foto privata"; -$a->strings["Public Photo"] = "Foto pubblica"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; -$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; -$a->strings["View Photo"] = "Vedi foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["View photo"] = "Vedi foto"; -$a->strings["Edit photo"] = "Modifica foto"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["View Full Size"] = "Vedi dimensione intera"; -$a->strings["Tags: "] = "Tag: "; -$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; -$a->strings["New album name"] = "Nuovo nome dell'album"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Non ruotare"; -$a->strings["Rotate CW (right)"] = "Ruota a destra"; -$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; -$a->strings["Private photo"] = "Foto privata"; -$a->strings["Public photo"] = "Foto pubblica"; -$a->strings["Share"] = "Condividi"; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload"] = "Carica"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; +$a->strings["Done Editing"] = "Finito"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; +$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; +$a->strings["Could not create table."] = "Impossibile creare le tabelle."; +$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Database già in uso."; +$a->strings["System check"] = "Controllo sistema"; +$a->strings["Check again"] = "Controlla ancora"; +$a->strings["Database connection"] = "Connessione al database"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Nome del database server"; +$a->strings["Database Login Name"] = "Nome utente database"; +$a->strings["Database Login Password"] = "Password utente database"; +$a->strings["Database Name"] = "Nome database"; +$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; +$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; +$a->strings["Site settings"] = "Impostazioni sito"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; +$a->strings["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. See 'Activating scheduled tasks'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; +$a->strings["Command line PHP"] = "PHP da riga di comando"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Versione PHP:"; +$a->strings["PHP cli binary"] = "Binario PHP cli"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; +$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; +$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; +$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; +$a->strings["

    What next

    "] = "

    Cosa fare ora

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; $a->strings["Not Extended"] = "Not Extended"; +$a->strings["Group created."] = "Gruppo creato."; +$a->strings["Could not create group."] = "Impossibile creare il gruppo."; +$a->strings["Group not found."] = "Gruppo non trovato."; +$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; +$a->strings["Save Group"] = "Salva gruppo"; +$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["Group: %s"] = "Gruppo: %s"; +$a->strings["View in context"] = "Vedi nel contesto"; $a->strings["Account approved."] = "Account approvato."; $a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; $a->strings["Please login."] = "Accedi."; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "è interessato a:"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; +$a->strings["add"] = "aggiungi"; +$a->strings["Commented Order"] = "Ordina per commento"; +$a->strings["Sort by Comment Date"] = "Ordina per data commento"; +$a->strings["Posted Order"] = "Ordina per invio"; +$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; +$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; +$a->strings["New"] = "Nuovo"; +$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; +$a->strings["Shared Links"] = "Links condivisi"; +$a->strings["Interesting Links"] = "Link Interessanti"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Messaggi preferiti"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", + 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; +$a->strings["Contact: %s"] = "Contatto: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; +$a->strings["Invalid contact."] = "Contatto non valido."; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Repair Contact Settings"] = "Ripara il contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["No mirroring"] = "Non duplicare"; +$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; +$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Refetch contact data"] = "Ricarica dati contatto"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["Remote Self"] = "Io remoto"; +$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; +$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Your profile page"] = "Pagina del tuo profilo"; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["event"] = "l'evento"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["show"] = "mostra"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Set style"] = "Imposta stile"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["default"] = "default"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Varianti"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Color scheme"] = "Schema colori"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Click here to download"] = ""; +$a->strings["Create new pull request"] = ""; +$a->strings["Reload active plugins"] = ""; +$a->strings["Drop contact"] = ""; +$a->strings["Public projects on this node"] = ""; +$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = ""; +$a->strings["Visibility"] = ""; +$a->strings["Create"] = ""; +$a->strings["No pull requests to show"] = ""; +$a->strings["opened by"] = ""; +$a->strings["closed"] = ""; +$a->strings["merged"] = ""; +$a->strings["Projects"] = ""; +$a->strings["add new"] = ""; +$a->strings["delete"] = ""; +$a->strings["Clone this project:"] = ""; +$a->strings["New pull request"] = ""; +$a->strings["Can't show you the diff at the moment. Sorry"] = ""; $a->strings["Delete this item?"] = "Cancellare questo elemento?"; $a->strings["show fewer"] = "mostra di meno"; $a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; @@ -1312,40 +1406,6 @@ $a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web " $a->strings["terms of service"] = "condizioni del servizio"; $a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; $a->strings["privacy policy"] = "politiche di privacy"; -$a->strings["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["ignore thread"] = "ignora la discussione"; -$a->strings["unignore thread"] = "non ignorare la discussione"; -$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; -$a->strings["ignored"] = "ignorato"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["via"] = "via"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; $a->strings["General Features"] = "Funzionalità generali"; $a->strings["Multiple Profiles"] = "Profili multipli"; $a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; @@ -1380,6 +1440,7 @@ $a->strings["Tagging"] = "Aggiunta tag"; $a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; $a->strings["Post Categories"] = "Cateorie post"; $a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; $a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; $a->strings["Dislike Posts"] = "Non mi piace"; $a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; @@ -1387,126 +1448,13 @@ $a->strings["Star Posts"] = "Post preferiti"; $a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; $a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; $a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; -$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["year"] = "anno"; -$a->strings["years"] = "anni"; -$a->strings["month"] = "mese"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["day"] = "giorno"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Network:"] = "Rete:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; -$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; -$a->strings["Musical interests:"] = "Interessi musicali:"; -$a->strings["Books, literature:"] = "Libri, letteratura:"; -$a->strings["Television:"] = "Televisione:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; -$a->strings["Love/Romance:"] = "Amore:"; -$a->strings["Work/employment:"] = "Lavoro:"; -$a->strings["School/education:"] = "Scuola:"; -$a->strings["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "non mostrare"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; +$a->strings["The error message was:"] = "Il messaggio riportato era:"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; $a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; -$a->strings["event"] = "l'evento"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["permissions"] = "permessi"; -$a->strings["Post to Groups"] = "Invia ai Gruppi"; -$a->strings["Post to Contacts"] = "Invia ai Contatti"; -$a->strings["Private post"] = "Post privato"; -$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings[" on Last.fm"] = "su Last.fm"; $a->strings["newer"] = "nuovi"; $a->strings["older"] = "vecchi"; $a->strings["prev"] = "prec"; @@ -1578,84 +1526,10 @@ $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; $a->strings["View on separate page"] = "Vedi in una pagina separata"; $a->strings["view on separate page"] = "vedi in una pagina separata"; -$a->strings["default"] = "default"; $a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; $a->strings["activity"] = "attività"; $a->strings["post"] = "messaggio"; $a->strings["Item filed"] = "Messaggio salvato"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["OStatus"] = "Ostatus"; -$a->strings["RSS/Atom"] = "RSS / Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connettore Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings["Redmatrix"] = "Redmatrix"; -$a->strings[" on Last.fm"] = "su Last.fm"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; -$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your videos"] = "I tuoi video"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal notes"] = "Le tue note personali"; -$a->strings["Sign in"] = "Entra"; -$a->strings["Home Page"] = "Home Page"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Applicazioni"; -$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; -$a->strings["Search site content"] = "Cerca nel contenuto del sito"; -$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; -$a->strings["Conversations on the network"] = "Conversazioni nella rete"; -$a->strings["Directory"] = "Elenco"; -$a->strings["People directory"] = "Elenco delle persone"; -$a->strings["Information"] = "Informazioni"; -$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; -$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; -$a->strings["Network Reset"] = "Reset pagina Rete"; -$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; -$a->strings["Friend Requests"] = "Richieste di amicizia"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; -$a->strings["Private mail"] = "Posta privata"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["Manage"] = "Gestisci"; -$a->strings["Manage other pages"] = "Gestisci altre pagine"; -$a->strings["Account settings"] = "Parametri account"; -$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; -$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; -$a->strings["Site setup and configuration"] = "Configurazione del sito"; -$a->strings["Navigation"] = "Navigazione"; -$a->strings["Site map"] = "Mappa del sito"; $a->strings["User not found."] = "Utente non trovato."; $a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; $a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; @@ -1665,29 +1539,66 @@ $a->strings["There is no conversation with this id."] = "Non c'è nessuna conver $a->strings["Invalid item."] = "Elemento non valido."; $a->strings["Invalid action. "] = "Azione non valida."; $a->strings["DB error"] = "Errore database"; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; -$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; -$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; -$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["Friends"] = "Amici"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; $a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; $a->strings["Archives"] = "Archivi"; +$a->strings["(no subject)"] = "(nessun oggetto)"; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Network:"] = "Rete:"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age:"] = "Età:"; +$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; +$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; +$a->strings["Musical interests:"] = "Interessi musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["Status"] = "Stato"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["Connect URL missing."] = "URL di connessione mancante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; +$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; +$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; +$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; +$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["Welcome "] = "Ciao"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; +$a->strings["Welcome back "] = "Ciao "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; $a->strings["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -1724,6 +1635,7 @@ $a->strings["Infatuated"] = "infatuato/a"; $a->strings["Dating"] = "Disponibile a un incontro"; $a->strings["Unfaithful"] = "Infedele"; $a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends"] = "Amici"; $a->strings["Friends/Benefits"] = "Amici con benefici"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Impegnato"; @@ -1745,6 +1657,121 @@ $a->strings["Uncertain"] = "Incerto"; $a->strings["It's complicated"] = "E' complicato"; $a->strings["Don't care"] = "Non interessa"; $a->strings["Ask me"] = "Chiedimelo"; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; +$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; +$a->strings["post/item"] = "post/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["View Status"] = "Visualizza stato"; +$a->strings["View Profile"] = "Visualizza profilo"; +$a->strings["View Photos"] = "Visualizza foto"; +$a->strings["Network Posts"] = "Post della Rete"; +$a->strings["Edit Contact"] = "Modifica contatti"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Stuzzica"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%s like this."] = "Piace a %s."; +$a->strings["%s don't like this."] = "Non piace a %s."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; +$a->strings["permissions"] = "permessi"; +$a->strings["Post to Groups"] = "Invia ai Gruppi"; +$a->strings["Post to Contacts"] = "Invia ai Contatti"; +$a->strings["Private post"] = "Post privato"; +$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Your videos"] = "I tuoi video"; +$a->strings["Your personal notes"] = "Le tue note personali"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home Page"] = "Home Page"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Apps"] = "Applicazioni"; +$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; +$a->strings["Search site content"] = "Cerca nel contenuto del sito"; +$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; +$a->strings["Conversations on the network"] = "Conversazioni nella rete"; +$a->strings["Directory"] = "Elenco"; +$a->strings["People directory"] = "Elenco delle persone"; +$a->strings["Information"] = "Informazioni"; +$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; +$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; +$a->strings["Network Reset"] = "Reset pagina Rete"; +$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; +$a->strings["Friend Requests"] = "Richieste di amicizia"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; +$a->strings["Private mail"] = "Posta privata"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["Manage"] = "Gestisci"; +$a->strings["Manage other pages"] = "Gestisci altre pagine"; +$a->strings["Account settings"] = "Parametri account"; +$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; +$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; +$a->strings["Site setup and configuration"] = "Configurazione del sito"; +$a->strings["Navigation"] = "Navigazione"; +$a->strings["Site map"] = "Mappa del sito"; +$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$a->strings["OStatus"] = "Ostatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connettore Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings["Redmatrix"] = "Redmatrix"; $a->strings["Friendica Notification"] = "Notifica Friendica"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "Amministratore %s"; @@ -1802,55 +1829,64 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "H $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; +$a->strings["An invitation is required."] = "E' richiesto un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; +$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Please use a shorter name."] = "Usa un nome più corto."; +$a->strings["Name too short."] = "Il nome è troppo corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; +$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; +$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; +$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; +$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; +$a->strings["Post to Email"] = "Invia a email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Image/photo"] = "Immagine/foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; $a->strings["Embedded content"] = "Contenuto incorporato"; $a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Set style"] = "Imposta stile"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Varianti"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["Drop Contact"] = "Rimuovi contatto"; +$a->strings["Miscellaneous"] = "Varie"; +$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["year"] = "anno"; +$a->strings["years"] = "anni"; +$a->strings["month"] = "mese"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["day"] = "giorno"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; diff --git a/view/nl/messages.po b/view/nl/messages.po index 52608625e3..ba81fdb03b 100644 --- a/view/nl/messages.po +++ b/view/nl/messages.po @@ -10,912 +10,531 @@ # jeroenpraat , 2012-2014 # jeroenpraat , 2012 # Karel Vandecandelaere , 2015 +# Ralph , 2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-07-08 13:18+0200\n" -"PO-Revision-Date: 2015-07-14 10:17+0000\n" -"Last-Translator: Karel Vandecandelaere \n" -"Language-Team: Dutch (http://www.transifex.com/p/friendica/language/nl/)\n" +"POT-Creation-Date: 2015-11-08 21:46+0100\n" +"PO-Revision-Date: 2015-11-17 23:49+0000\n" +"Last-Translator: Ralph \n" +"Language-Team: Dutch (http://www.transifex.com/Friendica/friendica/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "" - -#: object/Item.php:117 mod/content.php:622 mod/photos.php:1379 -msgid "Private Message" -msgstr "Privébericht" - -#: object/Item.php:121 mod/content.php:730 mod/settings.php:683 -msgid "Edit" -msgstr "Bewerken" - -#: object/Item.php:130 mod/content.php:439 mod/content.php:742 -#: mod/photos.php:1672 include/conversation.php:612 -msgid "Select" -msgstr "Kies" - -#: object/Item.php:131 mod/admin.php:1017 mod/contacts.php:760 -#: mod/content.php:440 mod/content.php:743 mod/group.php:171 -#: mod/photos.php:1673 mod/settings.php:684 include/conversation.php:613 -msgid "Delete" -msgstr "Verwijder" - -#: object/Item.php:134 mod/content.php:765 -msgid "save to folder" -msgstr "Bewaren in map" - -#: object/Item.php:196 mod/content.php:755 -msgid "add star" -msgstr "ster toevoegen" - -#: object/Item.php:197 mod/content.php:756 -msgid "remove star" -msgstr "ster verwijderen" - -#: object/Item.php:198 mod/content.php:757 -msgid "toggle star status" -msgstr "ster toevoegen of verwijderen" - -#: object/Item.php:201 mod/content.php:760 -msgid "starred" -msgstr "met ster" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "" - -#: object/Item.php:214 -msgid "ignored" -msgstr "" - -#: object/Item.php:221 mod/content.php:761 -msgid "add tag" -msgstr "label toevoegen" - -#: object/Item.php:232 mod/content.php:686 mod/photos.php:1561 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" - -#: object/Item.php:232 mod/content.php:686 -msgid "like" -msgstr "leuk" - -#: object/Item.php:233 mod/content.php:687 mod/photos.php:1562 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" - -#: object/Item.php:233 mod/content.php:687 -msgid "dislike" -msgstr "niet leuk" - -#: object/Item.php:235 mod/content.php:689 -msgid "Share this" -msgstr "Delen" - -#: object/Item.php:235 mod/content.php:689 -msgid "share" -msgstr "Delen" - -#: object/Item.php:319 include/conversation.php:665 -msgid "Categories:" -msgstr "Categorieën:" - -#: object/Item.php:320 include/conversation.php:666 -msgid "Filed under:" -msgstr "Bewaard onder:" - -#: object/Item.php:329 object/Item.php:330 mod/content.php:473 -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#: mod/contacts.php:118 #, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "" +msgstr[1] "" -#: object/Item.php:331 mod/content.php:856 -msgid "to" -msgstr "aan" +#: mod/contacts.php:149 mod/contacts.php:372 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de contactgegevens" -#: object/Item.php:332 -msgid "via" -msgstr "via" +#: mod/contacts.php:163 +msgid "Could not locate selected profile." +msgstr "Kon het geselecteerde profiel niet vinden." -#: object/Item.php:333 mod/content.php:857 -msgid "Wall-to-Wall" -msgstr "wall-to-wall" +#: mod/contacts.php:196 +msgid "Contact updated." +msgstr "Contact bijgewerkt." -#: object/Item.php:334 mod/content.php:858 -msgid "via Wall-To-Wall:" -msgstr "via wall-to-wall" +#: mod/contacts.php:198 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Ik kon de contactgegevens niet aanpassen." -#: object/Item.php:343 mod/content.php:483 mod/content.php:866 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s van %s" - -#: object/Item.php:364 object/Item.php:680 mod/content.php:711 -#: mod/photos.php:1583 mod/photos.php:1627 mod/photos.php:1715 boot.php:754 -msgid "Comment" -msgstr "Reacties" - -#: object/Item.php:367 mod/wallmessage.php:156 mod/message.php:334 -#: mod/message.php:565 mod/content.php:501 mod/content.php:885 -#: mod/editpost.php:124 mod/photos.php:1564 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Even geduld" - -#: object/Item.php:390 mod/content.php:605 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties" - -#: object/Item.php:392 object/Item.php:405 mod/content.php:607 -#: include/text.php:2004 -msgid "comment" -msgid_plural "comments" -msgstr[0] "reactie" -msgstr[1] "reacties" - -#: object/Item.php:393 mod/content.php:608 include/contact_widgets.php:205 -#: include/items.php:5133 boot.php:755 -msgid "show more" -msgstr "toon meer" - -#: object/Item.php:678 mod/content.php:709 mod/photos.php:1581 -#: mod/photos.php:1625 mod/photos.php:1713 -msgid "This is you" -msgstr "Dit ben jij" - -#: object/Item.php:681 view/theme/perihel/config.php:95 -#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 -#: view/theme/quattro/config.php:64 -#: view/theme/zero-childs/cleanzero/config.php:80 -#: view/theme/dispy/config.php:70 view/theme/clean/config.php:83 -#: view/theme/duepuntozero/config.php:59 view/theme/cleanzero/config.php:80 -#: view/theme/vier/config.php:56 view/theme/vier-mobil/config.php:47 -#: mod/mood.php:137 mod/localtime.php:45 mod/poke.php:199 mod/fsuggest.php:107 -#: mod/invite.php:140 mod/manage.php:110 mod/message.php:335 -#: mod/message.php:564 mod/contacts.php:564 mod/content.php:712 -#: mod/crepair.php:191 mod/events.php:511 mod/install.php:250 -#: mod/install.php:288 mod/photos.php:1104 mod/photos.php:1223 -#: mod/photos.php:1533 mod/photos.php:1584 mod/photos.php:1628 -#: mod/photos.php:1716 mod/profiles.php:682 -msgid "Submit" -msgstr "Opslaan" - -#: object/Item.php:682 mod/content.php:713 -msgid "Bold" -msgstr "Vet" - -#: object/Item.php:683 mod/content.php:714 -msgid "Italic" -msgstr "Cursief" - -#: object/Item.php:684 mod/content.php:715 -msgid "Underline" -msgstr "Onderstrepen" - -#: object/Item.php:685 mod/content.php:716 -msgid "Quote" -msgstr "Citeren" - -#: object/Item.php:686 mod/content.php:717 -msgid "Code" -msgstr "Broncode" - -#: object/Item.php:687 mod/content.php:718 -msgid "Image" -msgstr "Afbeelding" - -#: object/Item.php:688 mod/content.php:719 -msgid "Link" -msgstr "Link" - -#: object/Item.php:689 mod/content.php:720 -msgid "Video" -msgstr "Video" - -#: object/Item.php:690 mod/content.php:721 mod/editpost.php:145 -#: mod/events.php:509 mod/photos.php:1585 mod/photos.php:1629 -#: mod/photos.php:1717 include/conversation.php:1089 -msgid "Preview" -msgstr "Voorvertoning" - -#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:76 -#: view/smarty3/compiled/3652bcbaa383153072aa300c238792d03867c262.file.tree.tpl.php:76 -#: view/smarty3/compiled/788b954cfdfbf400e0cd17e1e5629515d87eb32f.file.commit.tpl.php:77 -#: view/smarty3/compiled/c6d84f5d6190b86e81c93d71a9bb01aa32004841.file.project.tpl.php:76 -#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:76 -#: view/smarty3/compiled/7fd1b71c8d07cc4e9605dd231482f4f114db46f5.file.commits.tpl.php:77 -msgid "Clone this project:" -msgstr "" - -#: view/smarty3/compiled/a908c9746db77ea1b3b8583681c75a6737ae4de1.file.blob.tpl.php:111 -msgid "Click here to download" -msgstr "" - -#: view/smarty3/compiled/75e3f44e184d57ada4cf6c86f0ab429f322f9b3e.file.project_empty.tpl.php:98 -msgid "This project is empty!" -msgstr "" - -#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:31 -msgid "Projects" -msgstr "" - -#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:32 -msgid "add new" -msgstr "" - -#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:51 -msgid "delete" -msgstr "" - -#: view/smarty3/compiled/9453f510542dc7c0dea57a39a0e1512fb04d038d.file.index.tpl.php:68 -#, php-format -msgid "" -"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " -"undone." -msgstr "" - -#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 -#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148 -msgid "Home" -msgstr "Tijdlijn" - -#: view/theme/perihel/theme.php:33 view/theme/diabook/theme.php:123 -#: include/nav.php:76 include/nav.php:148 -msgid "Your posts and conversations" -msgstr "Jouw berichten en conversaties" - -#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 -#: mod/newmember.php:32 mod/profperm.php:104 include/identity.php:529 -#: include/identity.php:610 include/identity.php:639 include/nav.php:77 -msgid "Profile" -msgstr "Profiel" - -#: view/theme/perihel/theme.php:34 view/theme/diabook/theme.php:124 -#: include/nav.php:77 -msgid "Your profile page" -msgstr "Jouw profiel pagina" - -#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 -#: mod/fbrowser.php:25 include/identity.php:646 include/nav.php:78 -msgid "Photos" -msgstr "Foto's" - -#: view/theme/perihel/theme.php:35 view/theme/diabook/theme.php:126 -#: include/nav.php:78 -msgid "Your photos" -msgstr "Jouw foto's" - -#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 -#: mod/events.php:396 include/identity.php:663 include/nav.php:80 -msgid "Events" -msgstr "Gebeurtenissen" - -#: view/theme/perihel/theme.php:36 view/theme/diabook/theme.php:127 -#: include/nav.php:80 -msgid "Your events" -msgstr "Jouw gebeurtenissen" - -#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 -#: include/nav.php:81 -msgid "Personal notes" -msgstr "Persoonlijke nota's" - -#: view/theme/perihel/theme.php:37 view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Jouw persoonlijke foto's" - -#: view/theme/perihel/theme.php:38 view/theme/diabook/theme.php:129 -#: mod/community.php:32 include/nav.php:129 include/nav.php:131 -msgid "Community" -msgstr "Website" - -#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 include/acl_selectors.php:337 -msgid "don't show" -msgstr "niet tonen" - -#: view/theme/perihel/config.php:89 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 include/acl_selectors.php:336 -msgid "show" -msgstr "tonen" - -#: view/theme/perihel/config.php:97 view/theme/diabook/config.php:150 -#: view/theme/quattro/config.php:66 -#: view/theme/zero-childs/cleanzero/config.php:82 -#: view/theme/dispy/config.php:72 view/theme/clean/config.php:85 -#: view/theme/duepuntozero/config.php:61 view/theme/cleanzero/config.php:82 -#: view/theme/vier/config.php:58 view/theme/vier-mobil/config.php:49 -#: mod/settings.php:919 -msgid "Theme settings" -msgstr "Thema-instellingen" - -#: view/theme/perihel/config.php:98 view/theme/diabook/config.php:151 -#: view/theme/zero-childs/cleanzero/config.php:84 -#: view/theme/dispy/config.php:73 view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Stel lettergrootte voor berichten en reacties in" - -#: view/theme/perihel/config.php:99 view/theme/diabook/config.php:152 -#: view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Stel lijnhoogte voor berichten en reacties in" - -#: view/theme/perihel/config.php:100 view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Stel resolutie in voor de middelste kolom. " - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Stel kleurenschema in" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Forum/groepspagina's" - -#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 -#: view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Forum/groepsprofielen" - -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Diensten verbinden" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Zoek vrienden" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Laatste gebruikers" - -#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 -#: view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Laatste foto's" - -#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 -#: view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Recent leuk gevonden" - -#: view/theme/diabook/theme.php:125 mod/contacts.php:745 include/nav.php:178 -msgid "Contacts" -msgstr "Contacten" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Jouw contacten" - -#: view/theme/diabook/theme.php:463 include/conversation.php:118 -#: include/conversation.php:245 include/text.php:1998 -msgid "event" -msgstr "gebeurtenis" - -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: mod/tagger.php:62 mod/like.php:149 mod/like.php:319 mod/subthread.php:87 -#: include/conversation.php:121 include/conversation.php:130 -#: include/conversation.php:248 include/conversation.php:257 -#: include/diaspora.php:2106 -msgid "status" -msgstr "status" - -#: view/theme/diabook/theme.php:471 mod/tagger.php:62 mod/like.php:149 -#: mod/subthread.php:87 include/conversation.php:126 -#: include/conversation.php:253 include/diaspora.php:2106 -#: include/text.php:2000 -msgid "photo" -msgstr "foto" - -#: view/theme/diabook/theme.php:480 mod/like.php:166 -#: include/conversation.php:137 include/diaspora.php:2122 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt het %3$s van %2$s leuk" - -#: view/theme/diabook/theme.php:499 mod/photos.php:50 mod/photos.php:177 -#: mod/photos.php:1086 mod/photos.php:1207 mod/photos.php:1230 -#: mod/photos.php:1779 mod/photos.php:1791 -msgid "Contact Photos" -msgstr "Contactfoto's" - -#: view/theme/diabook/theme.php:500 mod/photos.php:177 mod/photos.php:753 -#: mod/photos.php:1207 mod/photos.php:1230 mod/profile_photo.php:74 -#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:204 -#: mod/profile_photo.php:296 mod/profile_photo.php:305 include/user.php:343 -#: include/user.php:350 include/user.php:357 -msgid "Profile Photos" -msgstr "Profielfoto's" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokale gids" - -#: view/theme/diabook/theme.php:525 mod/directory.php:53 -msgid "Global Directory" -msgstr "Globale gids" - -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Dezelfde interesses" - -#: view/theme/diabook/theme.php:527 mod/suggest.php:69 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Vriendschapsvoorstellen" - -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" - -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648 -#: mod/newmember.php:22 mod/admin.php:1114 mod/admin.php:1335 -#: mod/settings.php:90 include/nav.php:173 -msgid "Settings" -msgstr "Instellingen" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Uitlijning" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Gecentreerd" - -#: view/theme/quattro/config.php:68 -#: view/theme/zero-childs/cleanzero/config.php:86 -#: view/theme/clean/config.php:88 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Kleurschema" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Lettergrootte berichten" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Lettergrootte tekstgebieden" - -#: view/theme/zero-childs/cleanzero/config.php:83 -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: view/theme/zero-childs/cleanzero/config.php:85 -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Stel breedte van het thema in" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Stel kleurschema in" - -#: view/theme/clean/config.php:56 view/theme/duepuntozero/config.php:44 -#: include/text.php:1734 include/user.php:255 -msgid "default" -msgstr "standaard" - -#: view/theme/clean/config.php:57 -msgid "Midnight" -msgstr "" - -#: view/theme/clean/config.php:58 -msgid "Zenburn" -msgstr "" - -#: view/theme/clean/config.php:59 -msgid "Bootstrap" -msgstr "" - -#: view/theme/clean/config.php:60 -msgid "Shades of Pink" -msgstr "" - -#: view/theme/clean/config.php:61 -msgid "Lime and Orange" -msgstr "" - -#: view/theme/clean/config.php:62 -msgid "GeoCities Retro" -msgstr "" - -#: view/theme/clean/config.php:86 -msgid "Background Image" -msgstr "" - -#: view/theme/clean/config.php:86 -msgid "" -"The URL to a picture (e.g. from your photo album) that should be used as " -"background image." -msgstr "" - -#: view/theme/clean/config.php:87 -msgid "Background Color" -msgstr "achtergrondkleur" - -#: view/theme/clean/config.php:87 -msgid "HEX value for the background color. Don't include the #" -msgstr "" - -#: view/theme/clean/config.php:89 -msgid "font size" -msgstr "" - -#: view/theme/clean/config.php:89 -msgid "base font size for your interface" -msgstr "" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "" - -#: view/theme/vier/config.php:59 view/theme/vier-mobil/config.php:50 -msgid "Set style" -msgstr "" - -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s is op dit moment %2$s" - -#: mod/mood.php:114 mod/api.php:26 mod/api.php:31 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/attach.php:33 mod/regmod.php:110 mod/uimport.php:23 mod/poke.php:135 -#: mod/delegate.php:12 mod/nogroup.php:25 mod/fsuggest.php:78 -#: mod/invite.php:15 mod/invite.php:101 mod/manage.php:96 mod/message.php:38 -#: mod/message.php:174 mod/viewcontacts.php:24 mod/notifications.php:66 -#: mod/allfriends.php:9 mod/contacts.php:322 mod/crepair.php:120 -#: mod/dfrn_confirm.php:55 mod/display.php:508 mod/editpost.php:10 -#: mod/events.php:164 mod/follow.php:9 mod/follow.php:42 mod/follow.php:81 -#: mod/group.php:19 mod/item.php:170 mod/item.php:186 mod/network.php:4 -#: mod/notes.php:20 mod/photos.php:156 mod/photos.php:1072 +#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 #: mod/profile_photo.php:19 mod/profile_photo.php:169 -#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/profiles.php:165 -#: mod/profiles.php:614 mod/suggest.php:58 mod/wall_attach.php:55 -#: mod/wall_upload.php:66 mod/register.php:42 mod/settings.php:20 -#: mod/settings.php:107 mod/settings.php:608 include/items.php:5022 -#: index.php:382 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 +#: mod/ostatus_subscribe.php:9 mod/follow.php:10 mod/follow.php:72 +#: mod/follow.php:137 mod/item.php:169 mod/item.php:185 mod/group.php:19 +#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/viewcontacts.php:24 mod/notifications.php:69 +#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120 +#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:11 mod/events.php:165 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149 +#: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101 +#: mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5103 index.php:382 msgid "Permission denied." msgstr "Toegang geweigerd" -#: mod/mood.php:133 -msgid "Mood" -msgstr "Stemming" +#: mod/contacts.php:393 +msgid "Contact has been blocked" +msgstr "Contact is geblokkeerd" -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Stel je huidige stemming in, en vertel het je vrienden" +#: mod/contacts.php:393 +msgid "Contact has been unblocked" +msgstr "Contact is gedeblokkeerd" -#: mod/decrypt.php:9 mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Toegang geweigerd" +#: mod/contacts.php:404 +msgid "Contact has been ignored" +msgstr "Contact wordt genegeerd" -#: mod/decrypt.php:15 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:169 -#: mod/admin.php:1062 mod/admin.php:1275 mod/display.php:82 -#: mod/display.php:295 mod/display.php:512 include/items.php:4813 -msgid "Item not found." -msgstr "Item niet gevonden." +#: mod/contacts.php:404 +msgid "Contact has been unignored" +msgstr "Contact wordt niet meer genegeerd" -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heet %2$s van harte welkom" +#: mod/contacts.php:416 +msgid "Contact has been archived" +msgstr "Contact is gearchiveerd" -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "" +#: mod/contacts.php:416 +msgid "Contact has been unarchived" +msgstr "Contact is niet meer gearchiveerd" -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" +#: mod/contacts.php:443 mod/contacts.php:816 +msgid "Do you really want to delete this contact?" +msgstr "Wil je echt dit contact verwijderen?" -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Log in om verder te gaan." - -#: 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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" - -#: mod/api.php:105 mod/message.php:209 mod/contacts.php:413 -#: mod/dfrn_request.php:845 mod/follow.php:57 mod/profiles.php:657 -#: mod/profiles.php:660 mod/suggest.php:29 mod/register.php:235 -#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 -#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 -#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 -#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 -#: mod/settings.php:1109 include/items.php:4854 +#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 +#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 +#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 +#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 +#: mod/settings.php:1162 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4935 msgid "Yes" msgstr "Ja" -#: mod/api.php:106 mod/dfrn_request.php:845 mod/follow.php:57 -#: mod/profiles.php:657 mod/profiles.php:661 mod/register.php:236 -#: mod/settings.php:1036 mod/settings.php:1042 mod/settings.php:1050 -#: mod/settings.php:1054 mod/settings.php:1059 mod/settings.php:1065 -#: mod/settings.php:1071 mod/settings.php:1077 mod/settings.php:1105 -#: mod/settings.php:1106 mod/settings.php:1107 mod/settings.php:1108 -#: mod/settings.php:1109 -msgid "No" -msgstr "Nee" +#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:147 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 +#: include/items.php:4938 +msgid "Cancel" +msgstr "Annuleren" -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: mod/contacts.php:460 +msgid "Contact has been removed." +msgstr "Contact is verwijderd." -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." - -#: mod/lostpass.php:42 +#: mod/contacts.php:498 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." +msgid "You are mutual friends with %s" +msgstr "Je bent wederzijds bevriend met %s" + +#: mod/contacts.php:502 +#, php-format +msgid "You are sharing with %s" +msgstr "Je deelt met %s" + +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deelt met jou" + +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Privécommunicatie met dit contact is niet beschikbaar." + +#: mod/contacts.php:530 mod/admin.php:643 +msgid "Never" +msgstr "Nooit" + +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(Wijziging is geslaagd)" + +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(Wijziging is niet geslaagd)" + +#: mod/contacts.php:536 +msgid "Suggest friends" +msgstr "Stel vrienden voor" + +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Netwerk type: %s" + +#: mod/contacts.php:543 include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gedeeld contact" +msgstr[1] "%d gedeelde contacten" + +#: mod/contacts.php:548 +msgid "View all contacts" +msgstr "Alle contacten zien" + +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820 +#: mod/admin.php:1114 +msgid "Unblock" +msgstr "Blokkering opheffen" + +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820 +#: mod/admin.php:1113 +msgid "Block" +msgstr "Blokkeren" + +#: mod/contacts.php:556 +msgid "Toggle Blocked status" +msgstr "Schakel geblokkeerde status" + +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821 +msgid "Unignore" +msgstr "Negeer niet meer" + +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 +msgid "Ignore" +msgstr "Negeren" + +#: mod/contacts.php:564 +msgid "Toggle Ignored status" +msgstr "Schakel negeerstatus" + +#: mod/contacts.php:570 mod/contacts.php:822 +msgid "Unarchive" +msgstr "Archiveer niet meer" + +#: mod/contacts.php:570 mod/contacts.php:822 +msgid "Archive" +msgstr "Archiveer" + +#: mod/contacts.php:573 +msgid "Toggle Archive status" +msgstr "Schakel archiveringsstatus" + +#: mod/contacts.php:578 +msgid "Repair" +msgstr "Herstellen" + +#: mod/contacts.php:581 +msgid "Advanced Contact Settings" +msgstr "Geavanceerde instellingen voor contacten" + +#: mod/contacts.php:589 +msgid "Communications lost with this contact!" +msgstr "Communicatie met dit contact is verbroken!" + +#: mod/contacts.php:592 +msgid "Fetch further information for feeds" msgstr "" -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" +#: mod/contacts.php:593 mod/admin.php:652 +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: mod/contacts.php:593 +msgid "Fetch information" msgstr "" -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." - -#: mod/lostpass.php:109 boot.php:1277 -msgid "Password Reset" -msgstr "Wachtwoord opnieuw instellen" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Je nieuwe wachtwoord is" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "klik hier om in te loggen" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t" - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" +#: mod/contacts.php:593 +msgid "Fetch information and keywords" msgstr "" -#: mod/lostpass.php:147 +#: mod/contacts.php:606 +msgid "Contact Editor" +msgstr "Contactbewerker" + +#: mod/contacts.php:608 mod/manage.php:124 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/events.php:574 mod/content.php:712 mod/install.php:253 +#: mod/install.php:291 mod/mood.php:137 mod/profiles.php:696 +#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 +#: mod/photos.php:1129 mod/photos.php:1253 mod/photos.php:1571 +#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: object/Item.php:710 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Opslaan" + +#: mod/contacts.php:609 +msgid "Profile Visibility" +msgstr "Zichtbaarheid profiel" + +#: mod/contacts.php:610 #, php-format -msgid "Your password has been changed at %s" -msgstr "Je wachtwoord is veranderd op %s" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" - -#: mod/lostpass.php:160 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Bijnaam of e-mail:" +#: mod/contacts.php:611 +msgid "Contact Information / Notes" +msgstr "Contactinformatie / aantekeningen" -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Opnieuw" +#: mod/contacts.php:612 +msgid "Edit contact notes" +msgstr "Wijzig aantekeningen over dit contact" -#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#: mod/contacts.php:617 mod/contacts.php:860 mod/viewcontacts.php:66 +#: mod/nogroup.php:41 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." +msgid "Visit %s's profile [%s]" +msgstr "Bekijk het profiel van %s [%s]" + +#: mod/contacts.php:618 +msgid "Block/Unblock contact" +msgstr "Blokkeer/deblokkeer contact" + +#: mod/contacts.php:619 +msgid "Ignore contact" +msgstr "Negeer contact" + +#: mod/contacts.php:620 +msgid "Repair URL settings" +msgstr "Repareer URL-instellingen" + +#: mod/contacts.php:621 +msgid "View conversations" +msgstr "Toon conversaties" + +#: mod/contacts.php:623 +msgid "Delete contact" +msgstr "Verwijder contact" + +#: mod/contacts.php:627 +msgid "Last update:" +msgstr "Laatste wijziging:" + +#: mod/contacts.php:629 +msgid "Update public posts" +msgstr "Openbare posts aanpassen" + +#: mod/contacts.php:631 mod/admin.php:1650 +msgid "Update now" +msgstr "Wijzig nu" + +#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 +#: include/conversation.php:924 +msgid "Connect/Follow" +msgstr "Verbind/Volg" + +#: mod/contacts.php:640 +msgid "Currently blocked" +msgstr "Op dit moment geblokkeerd" + +#: mod/contacts.php:641 +msgid "Currently ignored" +msgstr "Op dit moment genegeerd" + +#: mod/contacts.php:642 +msgid "Currently archived" +msgstr "Op dit moment gearchiveerd" + +#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "Verberg dit contact voor anderen" + +#: mod/contacts.php:643 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" + +#: mod/contacts.php:644 +msgid "Notification for new posts" +msgstr "Meldingen voor nieuwe berichten" + +#: mod/contacts.php:644 +msgid "Send a notification of every new post of this contact" msgstr "" -#: mod/wallmessage.php:56 mod/message.php:63 -msgid "No recipient selected." -msgstr "Geen ontvanger geselecteerd." +#: mod/contacts.php:647 +msgid "Blacklisted keywords" +msgstr "" -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" - -#: mod/wallmessage.php:62 mod/message.php:70 -msgid "Message could not be sent." -msgstr "Bericht kon niet verzonden worden." - -#: mod/wallmessage.php:65 mod/message.php:73 -msgid "Message collection failure." -msgstr "Fout bij het verzamelen van berichten." - -#: mod/wallmessage.php:68 mod/message.php:76 -msgid "Message sent." -msgstr "Bericht verzonden." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Geen ontvanger." - -#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:283 -#: mod/message.php:291 mod/message.php:466 mod/message.php:474 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Vul een internetadres/URL in:" - -#: mod/wallmessage.php:142 mod/message.php:319 -msgid "Send Private Message" -msgstr "Verstuur privébericht" - -#: mod/wallmessage.php:143 -#, php-format +#: mod/contacts.php:647 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" -#: mod/wallmessage.php:144 mod/message.php:320 mod/message.php:553 -msgid "To:" -msgstr "Aan:" +#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 +msgid "Profile URL" +msgstr "Profiel url" -#: mod/wallmessage.php:145 mod/message.php:325 mod/message.php:555 -msgid "Subject:" -msgstr "Onderwerp:" +#: mod/contacts.php:700 +msgid "Suggestions" +msgstr "Voorstellen" -#: mod/wallmessage.php:151 mod/invite.php:134 mod/message.php:329 -#: mod/message.php:558 -msgid "Your message:" -msgstr "Jouw bericht:" +#: mod/contacts.php:703 +msgid "Suggest potential friends" +msgstr "Stel vrienden voor" -#: mod/wallmessage.php:154 mod/message.php:332 mod/message.php:562 -#: mod/editpost.php:110 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Foto uploaden" +#: mod/contacts.php:708 mod/group.php:192 +msgid "All Contacts" +msgstr "Alle Contacten" -#: mod/wallmessage.php:155 mod/message.php:333 mod/message.php:563 -#: mod/editpost.php:114 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Voeg een webadres in" +#: mod/contacts.php:711 +msgid "Show all contacts" +msgstr "Toon alle contacten" + +#: mod/contacts.php:716 +msgid "Unblocked" +msgstr "Niet geblokkeerd" + +#: mod/contacts.php:719 +msgid "Only show unblocked contacts" +msgstr "Toon alleen niet-geblokkeerde contacten" + +#: mod/contacts.php:725 +msgid "Blocked" +msgstr "Geblokkeerd" + +#: mod/contacts.php:728 +msgid "Only show blocked contacts" +msgstr "Toon alleen geblokkeerde contacten" + +#: mod/contacts.php:734 +msgid "Ignored" +msgstr "Genegeerd" + +#: mod/contacts.php:737 +msgid "Only show ignored contacts" +msgstr "Toon alleen genegeerde contacten" + +#: mod/contacts.php:743 +msgid "Archived" +msgstr "Gearchiveerd" + +#: mod/contacts.php:746 +msgid "Only show archived contacts" +msgstr "Toon alleen gearchiveerde contacten" + +#: mod/contacts.php:752 +msgid "Hidden" +msgstr "Verborgen" + +#: mod/contacts.php:755 +msgid "Only show hidden contacts" +msgstr "Toon alleen verborgen contacten" + +#: mod/contacts.php:807 include/text.php:1005 include/nav.php:123 +#: include/nav.php:187 view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Contacten" + +#: mod/contacts.php:811 +msgid "Search your contacts" +msgstr "Doorzoek je contacten" + +#: mod/contacts.php:812 +msgid "Finding: " +msgstr "Gevonden:" + +#: mod/contacts.php:813 mod/directory.php:202 include/contact_widgets.php:34 +msgid "Find" +msgstr "Zoek" + +#: mod/contacts.php:819 mod/settings.php:146 mod/settings.php:674 +msgid "Update" +msgstr "Wijzigen" + +#: mod/contacts.php:823 mod/group.php:171 mod/admin.php:1112 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 +#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 +msgid "Delete" +msgstr "Verwijder" + +#: mod/contacts.php:836 +msgid "Mutual Friendship" +msgstr "Wederzijdse vriendschap" + +#: mod/contacts.php:840 +msgid "is a fan of yours" +msgstr "Is een fan van jou" + +#: mod/contacts.php:844 +msgid "you are a fan of" +msgstr "Jij bent een fan van" + +#: mod/contacts.php:861 mod/nogroup.php:42 +msgid "Edit contact" +msgstr "Contact bewerken" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Geen profiel" + +#: mod/manage.php:120 +msgid "Manage Identities and/or Pages" +msgstr "Beheer Identiteiten en/of Pagina's" + +#: mod/manage.php:121 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." + +#: mod/manage.php:122 +msgid "Select an identity to manage: " +msgstr "Selecteer een identiteit om te beheren:" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Bericht succesvol geplaatst." + +#: mod/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "Toegang geweigerd" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificatie." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "" + +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:530 +#: include/identity.php:611 include/identity.php:641 include/nav.php:76 +#: view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profiel" + +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Klik op een contact om het toe te voegen of te verwijderen." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Zichtbaar voor" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle contacten (met veilige profieltoegang)" + +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1157 mod/admin.php:1378 +#: mod/notice.php:15 include/items.php:4894 +msgid "Item not found." +msgstr "Item niet gevonden." + +#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 +msgid "Public access denied." +msgstr "Niet vrij toegankelijk" + +#: mod/display.php:331 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Toegang tot dit profiel is beperkt." + +#: mod/display.php:493 +msgid "Item has been removed." +msgstr "Item is verwijderd." #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -948,6 +567,12 @@ msgid "" " join." msgstr "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." +#: mod/newmember.php:22 mod/admin.php:1209 mod/admin.php:1454 +#: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Instellingen" + #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Ga naar je instellingen" @@ -967,7 +592,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:695 +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:709 msgid "Upload Profile Photo" msgstr "Profielfoto uploaden" @@ -1066,7 +691,7 @@ msgid "" "hours." msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." -#: mod/newmember.php:66 include/group.php:270 +#: mod/newmember.php:66 include/group.php:272 msgid "Groups" msgstr "Groepen" @@ -1106,115 +731,867 @@ msgid "" " features and resources." msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." -#: mod/_search.php:21 mod/network.php:187 mod/search.php:21 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protocol fout. Geen ID Gevonden." -#: mod/_search.php:30 mod/network.php:196 mod/search.php:30 -#: include/features.php:42 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." -#: mod/_search.php:89 mod/viewcontacts.php:19 mod/community.php:18 -#: mod/dfrn_request.php:777 mod/directory.php:35 mod/display.php:223 -#: mod/photos.php:942 mod/search.php:89 mod/videos.php:187 -msgid "Public access denied." -msgstr "Niet vrij toegankelijk" +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Login mislukt." -#: mod/_search.php:99 mod/search.php:99 include/nav.php:119 -#: include/text.php:977 -msgid "Search" -msgstr "Zoeken" +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." -#: mod/_search.php:180 mod/_search.php:206 mod/community.php:62 -#: mod/community.php:71 mod/search.php:174 -msgid "No results." -msgstr "Geen resultaten." +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:70 mod/photos.php:184 +#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1854 include/user.php:343 include/user.php:350 +#: include/user.php:357 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Profielfoto's" -#: mod/tagger.php:95 include/conversation.php:265 +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleining van de afbeelding [%s] mislukt." + +#: mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." + +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Ik kan de afbeelding niet verwerken" + +#: mod/profile_photo.php:144 mod/wall_upload.php:151 mod/photos.php:803 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:153 mod/wall_upload.php:183 mod/photos.php:843 +msgid "Unable to process image." +msgstr "Niet in staat om de afbeelding te verwerken" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Upload bestand:" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Kies een profiel:" + +#: mod/profile_photo.php:245 +msgid "Upload" +msgstr "Uploaden" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "of" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "Deze stap overslaan" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit je fotoalbums" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Wijzigingen compleet" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Uploaden van afbeelding gelukt." + +#: mod/profile_photo.php:301 mod/wall_upload.php:216 mod/photos.php:870 +msgid "Image upload failed." +msgstr "Uploaden van afbeelding mislukt." + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 +#: include/text.php:1988 include/diaspora.php:2140 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "foto" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 +#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "status" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt %3$s van %2$s" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Label verwijderd" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Verwijder label van item" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecteer een label om te verwijderen: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Verwijderen" + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "Klaar" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "Succesvol" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "Mislukt" + +#: mod/ostatus_subscribe.php:69 object/Item.php:235 +msgid "ignored" +msgstr "Verboden" + +#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "Houd dit scherm open tot het klaar is" + +#: mod/filer.php:30 include/conversation.php:1133 +#: include/conversation.php:1151 +msgid "Save to Folder:" +msgstr "Bewaren in map:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- Kies -" + +#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:997 +msgid "Save" +msgstr "Bewaren" + +#: mod/follow.php:18 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "Aanvraag indienen" + +#: mod/follow.php:29 +msgid "You already added this contact." +msgstr "Je hebt deze kontakt al toegevoegd" + +#: mod/follow.php:38 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:45 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "" + +#: mod/follow.php:52 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:104 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "Beantwoord het volgende:" + +#: mod/follow.php:105 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "Kent %s jou?" + +#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 +#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 +#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 +#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/profiles.php:687 mod/api.php:106 +msgid "No" +msgstr "Nee" + +#: mod/follow.php:106 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "Voeg een persoonlijke opmerking toe:" + +#: mod/follow.php:112 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "Adres van uw identiteit:" + +#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 +#: mod/directory.php:139 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Plaats:" + +#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 +#: include/identity.php:277 include/identity.php:582 +msgid "About:" +msgstr "Over:" + +#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:576 +msgid "Tags:" +msgstr "Labels:" + +#: mod/follow.php:162 +msgid "Contact added" +msgstr "Contact toegevoegd" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Ik kan de originele post niet meer vinden." + +#: mod/item.php:322 +msgid "Empty post discarded." +msgstr "Lege post weggegooid." + +#: mod/item.php:461 mod/wall_upload.php:213 mod/wall_upload.php:227 +#: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 +msgid "Wall Photos" +msgstr "" + +#: mod/item.php:835 +msgid "System error. Post not saved." +msgstr "Systeemfout. Post niet bewaard." + +#: mod/item.php:964 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." + +#: mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "Je kunt ze online bezoeken op %s" + +#: mod/item.php:967 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." + +#: mod/item.php:971 +#, php-format +msgid "%s posted an update." +msgstr "%s heeft een wijziging geplaatst." + +#: mod/group.php:29 +msgid "Group created." +msgstr "Groep aangemaakt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Kon de groep niet aanmaken." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Groep niet gevonden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Groepsnaam gewijzigd." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Bewaar groep" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Maak een groep contacten/vrienden aan." + +#: mod/group.php:94 mod/group.php:178 include/group.php:275 +msgid "Group Name: " +msgstr "Groepsnaam:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Groep verwijderd." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Niet in staat om groep te verwijderen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Groepsbewerker" + +#: mod/group.php:190 +msgid "Members" +msgstr "Leden" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Toepassingen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Geen toepassingen geïnstalleerd" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profiel niet gevonden" + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "Contact niet gevonden" + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwoord van de website op afstand werd niet begrepen." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Onverwacht antwoord van website op afstand:" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bevestiging werd correct voltooid." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Website op afstand berichtte: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Verzoek mislukt of herroepen." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Ik kan geen contact foto instellen." + +#: mod/dfrn_confirm.php:487 include/conversation.php:185 +#: include/diaspora.php:636 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s is nu bevriend met %2$s" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Geen gebruiker gevonden voor '%s'" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "We vonden op onze webstek geen contactrecord voor jou." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4313 +msgid "[Name Withheld]" +msgstr "[Naam achtergehouden]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s is toegetreden tot %2$s" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Gevraagde profiel is niet beschikbaar." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tips voor nieuwe leden" + +#: mod/videos.php:115 +msgid "Do you really want to delete this video?" +msgstr "Wil je deze video echt verwijderen?" + +#: mod/videos.php:120 +msgid "Delete Video" +msgstr "Verwijder video" + +#: mod/videos.php:199 +msgid "No videos selected" +msgstr "Geen video's geselecteerd" + +#: mod/videos.php:300 mod/photos.php:1079 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." + +#: mod/videos.php:375 include/text.php:1458 +msgid "View Video" +msgstr "Bekijk Video" + +#: mod/videos.php:382 mod/photos.php:1882 +msgid "View Album" +msgstr "Album bekijken" + +#: mod/videos.php:391 +msgid "Recent Videos" +msgstr "Recente video's" + +#: mod/videos.php:393 +msgid "Upload New Videos" +msgstr "Nieuwe video's uploaden" + +#: mod/tagger.php:95 include/conversation.php:278 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s labelde %3$s van %2$s met %4$s" -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Item niet beschikbaar" +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vriendschapsvoorstel verzonden." -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Stel vrienden voor" -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Account goedgekeurd." - -#: mod/regmod.php:92 +#: mod/fsuggest.php:99 #, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" +msgid "Suggest a friend for %s" +msgstr "Stel een vriend voor aan %s" -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Inloggen." - -#: mod/uimport.php:50 mod/register.php:188 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." - -#: mod/uimport.php:64 mod/register.php:283 -msgid "Import" -msgstr "Importeren" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Account verplaatsen" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Je kunt een account van een andere Friendica server importeren." - -#: mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren." - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Account bestand" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1702 +msgid "Invalid request." msgstr "" -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Privacyinformatie op afstand niet beschikbaar." +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Geen profiel" +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" -#: mod/update_profile.php:41 mod/update_network.php:25 -#: mod/update_display.php:22 mod/update_community.php:18 -#: mod/update_notes.php:37 -msgid "[Embedded content - reload page to view]" -msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." + +#: mod/lostpass.php:109 boot.php:1295 +msgid "Password Reset" +msgstr "Wachtwoord opnieuw instellen" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Je nieuwe wachtwoord is" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "klik hier om in te loggen" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t" + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "" + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Je wachtwoord is veranderd op %s" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Bijnaam of e-mail:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Opnieuw" + +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:1986 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "gebeurtenis" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s leuk" + +#: mod/like.php:189 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt het %3$s van %2$s niet leuk" + +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: mod/ping.php:257 +msgid "{0} wants to be your friend" +msgstr "{0} wilt je vriend worden" + +#: mod/ping.php:272 +msgid "{0} sent you a message" +msgstr "{0} stuurde jou een bericht" + +#: mod/ping.php:287 +msgid "{0} requested registration" +msgstr "{0} vroeg om zich te registreren" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Geen contacten." + +#: mod/viewcontacts.php:83 include/text.php:917 +msgid "View Contacts" +msgstr "Bekijk contacten" + +#: mod/notifications.php:29 +msgid "Invalid request identifier." +msgstr "Ongeldige request identifier." + +#: mod/notifications.php:38 mod/notifications.php:180 +#: mod/notifications.php:260 +msgid "Discard" +msgstr "Verwerpen" + +#: mod/notifications.php:81 +msgid "System" +msgstr "Systeem" + +#: mod/notifications.php:87 mod/admin.php:228 include/nav.php:154 +msgid "Network" +msgstr "Netwerk" + +#: mod/notifications.php:93 mod/network.php:385 +msgid "Personal" +msgstr "Persoonlijk" + +#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Tijdlijn" + +#: mod/notifications.php:105 include/nav.php:162 +msgid "Introductions" +msgstr "Verzoeken" + +#: mod/notifications.php:130 +msgid "Show Ignored Requests" +msgstr "Toon genegeerde verzoeken" + +#: mod/notifications.php:130 +msgid "Hide Ignored Requests" +msgstr "Verberg genegeerde verzoeken" + +#: mod/notifications.php:164 mod/notifications.php:234 +msgid "Notification type: " +msgstr "Notificatiesoort:" + +#: mod/notifications.php:165 +msgid "Friend Suggestion" +msgstr "Vriendschapsvoorstel" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "Voorgesteld door %s" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "Post a new friend activity" +msgstr "Bericht over een nieuwe vriend" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "if applicable" +msgstr "Indien toepasbaar" + +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1110 +msgid "Approve" +msgstr "Goedkeuren" + +#: mod/notifications.php:196 +msgid "Claims to be known to you: " +msgstr "Denkt dat u hem of haar kent:" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "Ja" + +#: mod/notifications.php:196 +msgid "no" +msgstr "Nee" + +#: mod/notifications.php:197 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:200 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:208 +msgid "Friend" +msgstr "Vriend" + +#: mod/notifications.php:209 +msgid "Sharer" +msgstr "Deler" + +#: mod/notifications.php:209 +msgid "Fan/Admirer" +msgstr "Fan/Bewonderaar" + +#: mod/notifications.php:235 +msgid "Friend/Connect Request" +msgstr "Vriendschapsverzoek" + +#: mod/notifications.php:235 +msgid "New Follower" +msgstr "Nieuwe Volger" + +#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "Geslacht:" + +#: mod/notifications.php:266 +msgid "No introductions." +msgstr "Geen vriendschaps- of connectieverzoeken." + +#: mod/notifications.php:269 include/nav.php:165 +msgid "Notifications" +msgstr "Notificaties" + +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 +#, php-format +msgid "%s liked %s's post" +msgstr "%s vond het bericht van %s leuk" + +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s vond het bericht van %s niet leuk" + +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s is nu bevriend met %s" + +#: mod/notifications.php:339 mod/notifications.php:468 +#, php-format +msgid "%s created a new post" +msgstr "%s schreef een nieuw bericht" + +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s gaf een reactie op het bericht van %s" + +#: mod/notifications.php:355 +msgid "No more network notifications." +msgstr "Geen netwerknotificaties meer" + +#: mod/notifications.php:359 +msgid "Network Notifications" +msgstr "Netwerknotificaties" + +#: mod/notifications.php:385 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." + +#: mod/notifications.php:389 mod/notify.php:76 +msgid "System Notifications" +msgstr "Systeemnotificaties" + +#: mod/notifications.php:484 +msgid "No more personal notifications." +msgstr "Geen persoonlijke notificaties meer" + +#: mod/notifications.php:488 +msgid "Personal Notifications" +msgstr "Persoonlijke notificaties" + +#: mod/notifications.php:569 +msgid "No more home notifications." +msgstr "Geen tijdlijn-notificaties meer" + +#: mod/notifications.php:573 +msgid "Home Notifications" +msgstr "Tijdlijn-notificaties" #: mod/babel.php:17 msgid "Source (bbcode) text:" @@ -1264,16 +1641,4083 @@ msgstr "Bron ingave (Diaspora formaat):" msgid "diaspora2bb: " msgstr "diaspora2bb: " -#: mod/like.php:168 include/conversation.php:140 +#: mod/navigation.php:19 include/nav.php:33 +msgid "Nothing new here" +msgstr "Niets nieuw hier" + +#: mod/navigation.php:23 include/nav.php:37 +msgid "Clear notifications" +msgstr "Notificaties verwijderen" + +#: mod/message.php:15 include/nav.php:174 +msgid "New Message" +msgstr "Nieuw Bericht" + +#: mod/message.php:70 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Geen ontvanger geselecteerd." + +#: mod/message.php:74 +msgid "Unable to locate contact information." +msgstr "Ik kan geen contact informatie vinden." + +#: mod/message.php:77 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Bericht kon niet verzonden worden." + +#: mod/message.php:80 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Fout bij het verzamelen van berichten." + +#: mod/message.php:83 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Bericht verzonden." + +#: mod/message.php:189 include/nav.php:171 +msgid "Messages" +msgstr "Privéberichten" + +#: mod/message.php:214 +msgid "Do you really want to delete this message?" +msgstr "Wil je echt dit bericht verwijderen?" + +#: mod/message.php:234 +msgid "Message deleted." +msgstr "Bericht verwijderd." + +#: mod/message.php:265 +msgid "Conversation removed." +msgstr "Gesprek verwijderd." + +#: mod/message.php:290 mod/message.php:298 mod/message.php:427 +#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1129 include/conversation.php:1147 +msgid "Please enter a link URL:" +msgstr "Vul een internetadres/URL in:" + +#: mod/message.php:326 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Verstuur privébericht" + +#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144 +msgid "To:" +msgstr "Aan:" + +#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Onderwerp:" + +#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 +#: mod/editpost.php:109 include/conversation.php:1184 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 +#: mod/editpost.php:113 include/conversation.php:1188 +msgid "Insert web link" +msgstr "Voeg een webadres in" + +#: mod/message.php:341 mod/message.php:526 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 +#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: include/conversation.php:1202 +msgid "Please wait" +msgstr "Even geduld" + +#: mod/message.php:368 +msgid "No messages." +msgstr "Geen berichten." + +#: mod/message.php:411 +msgid "Message not available." +msgstr "Bericht niet beschikbaar." + +#: mod/message.php:481 +msgid "Delete message" +msgstr "Verwijder bericht" + +#: mod/message.php:507 mod/message.php:582 +msgid "Delete conversation" +msgstr "Verwijder gesprek" + +#: mod/message.php:509 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." + +#: mod/message.php:513 +msgid "Send Reply" +msgstr "Verstuur Antwoord" + +#: mod/message.php:555 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt het %3$s van %2$s niet leuk" +msgid "Unknown sender - %s" +msgstr "Onbekende afzender - %s" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Bericht succesvol geplaatst." +#: mod/message.php:558 +#, php-format +msgid "You and %s" +msgstr "Jij en %s" -#: mod/localtime.php:12 include/bb2diaspora.php:139 include/event.php:13 +#: mod/message.php:561 +#, php-format +msgid "%s and You" +msgstr "%s en jij" + +#: mod/message.php:585 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:588 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d bericht" +msgstr[1] "%d berichten" + +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Ingebedde inhoud - herlaad pagina om het te bekijken]" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Contactinstellingen toegepast." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Aanpassen van contact mislukt." + +#: mod/crepair.php:140 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:141 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." + +#: mod/crepair.php:154 mod/crepair.php:156 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:154 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:154 mod/crepair.php:156 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:162 +msgid "Repair Contact Settings" +msgstr "Contactinstellingen herstellen" + +#: mod/crepair.php:166 +msgid "Return to contact editor" +msgstr "Ga terug naar contactbewerker" + +#: mod/crepair.php:168 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:169 mod/admin.php:1108 mod/admin.php:1120 +#: mod/admin.php:1121 mod/admin.php:1134 mod/settings.php:650 +#: mod/settings.php:676 +msgid "Name" +msgstr "Naam" + +#: mod/crepair.php:170 +msgid "Account Nickname" +msgstr "Bijnaam account" + +#: mod/crepair.php:171 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" + +#: mod/crepair.php:172 +msgid "Account URL" +msgstr "URL account" + +#: mod/crepair.php:173 +msgid "Friend Request URL" +msgstr "URL vriendschapsverzoek" + +#: mod/crepair.php:174 +msgid "Friend Confirm URL" +msgstr "URL vriendschapsbevestiging" + +#: mod/crepair.php:175 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:176 +msgid "Poll/Feed URL" +msgstr "URL poll/feed" + +#: mod/crepair.php:177 +msgid "New photo from this URL" +msgstr "Nieuwe foto van deze URL" + +#: mod/crepair.php:178 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:183 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 +msgid "Login" +msgstr "Login" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Toegang geweigerd" + +#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:84 +#: mod/suggest.php:97 include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Verbinden" + +#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 +#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:335 +#: include/conversation.php:912 include/conversation.php:926 +msgid "View Profile" +msgstr "Bekijk profiel" + +#: mod/dirfind.php:217 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:224 mod/match.php:104 +msgid "No matches" +msgstr "Geen resultaten" + +#: mod/fbrowser.php:32 include/identity.php:649 include/nav.php:77 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Foto's" + +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 +#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 +#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 +#: view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Contactfoto's" + +#: mod/fbrowser.php:125 +msgid "Files" +msgstr "Bestanden" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Contacten die geen leden zijn van een groep" + +#: mod/admin.php:80 +msgid "Theme settings updated." +msgstr "Thema-instellingen aangepast." + +#: mod/admin.php:127 mod/admin.php:709 +msgid "Site" +msgstr "Website" + +#: mod/admin.php:128 mod/admin.php:653 mod/admin.php:1103 mod/admin.php:1118 +msgid "Users" +msgstr "Gebruiker" + +#: mod/admin.php:129 mod/admin.php:1207 mod/admin.php:1267 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:130 mod/admin.php:1452 mod/admin.php:1503 +msgid "Themes" +msgstr "Thema's" + +#: mod/admin.php:131 +msgid "DB updates" +msgstr "DB aanpassingen" + +#: mod/admin.php:132 mod/admin.php:223 +msgid "Inspect Queue" +msgstr "" + +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1591 +msgid "Logs" +msgstr "Logs" + +#: mod/admin.php:148 +msgid "probe address" +msgstr "" + +#: mod/admin.php:149 +msgid "check webfinger" +msgstr "" + +#: mod/admin.php:154 include/nav.php:194 +msgid "Admin" +msgstr "Beheer" + +#: mod/admin.php:155 +msgid "Plugin Features" +msgstr "Plugin Functies" + +#: mod/admin.php:157 +msgid "diagnostics" +msgstr "" + +#: mod/admin.php:158 +msgid "User registrations waiting for confirmation" +msgstr "Gebruikersregistraties wachten op bevestiging" + +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:708 mod/admin.php:1102 +#: mod/admin.php:1206 mod/admin.php:1266 mod/admin.php:1451 mod/admin.php:1502 +#: mod/admin.php:1590 +msgid "Administration" +msgstr "Beheer" + +#: mod/admin.php:225 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:226 +msgid "Recipient Name" +msgstr "" + +#: mod/admin.php:227 +msgid "Recipient Profile" +msgstr "" + +#: mod/admin.php:229 +msgid "Created" +msgstr "" + +#: mod/admin.php:230 +msgid "Last Tried" +msgstr "" + +#: mod/admin.php:231 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "" + +#: mod/admin.php:243 mod/admin.php:1056 +msgid "Normal Account" +msgstr "Normaal account" + +#: mod/admin.php:244 mod/admin.php:1057 +msgid "Soapbox Account" +msgstr "Zeepkist-account" + +#: mod/admin.php:245 mod/admin.php:1058 +msgid "Community/Celebrity Account" +msgstr "Account voor een groep/forum of beroemdheid" + +#: mod/admin.php:246 mod/admin.php:1059 +msgid "Automatic Friend Account" +msgstr "Automatisch Vriendschapsaccount" + +#: mod/admin.php:247 +msgid "Blog Account" +msgstr "Blog Account" + +#: mod/admin.php:248 +msgid "Private Forum" +msgstr "Privéforum/-groep" + +#: mod/admin.php:267 +msgid "Message queues" +msgstr "Bericht-wachtrijen" + +#: mod/admin.php:273 +msgid "Summary" +msgstr "Samenvatting" + +#: mod/admin.php:275 +msgid "Registered users" +msgstr "Geregistreerde gebruikers" + +#: mod/admin.php:277 +msgid "Pending registrations" +msgstr "Registraties die in de wacht staan" + +#: mod/admin.php:278 +msgid "Version" +msgstr "Versie" + +#: mod/admin.php:283 +msgid "Active plugins" +msgstr "Actieve plug-ins" + +#: mod/admin.php:306 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: mod/admin.php:585 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:593 +msgid "Site settings updated." +msgstr "Site instellingen gewijzigd." + +#: mod/admin.php:617 mod/settings.php:901 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" + +#: mod/admin.php:636 +msgid "No community page" +msgstr "" + +#: mod/admin.php:637 +msgid "Public postings from users of this site" +msgstr "" + +#: mod/admin.php:638 +msgid "Global community page" +msgstr "" + +#: mod/admin.php:644 +msgid "At post arrival" +msgstr "" + +#: mod/admin.php:645 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequent" + +#: mod/admin.php:646 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "elk uur" + +#: mod/admin.php:647 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" + +#: mod/admin.php:648 include/contact_selectors.php:59 +msgid "Daily" +msgstr "dagelijks" + +#: mod/admin.php:654 +msgid "Users, Global Contacts" +msgstr "" + +#: mod/admin.php:655 +msgid "Users, Global Contacts/fallback" +msgstr "" + +#: mod/admin.php:659 +msgid "One month" +msgstr "" + +#: mod/admin.php:660 +msgid "Three months" +msgstr "" + +#: mod/admin.php:661 +msgid "Half a year" +msgstr "" + +#: mod/admin.php:662 +msgid "One year" +msgstr "" + +#: mod/admin.php:667 +msgid "Multi user instance" +msgstr "Server voor meerdere gebruikers" + +#: mod/admin.php:690 +msgid "Closed" +msgstr "Gesloten" + +#: mod/admin.php:691 +msgid "Requires approval" +msgstr "Toestemming vereist" + +#: mod/admin.php:692 +msgid "Open" +msgstr "Open" + +#: mod/admin.php:696 +msgid "No SSL policy, links will track page SSL state" +msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" + +#: mod/admin.php:697 +msgid "Force all links to use SSL" +msgstr "Verplicht alle links om SSL te gebruiken" + +#: mod/admin.php:698 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" + +#: mod/admin.php:710 mod/admin.php:1268 mod/admin.php:1504 mod/admin.php:1592 +#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 +#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 +msgid "Save Settings" +msgstr "Instellingen opslaan" + +#: mod/admin.php:711 mod/register.php:260 +msgid "Registration" +msgstr "Registratie" + +#: mod/admin.php:712 +msgid "File upload" +msgstr "Uploaden bestand" + +#: mod/admin.php:713 +msgid "Policies" +msgstr "Beleid" + +#: mod/admin.php:714 +msgid "Advanced" +msgstr "Geavanceerd" + +#: mod/admin.php:715 +msgid "Auto Discovered Contact Directory" +msgstr "" + +#: mod/admin.php:716 +msgid "Performance" +msgstr "Performantie" + +#: mod/admin.php:717 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "" + +#: mod/admin.php:720 +msgid "Site name" +msgstr "Site naam" + +#: mod/admin.php:721 +msgid "Host name" +msgstr "" + +#: mod/admin.php:722 +msgid "Sender Email" +msgstr "" + +#: mod/admin.php:722 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "" + +#: mod/admin.php:723 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:724 +msgid "Shortcut icon" +msgstr "" + +#: mod/admin.php:724 +msgid "Link to an icon that will be used for browsers." +msgstr "" + +#: mod/admin.php:725 +msgid "Touch icon" +msgstr "" + +#: mod/admin.php:725 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "" + +#: mod/admin.php:726 +msgid "Additional Info" +msgstr "" + +#: mod/admin.php:726 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "" + +#: mod/admin.php:727 +msgid "System language" +msgstr "Systeemtaal" + +#: mod/admin.php:728 +msgid "System theme" +msgstr "Systeem thema" + +#: mod/admin.php:728 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen" + +#: mod/admin.php:729 +msgid "Mobile system theme" +msgstr "Mobiel systeem thema" + +#: mod/admin.php:729 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" + +#: mod/admin.php:730 +msgid "SSL link policy" +msgstr "Beleid SSL-links" + +#: mod/admin.php:730 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" + +#: mod/admin.php:731 +msgid "Force SSL" +msgstr "" + +#: mod/admin.php:731 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" + +#: mod/admin.php:732 +msgid "Old style 'Share'" +msgstr "" + +#: mod/admin.php:732 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: mod/admin.php:733 +msgid "Hide help entry from navigation menu" +msgstr "Verberg de 'help' uit het navigatiemenu" + +#: mod/admin.php:733 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." + +#: mod/admin.php:734 +msgid "Single user instance" +msgstr "Server voor één gebruiker" + +#: mod/admin.php:734 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." + +#: mod/admin.php:735 +msgid "Maximum image size" +msgstr "Maximum afbeeldingsgrootte" + +#: mod/admin.php:735 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." + +#: mod/admin.php:736 +msgid "Maximum image length" +msgstr "Maximum afbeeldingslengte" + +#: mod/admin.php:736 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." + +#: mod/admin.php:737 +msgid "JPEG image quality" +msgstr "JPEG afbeeldingskwaliteit" + +#: mod/admin.php:737 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." + +#: mod/admin.php:739 +msgid "Register policy" +msgstr "Registratiebeleid" + +#: mod/admin.php:740 +msgid "Maximum Daily Registrations" +msgstr "Maximum aantal registraties per dag" + +#: mod/admin.php:740 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." + +#: mod/admin.php:741 +msgid "Register text" +msgstr "Registratietekst" + +#: mod/admin.php:741 +msgid "Will be displayed prominently on the registration page." +msgstr "Dit zal prominent op de registratiepagina getoond worden." + +#: mod/admin.php:742 +msgid "Accounts abandoned after x days" +msgstr "Verlaten accounts na x dagen" + +#: mod/admin.php:742 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." + +#: mod/admin.php:743 +msgid "Allowed friend domains" +msgstr "Toegelaten vriend domeinen" + +#: mod/admin.php:743 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." + +#: mod/admin.php:744 +msgid "Allowed email domains" +msgstr "Toegelaten e-mail domeinen" + +#: mod/admin.php:744 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." + +#: mod/admin.php:745 +msgid "Block public" +msgstr "Openbare toegang blokkeren" + +#: mod/admin.php:745 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." + +#: mod/admin.php:746 +msgid "Force publish" +msgstr "Dwing publiceren af" + +#: mod/admin.php:746 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." + +#: mod/admin.php:747 +msgid "Global directory URL" +msgstr "" + +#: mod/admin.php:747 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:748 +msgid "Allow threaded items" +msgstr "Sta threads in conversaties toe" + +#: mod/admin.php:748 +msgid "Allow infinite level threading for items on this site." +msgstr "Sta oneindige niveaus threads in conversaties op deze website toe." + +#: mod/admin.php:749 +msgid "Private posts by default for new users" +msgstr "Privéberichten als standaard voor nieuwe gebruikers" + +#: mod/admin.php:749 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." + +#: mod/admin.php:750 +msgid "Don't include post content in email notifications" +msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" + +#: mod/admin.php:750 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." + +#: mod/admin.php:751 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: mod/admin.php:751 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: mod/admin.php:752 +msgid "Don't embed private images in posts" +msgstr "" + +#: mod/admin.php:752 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: mod/admin.php:753 +msgid "Allow Users to set remote_self" +msgstr "" + +#: mod/admin.php:753 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: mod/admin.php:754 +msgid "Block multiple registrations" +msgstr "Blokkeer meerdere registraties" + +#: mod/admin.php:754 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." + +#: mod/admin.php:755 +msgid "OpenID support" +msgstr "OpenID ondersteuning" + +#: mod/admin.php:755 +msgid "OpenID support for registration and logins." +msgstr "OpenID ondersteuning voor registraties en logins." + +#: mod/admin.php:756 +msgid "Fullname check" +msgstr "Controleer volledige naam" + +#: mod/admin.php:756 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel" + +#: mod/admin.php:757 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 reguliere uitdrukkingen" + +#: mod/admin.php:757 +msgid "Use PHP UTF8 regular expressions" +msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen" + +#: mod/admin.php:758 +msgid "Community Page Style" +msgstr "" + +#: mod/admin.php:758 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" + +#: mod/admin.php:759 +msgid "Posts per user on community page" +msgstr "" + +#: mod/admin.php:759 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" + +#: mod/admin.php:760 +msgid "Enable OStatus support" +msgstr "Activeer OStatus ondersteuning" + +#: mod/admin.php:760 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: mod/admin.php:761 +msgid "OStatus conversation completion interval" +msgstr "" + +#: mod/admin.php:761 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: mod/admin.php:762 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "" + +#: mod/admin.php:764 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "" + +#: mod/admin.php:765 +msgid "Enable Diaspora support" +msgstr "Activeer Diaspora ondersteuning" + +#: mod/admin.php:765 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." + +#: mod/admin.php:766 +msgid "Only allow Friendica contacts" +msgstr "Laat alleen Friendica contacten toe" + +#: mod/admin.php:766 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." + +#: mod/admin.php:767 +msgid "Verify SSL" +msgstr "Controleer SSL" + +#: mod/admin.php:767 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." + +#: mod/admin.php:768 +msgid "Proxy user" +msgstr "Proxy-gebruiker" + +#: mod/admin.php:769 +msgid "Proxy URL" +msgstr "Proxy-URL" + +#: mod/admin.php:770 +msgid "Network timeout" +msgstr "Netwerk timeout" + +#: mod/admin.php:770 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." + +#: mod/admin.php:771 +msgid "Delivery interval" +msgstr "Afleverinterval" + +#: mod/admin.php:771 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers." + +#: mod/admin.php:772 +msgid "Poll interval" +msgstr "Poll-interval" + +#: mod/admin.php:772 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt." + +#: mod/admin.php:773 +msgid "Maximum Load Average" +msgstr "Maximum gemiddelde belasting" + +#: mod/admin.php:773 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50." + +#: mod/admin.php:774 +msgid "Maximum Load Average (Frontend)" +msgstr "" + +#: mod/admin.php:774 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "" + +#: mod/admin.php:776 +msgid "Periodical check of global contacts" +msgstr "" + +#: mod/admin.php:776 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "" + +#: mod/admin.php:777 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:777 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:778 +msgid "Discover contacts from other servers" +msgstr "" + +#: mod/admin.php:778 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "" + +#: mod/admin.php:779 +msgid "Timeframe for fetching global contacts" +msgstr "" + +#: mod/admin.php:779 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "" + +#: mod/admin.php:780 +msgid "Search the local directory" +msgstr "" + +#: mod/admin.php:780 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "" + +#: mod/admin.php:782 +msgid "Publish server information" +msgstr "" + +#: mod/admin.php:782 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "" + +#: mod/admin.php:784 +msgid "Use MySQL full text engine" +msgstr "Gebruik de tekst-zoekfunctie van MySQL" + +#: mod/admin.php:784 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters." + +#: mod/admin.php:785 +msgid "Suppress Language" +msgstr "" + +#: mod/admin.php:785 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: mod/admin.php:786 +msgid "Suppress Tags" +msgstr "" + +#: mod/admin.php:786 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" + +#: mod/admin.php:787 +msgid "Path to item cache" +msgstr "Pad naar cache voor items" + +#: mod/admin.php:787 +msgid "The item caches buffers generated bbcode and external images." +msgstr "" + +#: mod/admin.php:788 +msgid "Cache duration in seconds" +msgstr "Cache tijdsduur in seconden" + +#: mod/admin.php:788 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "" + +#: mod/admin.php:789 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: mod/admin.php:789 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: mod/admin.php:790 +msgid "Path for lock file" +msgstr "Pad voor lock bestand" + +#: mod/admin.php:790 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "" + +#: mod/admin.php:791 +msgid "Temp path" +msgstr "Tijdelijk pad" + +#: mod/admin.php:791 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "" + +#: mod/admin.php:792 +msgid "Base path to installation" +msgstr "Basispad voor installatie" + +#: mod/admin.php:792 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "" + +#: mod/admin.php:793 +msgid "Disable picture proxy" +msgstr "" + +#: mod/admin.php:793 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" + +#: mod/admin.php:794 +msgid "Enable old style pager" +msgstr "" + +#: mod/admin.php:794 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" + +#: mod/admin.php:795 +msgid "Only search in tags" +msgstr "" + +#: mod/admin.php:795 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" + +#: mod/admin.php:797 +msgid "New base url" +msgstr "" + +#: mod/admin.php:797 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "" + +#: mod/admin.php:799 +msgid "RINO Encryption" +msgstr "" + +#: mod/admin.php:799 +msgid "Encryption layer between nodes." +msgstr "" + +#: mod/admin.php:800 +msgid "Embedly API key" +msgstr "" + +#: mod/admin.php:800 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "" + +#: mod/admin.php:818 +msgid "Update has been marked successful" +msgstr "Wijziging succesvol gemarkeerd " + +#: mod/admin.php:826 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "" + +#: mod/admin.php:829 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" + +#: mod/admin.php:841 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:844 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Wijziging %s geslaagd." + +#: mod/admin.php:848 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." + +#: mod/admin.php:850 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" + +#: mod/admin.php:869 +msgid "No failed updates." +msgstr "Geen misluke wijzigingen" + +#: mod/admin.php:870 +msgid "Check database structure" +msgstr "" + +#: mod/admin.php:875 +msgid "Failed Updates" +msgstr "Misluke wijzigingen" + +#: mod/admin.php:876 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." + +#: mod/admin.php:877 +msgid "Mark success (if update was manually applied)" +msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" + +#: mod/admin.php:878 +msgid "Attempt to execute this update step automatically" +msgstr "Probeer deze stap automatisch uit te voeren" + +#: mod/admin.php:910 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" + +#: mod/admin.php:913 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" + +#: mod/admin.php:945 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Registratie details voor %s" + +#: mod/admin.php:957 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd" +msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd" + +#: mod/admin.php:964 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s gebruiker verwijderd" +msgstr[1] "%s gebruikers verwijderd" + +#: mod/admin.php:1003 +#, php-format +msgid "User '%s' deleted" +msgstr "Gebruiker '%s' verwijderd" + +#: mod/admin.php:1011 +#, php-format +msgid "User '%s' unblocked" +msgstr "Gebruiker '%s' niet meer geblokkeerd" + +#: mod/admin.php:1011 +#, php-format +msgid "User '%s' blocked" +msgstr "Gebruiker '%s' geblokkeerd" + +#: mod/admin.php:1104 +msgid "Add User" +msgstr "Gebruiker toevoegen" + +#: mod/admin.php:1105 +msgid "select all" +msgstr "Alles selecteren" + +#: mod/admin.php:1106 +msgid "User registrations waiting for confirm" +msgstr "Gebruikersregistraties wachten op een bevestiging" + +#: mod/admin.php:1107 +msgid "User waiting for permanent deletion" +msgstr "" + +#: mod/admin.php:1108 +msgid "Request date" +msgstr "Registratiedatum" + +#: mod/admin.php:1108 mod/admin.php:1120 mod/admin.php:1121 mod/admin.php:1136 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" + +#: mod/admin.php:1109 +msgid "No registrations." +msgstr "Geen registraties." + +#: mod/admin.php:1111 +msgid "Deny" +msgstr "Weiger" + +#: mod/admin.php:1115 +msgid "Site admin" +msgstr "Sitebeheerder" + +#: mod/admin.php:1116 +msgid "Account expired" +msgstr "Account verlopen" + +#: mod/admin.php:1119 +msgid "New User" +msgstr "Nieuwe gebruiker" + +#: mod/admin.php:1120 mod/admin.php:1121 +msgid "Register date" +msgstr "Registratiedatum" + +#: mod/admin.php:1120 mod/admin.php:1121 +msgid "Last login" +msgstr "Laatste login" + +#: mod/admin.php:1120 mod/admin.php:1121 +msgid "Last item" +msgstr "Laatste item" + +#: mod/admin.php:1120 +msgid "Deleted since" +msgstr "Verwijderd sinds" + +#: mod/admin.php:1121 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1123 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" + +#: mod/admin.php:1124 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" + +#: mod/admin.php:1134 +msgid "Name of the new user." +msgstr "Naam van nieuwe gebruiker" + +#: mod/admin.php:1135 +msgid "Nickname" +msgstr "Bijnaam" + +#: mod/admin.php:1135 +msgid "Nickname of the new user." +msgstr "Bijnaam van nieuwe gebruiker" + +#: mod/admin.php:1136 +msgid "Email address of the new user." +msgstr "E-mailadres van nieuwe gebruiker" + +#: mod/admin.php:1169 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s uitgeschakeld." + +#: mod/admin.php:1173 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s ingeschakeld." + +#: mod/admin.php:1183 mod/admin.php:1407 +msgid "Disable" +msgstr "Uitschakelen" + +#: mod/admin.php:1185 mod/admin.php:1409 +msgid "Enable" +msgstr "Inschakelen" + +#: mod/admin.php:1208 mod/admin.php:1453 +msgid "Toggle" +msgstr "Schakelaar" + +#: mod/admin.php:1216 mod/admin.php:1463 +msgid "Author: " +msgstr "Auteur:" + +#: mod/admin.php:1217 mod/admin.php:1464 +msgid "Maintainer: " +msgstr "Onderhoud:" + +#: mod/admin.php:1269 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1367 +msgid "No themes found." +msgstr "Geen thema's gevonden." + +#: mod/admin.php:1445 +msgid "Screenshot" +msgstr "Schermafdruk" + +#: mod/admin.php:1505 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1509 +msgid "[Experimental]" +msgstr "[Experimenteel]" + +#: mod/admin.php:1510 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" + +#: mod/admin.php:1537 +msgid "Log settings updated." +msgstr "Log instellingen gewijzigd" + +#: mod/admin.php:1593 +msgid "Clear" +msgstr "Wis" + +#: mod/admin.php:1599 +msgid "Enable Debugging" +msgstr "" + +#: mod/admin.php:1600 +msgid "Log file" +msgstr "Logbestand" + +#: mod/admin.php:1600 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie." + +#: mod/admin.php:1601 +msgid "Log level" +msgstr "Log niveau" + +#: mod/admin.php:1651 include/acl_selectors.php:347 +msgid "Close" +msgstr "Afsluiten" + +#: mod/admin.php:1657 +msgid "FTP Host" +msgstr "FTP Server" + +#: mod/admin.php:1658 +msgid "FTP Path" +msgstr "FTP Pad" + +#: mod/admin.php:1659 +msgid "FTP User" +msgstr "FTP Gebruiker" + +#: mod/admin.php:1660 +msgid "FTP Password" +msgstr "FTP wachtwoord" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "" + +#: mod/network.php:195 mod/search.php:25 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: mod/network.php:204 mod/search.php:34 include/features.php:43 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" + +#: mod/network.php:205 include/group.php:279 +msgid "add" +msgstr "toevoegen" + +#: mod/network.php:366 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" + +#: mod/network.php:369 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" + +#: mod/network.php:374 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" + +#: mod/network.php:377 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" + +#: mod/network.php:388 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" + +#: mod/network.php:396 +msgid "New" +msgstr "Nieuw" + +#: mod/network.php:399 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" + +#: mod/network.php:407 +msgid "Shared Links" +msgstr "Gedeelde links" + +#: mod/network.php:410 +msgid "Interesting Links" +msgstr "Interessante links" + +#: mod/network.php:418 +msgid "Starred" +msgstr "Met ster" + +#: mod/network.php:421 +msgid "Favourite Posts" +msgstr "Favoriete berichten" + +#: mod/network.php:480 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk." +msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk." + +#: mod/network.php:483 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden." + +#: mod/network.php:550 mod/content.php:119 +msgid "No such group" +msgstr "Zo'n groep bestaat niet" + +#: mod/network.php:567 mod/content.php:130 +msgid "Group is empty" +msgstr "De groep is leeg" + +#: mod/network.php:578 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "" + +#: mod/network.php:596 +#, php-format +msgid "Contact: %s" +msgstr "" + +#: mod/network.php:600 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." + +#: mod/network.php:605 +msgid "Invalid contact." +msgstr "Ongeldig contact." + +#: mod/allfriends.php:45 +msgid "No friends to display." +msgstr "Geen vrienden om te laten zien." + +#: mod/allfriends.php:79 mod/common.php:122 +msgid "Forum" +msgstr "" + +#: mod/allfriends.php:92 +#, php-format +msgid "Friends of %s" +msgstr "Vrienden van %s" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "" + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van de gebeurtenis zijn vereist." + +#: mod/events.php:201 +msgid "Sun" +msgstr "" + +#: mod/events.php:202 +msgid "Mon" +msgstr "" + +#: mod/events.php:203 +msgid "Tue" +msgstr "" + +#: mod/events.php:204 +msgid "Wed" +msgstr "" + +#: mod/events.php:205 +msgid "Thu" +msgstr "" + +#: mod/events.php:206 +msgid "Fri" +msgstr "" + +#: mod/events.php:207 +msgid "Sat" +msgstr "" + +#: mod/events.php:208 mod/settings.php:936 include/text.php:1267 +msgid "Sunday" +msgstr "Zondag" + +#: mod/events.php:209 mod/settings.php:936 include/text.php:1267 +msgid "Monday" +msgstr "Maandag" + +#: mod/events.php:210 include/text.php:1267 +msgid "Tuesday" +msgstr "Dinsdag" + +#: mod/events.php:211 include/text.php:1267 +msgid "Wednesday" +msgstr "Woensdag" + +#: mod/events.php:212 include/text.php:1267 +msgid "Thursday" +msgstr "Donderdag" + +#: mod/events.php:213 include/text.php:1267 +msgid "Friday" +msgstr "Vrijdag" + +#: mod/events.php:214 include/text.php:1267 +msgid "Saturday" +msgstr "Zaterdag" + +#: mod/events.php:215 +msgid "Jan" +msgstr "" + +#: mod/events.php:216 +msgid "Feb" +msgstr "" + +#: mod/events.php:217 +msgid "Mar" +msgstr "" + +#: mod/events.php:218 +msgid "Apr" +msgstr "" + +#: mod/events.php:219 mod/events.php:231 include/text.php:1271 +msgid "May" +msgstr "Mei" + +#: mod/events.php:220 +msgid "Jun" +msgstr "" + +#: mod/events.php:221 +msgid "Jul" +msgstr "" + +#: mod/events.php:222 +msgid "Aug" +msgstr "" + +#: mod/events.php:223 +msgid "Sept" +msgstr "" + +#: mod/events.php:224 +msgid "Oct" +msgstr "" + +#: mod/events.php:225 +msgid "Nov" +msgstr "" + +#: mod/events.php:226 +msgid "Dec" +msgstr "" + +#: mod/events.php:227 include/text.php:1271 +msgid "January" +msgstr "Januari" + +#: mod/events.php:228 include/text.php:1271 +msgid "February" +msgstr "Februari" + +#: mod/events.php:229 include/text.php:1271 +msgid "March" +msgstr "Maart" + +#: mod/events.php:230 include/text.php:1271 +msgid "April" +msgstr "April" + +#: mod/events.php:232 include/text.php:1271 +msgid "June" +msgstr "Juni" + +#: mod/events.php:233 include/text.php:1271 +msgid "July" +msgstr "Juli" + +#: mod/events.php:234 include/text.php:1271 +msgid "August" +msgstr "Augustus" + +#: mod/events.php:235 include/text.php:1271 +msgid "September" +msgstr "September" + +#: mod/events.php:236 include/text.php:1271 +msgid "October" +msgstr "Oktober" + +#: mod/events.php:237 include/text.php:1271 +msgid "November" +msgstr "November" + +#: mod/events.php:238 include/text.php:1271 +msgid "December" +msgstr "December" + +#: mod/events.php:239 +msgid "today" +msgstr "" + +#: mod/events.php:240 include/datetime.php:288 +msgid "month" +msgstr "maand" + +#: mod/events.php:241 include/datetime.php:289 +msgid "week" +msgstr "week" + +#: mod/events.php:242 include/datetime.php:290 +msgid "day" +msgstr "dag" + +#: mod/events.php:377 +msgid "l, F j" +msgstr "l j F" + +#: mod/events.php:399 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" + +#: mod/events.php:421 include/text.php:1714 include/text.php:1721 +msgid "link to source" +msgstr "Verwijzing naar bron" + +#: mod/events.php:456 include/identity.php:669 include/nav.php:79 +#: include/nav.php:140 view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Gebeurtenissen" + +#: mod/events.php:457 +msgid "Create New Event" +msgstr "Maak een nieuwe gebeurtenis" + +#: mod/events.php:458 +msgid "Previous" +msgstr "Vorige" + +#: mod/events.php:459 mod/install.php:212 +msgid "Next" +msgstr "Volgende" + +#: mod/events.php:554 +msgid "Event details" +msgstr "Gebeurtenis details" + +#: mod/events.php:555 +msgid "Starting date and Title are required." +msgstr "" + +#: mod/events.php:556 +msgid "Event Starts:" +msgstr "Gebeurtenis begint:" + +#: mod/events.php:556 mod/events.php:568 +msgid "Required" +msgstr "Vereist" + +#: mod/events.php:558 +msgid "Finish date/time is not known or not relevant" +msgstr "Einddatum/tijd is niet gekend of niet relevant" + +#: mod/events.php:560 +msgid "Event Finishes:" +msgstr "Gebeurtenis eindigt:" + +#: mod/events.php:562 +msgid "Adjust for viewer timezone" +msgstr "Pas aan aan de tijdzone van de gebruiker" + +#: mod/events.php:564 +msgid "Description:" +msgstr "Beschrijving:" + +#: mod/events.php:568 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:570 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" + +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 +#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: object/Item.php:719 include/conversation.php:1217 +msgid "Preview" +msgstr "Voorvertoning" + +#: mod/credits.php:16 +msgid "Credits" +msgstr "" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: object/Item.php:133 include/conversation.php:634 +msgid "Select" +msgstr "Kies" + +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:357 object/Item.php:358 include/conversation.php:675 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" + +#: mod/content.php:483 mod/content.php:866 object/Item.php:371 +#: include/conversation.php:695 +#, php-format +msgid "%s from %s" +msgstr "%s van %s" + +#: mod/content.php:499 include/conversation.php:711 +msgid "View in context" +msgstr "In context bekijken" + +#: mod/content.php:605 object/Item.php:419 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties" + +#: mod/content.php:607 object/Item.php:421 object/Item.php:434 +#: include/text.php:1992 +msgid "comment" +msgid_plural "comments" +msgstr[0] "reactie" +msgstr[1] "reacties" + +#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: include/contact_widgets.php:205 include/items.php:5214 +msgid "show more" +msgstr "toon meer" + +#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +msgid "Private Message" +msgstr "Privébericht" + +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" + +#: mod/content.php:686 object/Item.php:253 +msgid "like" +msgstr "leuk" + +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" + +#: mod/content.php:687 object/Item.php:254 +msgid "dislike" +msgstr "niet leuk" + +#: mod/content.php:689 object/Item.php:256 +msgid "Share this" +msgstr "Delen" + +#: mod/content.php:689 object/Item.php:256 +msgid "share" +msgstr "Delen" + +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 +#: mod/photos.php:1755 object/Item.php:707 +msgid "This is you" +msgstr "Dit ben jij" + +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 +#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 +msgid "Comment" +msgstr "Reacties" + +#: mod/content.php:713 object/Item.php:711 +msgid "Bold" +msgstr "Vet" + +#: mod/content.php:714 object/Item.php:712 +msgid "Italic" +msgstr "Cursief" + +#: mod/content.php:715 object/Item.php:713 +msgid "Underline" +msgstr "Onderstrepen" + +#: mod/content.php:716 object/Item.php:714 +msgid "Quote" +msgstr "Citeren" + +#: mod/content.php:717 object/Item.php:715 +msgid "Code" +msgstr "Broncode" + +#: mod/content.php:718 object/Item.php:716 +msgid "Image" +msgstr "Afbeelding" + +#: mod/content.php:719 object/Item.php:717 +msgid "Link" +msgstr "Link" + +#: mod/content.php:720 object/Item.php:718 +msgid "Video" +msgstr "Video" + +#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Bewerken" + +#: mod/content.php:755 object/Item.php:217 +msgid "add star" +msgstr "ster toevoegen" + +#: mod/content.php:756 object/Item.php:218 +msgid "remove star" +msgstr "ster verwijderen" + +#: mod/content.php:757 object/Item.php:219 +msgid "toggle star status" +msgstr "ster toevoegen of verwijderen" + +#: mod/content.php:760 object/Item.php:222 +msgid "starred" +msgstr "met ster" + +#: mod/content.php:761 object/Item.php:242 +msgid "add tag" +msgstr "label toevoegen" + +#: mod/content.php:765 object/Item.php:137 +msgid "save to folder" +msgstr "Bewaren in map" + +#: mod/content.php:856 object/Item.php:359 +msgid "to" +msgstr "aan" + +#: mod/content.php:857 object/Item.php:361 +msgid "Wall-to-Wall" +msgstr "wall-to-wall" + +#: mod/content.php:858 object/Item.php:362 +msgid "via Wall-To-Wall:" +msgstr "via wall-to-wall" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Verwijder mijn account" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Voer je wachtwoord in voor verificatie:" + +#: mod/install.php:120 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: mod/install.php:126 +msgid "Could not connect to database." +msgstr "Kon geen toegang krijgen tot de database." + +#: mod/install.php:130 +msgid "Could not create table." +msgstr "Kon tabel niet aanmaken." + +#: mod/install.php:136 +msgid "Your Friendica site database has been installed." +msgstr "De database van je Friendica-website is geïnstalleerd." + +#: mod/install.php:141 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." + +#: mod/install.php:142 mod/install.php:211 mod/install.php:569 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Zie het bestand \"INSTALL.txt\"." + +#: mod/install.php:154 +msgid "Database already in use." +msgstr "" + +#: mod/install.php:208 +msgid "System check" +msgstr "Systeemcontrole" + +#: mod/install.php:213 +msgid "Check again" +msgstr "Controleer opnieuw" + +#: mod/install.php:232 +msgid "Database connection" +msgstr "Verbinding met database" + +#: mod/install.php:233 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." + +#: mod/install.php:234 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " + +#: mod/install.php:235 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." + +#: mod/install.php:239 +msgid "Database Server Name" +msgstr "Servernaam database" + +#: mod/install.php:240 +msgid "Database Login Name" +msgstr "Gebruikersnaam database" + +#: mod/install.php:241 +msgid "Database Login Password" +msgstr "Wachtwoord database" + +#: mod/install.php:242 +msgid "Database Name" +msgstr "Naam database" + +#: mod/install.php:243 mod/install.php:282 +msgid "Site administrator email address" +msgstr "E-mailadres van de websitebeheerder" + +#: mod/install.php:243 mod/install.php:282 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." + +#: mod/install.php:247 mod/install.php:285 +msgid "Please select a default timezone for your website" +msgstr "Selecteer een standaard tijdzone voor uw website" + +#: mod/install.php:272 +msgid "Site settings" +msgstr "Website-instellingen" + +#: mod/install.php:326 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." + +#: mod/install.php:327 +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. See 'Setup the poller'" +msgstr "" + +#: mod/install.php:331 +msgid "PHP executable path" +msgstr "PATH van het PHP commando" + +#: mod/install.php:331 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten." + +#: mod/install.php:336 +msgid "Command line PHP" +msgstr "PHP-opdrachtregel" + +#: mod/install.php:345 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: mod/install.php:346 +msgid "Found PHP version: " +msgstr "Gevonden PHP versie:" + +#: mod/install.php:348 +msgid "PHP cli binary" +msgstr "" + +#: mod/install.php:359 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." + +#: mod/install.php:360 +msgid "This is required for message delivery to work." +msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." + +#: mod/install.php:362 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:383 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: mod/install.php:384 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." + +#: mod/install.php:386 +msgid "Generate encryption keys" +msgstr "" + +#: mod/install.php:393 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" + +#: mod/install.php:394 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" + +#: mod/install.php:395 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" + +#: mod/install.php:396 +msgid "mysqli PHP module" +msgstr "mysqli PHP module" + +#: mod/install.php:397 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" + +#: mod/install.php:398 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:403 mod/install.php:405 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:403 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." + +#: mod/install.php:411 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." + +#: mod/install.php:415 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." + +#: mod/install.php:419 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." + +#: mod/install.php:423 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd." + +#: mod/install.php:427 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." + +#: mod/install.php:431 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:443 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:445 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:461 +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 "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen." + +#: mod/install.php:462 +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 "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." + +#: mod/install.php:463 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map." + +#: mod/install.php:464 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." + +#: mod/install.php:467 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is schrijfbaar" + +#: mod/install.php:477 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." + +#: mod/install.php:478 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." + +#: mod/install.php:479 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." + +#: mod/install.php:480 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." + +#: mod/install.php:483 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 is schrijfbaar" + +#: mod/install.php:499 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: mod/install.php:501 +msgid "Url rewrite is working" +msgstr "" + +#: mod/install.php:518 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:520 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:528 +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 "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver." + +#: mod/install.php:567 +msgid "

    What next

    " +msgstr "

    Wat nu

    " + +#: mod/install.php:568 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Niet in staat om je tijdlijn-locatie vast te stellen" + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Geen ontvanger." + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat." + +#: mod/help.php:31 +msgid "Help:" +msgstr "Help:" + +#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:273 +msgid "Help" +msgstr "Help" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Niet gevonden" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Pagina niet gevonden" + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heet %2$s van harte welkom" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Uploaden van bestand mislukt." + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." + +#: mod/match.php:83 +msgid "is interested in:" +msgstr "Is geïnteresseerd in:" + +#: mod/match.php:97 +msgid "Profile Match" +msgstr "Profielmatch" + +#: mod/share.php:38 +msgid "link" +msgstr "link" + +#: mod/community.php:23 +msgid "Not available." +msgstr "Niet beschikbaar" + +#: mod/community.php:32 include/nav.php:136 include/nav.php:138 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Website" + +#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +msgid "No results." +msgstr "Geen resultaten." + +#: mod/settings.php:34 mod/photos.php:109 +msgid "everybody" +msgstr "iedereen" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "Extra functies" + +#: mod/settings.php:53 +msgid "Display" +msgstr "Weergave" + +#: mod/settings.php:60 mod/settings.php:853 +msgid "Social Networks" +msgstr "Sociale netwerken" + +#: mod/settings.php:72 include/nav.php:180 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "Persoonlijke gegevens exporteren" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "Account verwijderen" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "Een belangrijk gegeven ontbreekt!" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "E-mail instellingen bijgewerkt.." + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "Functies bijgewerkt" + +#: mod/settings.php:341 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:355 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." + +#: mod/settings.php:360 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." + +#: mod/settings.php:368 +msgid "Wrong password." +msgstr "Verkeerd wachtwoord." + +#: mod/settings.php:379 +msgid "Password changed." +msgstr "Wachtwoord gewijzigd." + +#: mod/settings.php:381 +msgid "Password update failed. Please try again." +msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." + +#: mod/settings.php:450 +msgid " Please use a shorter name." +msgstr "Gebruik een kortere naam." + +#: mod/settings.php:452 +msgid " Name too short." +msgstr "Naam te kort." + +#: mod/settings.php:461 +msgid "Wrong Password" +msgstr "Verkeerd wachtwoord" + +#: mod/settings.php:466 +msgid " Not valid email." +msgstr "Geen geldig e-mailadres." + +#: mod/settings.php:472 +msgid " Cannot change to that email." +msgstr "Kan niet veranderen naar die e-mail." + +#: mod/settings.php:528 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." + +#: mod/settings.php:532 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." + +#: mod/settings.php:571 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." + +#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 +msgid "Add application" +msgstr "Toepassing toevoegen" + +#: mod/settings.php:651 mod/settings.php:677 +msgid "Consumer Key" +msgstr "Gebruikerssleutel" + +#: mod/settings.php:652 mod/settings.php:678 +msgid "Consumer Secret" +msgstr "Gebruikersgeheim" + +#: mod/settings.php:653 mod/settings.php:679 +msgid "Redirect" +msgstr "Doorverwijzing" + +#: mod/settings.php:654 mod/settings.php:680 +msgid "Icon url" +msgstr "URL pictogram" + +#: mod/settings.php:665 +msgid "You can't edit this application." +msgstr "Je kunt deze toepassing niet wijzigen." + +#: mod/settings.php:708 +msgid "Connected Apps" +msgstr "Verbonden applicaties" + +#: mod/settings.php:712 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:713 +msgid "No name" +msgstr "Geen naam" + +#: mod/settings.php:714 +msgid "Remove authorization" +msgstr "Verwijder authorisatie" + +#: mod/settings.php:726 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:734 +msgid "Plugin Settings" +msgstr "Plugin Instellingen" + +#: mod/settings.php:748 +msgid "Off" +msgstr "Uit" + +#: mod/settings.php:748 +msgid "On" +msgstr "Aan" + +#: mod/settings.php:756 +msgid "Additional Features" +msgstr "Extra functies" + +#: mod/settings.php:766 mod/settings.php:770 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:776 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:778 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "" + +#: mod/settings.php:784 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:786 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:795 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:797 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:800 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:809 mod/settings.php:810 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" + +#: mod/settings.php:809 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:809 mod/settings.php:810 +msgid "enabled" +msgstr "ingeschakeld" + +#: mod/settings.php:809 mod/settings.php:810 +msgid "disabled" +msgstr "uitgeschakeld" + +#: mod/settings.php:810 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:846 +msgid "Email access is disabled on this site." +msgstr "E-mailtoegang is op deze website uitgeschakeld." + +#: mod/settings.php:858 +msgid "Email/Mailbox Setup" +msgstr "E-mail Instellen" + +#: mod/settings.php:859 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." + +#: mod/settings.php:860 +msgid "Last successful email check:" +msgstr "Laatste succesvolle e-mail controle:" + +#: mod/settings.php:862 +msgid "IMAP server name:" +msgstr "IMAP server naam:" + +#: mod/settings.php:863 +msgid "IMAP port:" +msgstr "IMAP poort:" + +#: mod/settings.php:864 +msgid "Security:" +msgstr "Beveiliging:" + +#: mod/settings.php:864 mod/settings.php:869 +msgid "None" +msgstr "Geen" + +#: mod/settings.php:865 +msgid "Email login name:" +msgstr "E-mail login naam:" + +#: mod/settings.php:866 +msgid "Email password:" +msgstr "E-mail wachtwoord:" + +#: mod/settings.php:867 +msgid "Reply-to address:" +msgstr "Antwoord adres:" + +#: mod/settings.php:868 +msgid "Send public posts to all email contacts:" +msgstr "Openbare posts naar alle e-mail contacten versturen:" + +#: mod/settings.php:869 +msgid "Action after import:" +msgstr "Actie na importeren:" + +#: mod/settings.php:869 +msgid "Mark as seen" +msgstr "Als 'gelezen' markeren" + +#: mod/settings.php:869 +msgid "Move to folder" +msgstr "Naar map verplaatsen" + +#: mod/settings.php:870 +msgid "Move to folder:" +msgstr "Verplaatsen naar map:" + +#: mod/settings.php:955 +msgid "Display Settings" +msgstr "Scherminstellingen" + +#: mod/settings.php:961 mod/settings.php:979 +msgid "Display Theme:" +msgstr "Schermthema:" + +#: mod/settings.php:962 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" + +#: mod/settings.php:963 +msgid "Update browser every xx seconds" +msgstr "Browser elke xx seconden verversen" + +#: mod/settings.php:963 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 seconden, geen maximum" + +#: mod/settings.php:964 +msgid "Number of items to display per page:" +msgstr "Aantal items te tonen per pagina:" + +#: mod/settings.php:964 mod/settings.php:965 +msgid "Maximum of 100 items" +msgstr "Maximum 100 items" + +#: mod/settings.php:965 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" + +#: mod/settings.php:966 +msgid "Don't show emoticons" +msgstr "Emoticons niet tonen" + +#: mod/settings.php:967 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:968 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:969 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:970 +msgid "Infinite scroll" +msgstr "Oneindig scrollen" + +#: mod/settings.php:971 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:973 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Thema-instellingen" + +#: mod/settings.php:1050 +msgid "User Types" +msgstr "Gebruikerstypes" + +#: mod/settings.php:1051 +msgid "Community Types" +msgstr "Forum/groepstypes" + +#: mod/settings.php:1052 +msgid "Normal Account Page" +msgstr "Normale accountpagina" + +#: mod/settings.php:1053 +msgid "This account is a normal personal profile" +msgstr "Deze account is een normaal persoonlijk profiel" + +#: mod/settings.php:1056 +msgid "Soapbox Page" +msgstr "Zeepkist-pagina" + +#: mod/settings.php:1057 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." + +#: mod/settings.php:1060 +msgid "Community Forum/Celebrity Account" +msgstr "Forum/groeps- of beroemdheid-account" + +#: mod/settings.php:1061 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." + +#: mod/settings.php:1064 +msgid "Automatic Friend Page" +msgstr "Automatisch Vriendschapspagina" + +#: mod/settings.php:1065 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." + +#: mod/settings.php:1068 +msgid "Private Forum [Experimental]" +msgstr "Privé-forum [experimenteel]" + +#: mod/settings.php:1069 +msgid "Private forum - approved members only" +msgstr "Privé-forum - enkel voor goedgekeurde leden" + +#: mod/settings.php:1081 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1081 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." + +#: mod/settings.php:1091 +msgid "Publish your default profile in your local site directory?" +msgstr "Je standaardprofiel in je lokale gids publiceren?" + +#: mod/settings.php:1097 +msgid "Publish your default profile in the global social directory?" +msgstr "Je standaardprofiel in de globale sociale gids publiceren?" + +#: mod/settings.php:1105 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" + +#: mod/settings.php:1109 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "Je profieldetails verbergen voor onbekende bezoekers?" + +#: mod/settings.php:1109 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1114 +msgid "Allow friends to post to your profile page?" +msgstr "Vrienden toestaan om op jou profielpagina te posten?" + +#: mod/settings.php:1120 +msgid "Allow friends to tag your posts?" +msgstr "Sta vrienden toe om jouw berichten te labelen?" + +#: mod/settings.php:1126 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" + +#: mod/settings.php:1132 +msgid "Permit unknown people to send you private mail?" +msgstr "Mogen onbekende personen jou privé berichten sturen?" + +#: mod/settings.php:1140 +msgid "Profile is not published." +msgstr "Profiel is niet gepubliceerd." + +#: mod/settings.php:1148 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1155 +msgid "Automatically expire posts after this many days:" +msgstr "Laat berichten automatisch vervallen na zo veel dagen:" + +#: mod/settings.php:1155 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." + +#: mod/settings.php:1156 +msgid "Advanced expiration settings" +msgstr "Geavanceerde instellingen voor vervallen" + +#: mod/settings.php:1157 +msgid "Advanced Expiration" +msgstr "Geavanceerd Verval:" + +#: mod/settings.php:1158 +msgid "Expire posts:" +msgstr "Laat berichten vervallen:" + +#: mod/settings.php:1159 +msgid "Expire personal notes:" +msgstr "Laat persoonlijke aantekeningen verlopen:" + +#: mod/settings.php:1160 +msgid "Expire starred posts:" +msgstr "Laat berichten met ster verlopen" + +#: mod/settings.php:1161 +msgid "Expire photos:" +msgstr "Laat foto's vervallen:" + +#: mod/settings.php:1162 +msgid "Only expire posts by others:" +msgstr "Laat alleen berichten door anderen vervallen:" + +#: mod/settings.php:1190 +msgid "Account Settings" +msgstr "Account Instellingen" + +#: mod/settings.php:1198 +msgid "Password Settings" +msgstr "Wachtwoord Instellingen" + +#: mod/settings.php:1199 mod/register.php:271 +msgid "New Password:" +msgstr "Nieuw Wachtwoord:" + +#: mod/settings.php:1200 mod/register.php:272 +msgid "Confirm:" +msgstr "Bevestig:" + +#: mod/settings.php:1200 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" + +#: mod/settings.php:1201 +msgid "Current Password:" +msgstr "Huidig wachtwoord:" + +#: mod/settings.php:1201 mod/settings.php:1202 +msgid "Your current password to confirm the changes" +msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" + +#: mod/settings.php:1202 +msgid "Password:" +msgstr "Wachtwoord:" + +#: mod/settings.php:1206 +msgid "Basic Settings" +msgstr "Basis Instellingen" + +#: mod/settings.php:1207 include/identity.php:539 +msgid "Full Name:" +msgstr "Volledige Naam:" + +#: mod/settings.php:1208 +msgid "Email Address:" +msgstr "E-mailadres:" + +#: mod/settings.php:1209 +msgid "Your Timezone:" +msgstr "Je Tijdzone:" + +#: mod/settings.php:1210 +msgid "Your Language:" +msgstr "" + +#: mod/settings.php:1210 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "" + +#: mod/settings.php:1211 +msgid "Default Post Location:" +msgstr "Standaard locatie:" + +#: mod/settings.php:1212 +msgid "Use Browser Location:" +msgstr "Gebruik Webbrowser Locatie:" + +#: mod/settings.php:1215 +msgid "Security and Privacy Settings" +msgstr "Instellingen voor Beveiliging en Privacy" + +#: mod/settings.php:1217 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal vriendschapsverzoeken per dag:" + +#: mod/settings.php:1217 mod/settings.php:1247 +msgid "(to prevent spam abuse)" +msgstr "(om spam misbruik te voorkomen)" + +#: mod/settings.php:1218 +msgid "Default Post Permissions" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:1219 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + +#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 +msgid "Show to Groups" +msgstr "Tonen aan groepen" + +#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 +msgid "Show to Contacts" +msgstr "Tonen aan contacten" + +#: mod/settings.php:1230 +msgid "Default Private Post" +msgstr "Standaard Privé Post" + +#: mod/settings.php:1231 +msgid "Default Public Post" +msgstr "Standaard Publieke Post" + +#: mod/settings.php:1235 +msgid "Default Permissions for New Posts" +msgstr "Standaard rechten voor nieuwe berichten" + +#: mod/settings.php:1247 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" + +#: mod/settings.php:1250 +msgid "Notification Settings" +msgstr "Notificatie Instellingen" + +#: mod/settings.php:1251 +msgid "By default post a status message when:" +msgstr "Post automatisch een bericht op je tijdlijn wanneer:" + +#: mod/settings.php:1252 +msgid "accepting a friend request" +msgstr "Een vriendschapsverzoek accepteren" + +#: mod/settings.php:1253 +msgid "joining a forum/community" +msgstr "Lid worden van een groep/forum" + +#: mod/settings.php:1254 +msgid "making an interesting profile change" +msgstr "Een interessante verandering aan je profiel" + +#: mod/settings.php:1255 +msgid "Send a notification email when:" +msgstr "Stuur een notificatie e-mail wanneer:" + +#: mod/settings.php:1256 +msgid "You receive an introduction" +msgstr "Je ontvangt een vriendschaps- of connectieverzoek" + +#: mod/settings.php:1257 +msgid "Your introductions are confirmed" +msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" + +#: mod/settings.php:1258 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op je tijdlijn schrijft" + +#: mod/settings.php:1259 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" + +#: mod/settings.php:1260 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" + +#: mod/settings.php:1261 +msgid "You receive a friend suggestion" +msgstr "Je een suggestie voor een vriendschap ontvangt" + +#: mod/settings.php:1262 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" + +#: mod/settings.php:1263 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je in een bericht bent aangestoten/gepord/etc." + +#: mod/settings.php:1265 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1265 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1267 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1269 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1271 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1272 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1275 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1276 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1277 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Verzoek is al goedgekeurd" + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiel is ongeldig of bevat geen informatie" + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Waarschuwing: Profieladres heeft geen profielfoto." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden" +msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Verzoek voltooid." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Onherstelbare protocolfout. " + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profiel onbeschikbaar" + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s heeft te veel verzoeken gehad vandaag." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ongeldige plaatsbepaler" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Geen geldig e-mailadres" + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Je hebt jezelf hier al voorgesteld." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Blijkbaar bent u al bevriend met %s." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ongeldig profiel adres." + +#: mod/dfrn_request.php:507 include/follow.php:72 +msgid "Disallowed profile URL." +msgstr "Niet toegelaten profiel adres." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Je verzoek is verzonden." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Log in om je verzoek te bevestigen." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bevestig" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Verberg dit contact" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Welkom terug %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" + +#: mod/dfrn_request.php:840 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "" + +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "Vriendschaps-/connectieverzoek" + +#: mod/dfrn_request.php:846 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Gefedereerde Sociale Web" + +#: mod/dfrn_request.php:857 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Je registratie kan niet verwerkt worden." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw registratie wacht op goedkeuring van de beheerder." + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Je OpenID (optioneel):" + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Je profiel in de ledengids opnemen?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "Je uitnodigingsid:" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Je email adres:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Kies een bijnaam:" + +#: mod/register.php:277 boot.php:1256 include/nav.php:108 +msgid "Register" +msgstr "Registreer" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Importeren" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Systeem onbeschikbaar wegens onderhoud" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:115 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:116 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:126 include/text.php:996 include/nav.php:118 +msgid "Search" +msgstr "Zoeken" + +#: mod/search.php:224 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:226 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: mod/directory.php:116 mod/profiles.php:760 +msgid "Age: " +msgstr "Leeftijd:" + +#: mod/directory.php:119 +msgid "Gender: " +msgstr "Geslacht:" + +#: mod/directory.php:143 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "Tijdlijn:" + +#: mod/directory.php:145 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "Website:" + +#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:191 +msgid "Global Directory" +msgstr "Globale gids" + +#: mod/directory.php:197 +msgid "Find on this site" +msgstr "Op deze website zoeken" + +#: mod/directory.php:199 +msgid "Finding:" +msgstr "" + +#: mod/directory.php:201 +msgid "Site Directory" +msgstr "Websitegids" + +#: mod/directory.php:208 +msgid "No entries (some entries may be hidden)." +msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." + +#: mod/delegate.php:130 include/nav.php:180 +msgid "Delegate Page Management" +msgstr "Paginabeheer uitbesteden" + +#: mod/delegate.php:132 +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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Bestaande paginabeheerders" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Toevoegen" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Geen gegevens." + +#: mod/common.php:85 +msgid "No contacts in common." +msgstr "Geen gedeelde contacten." + +#: mod/common.php:133 +msgid "Common Friends" +msgstr "Gedeelde Vrienden" + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Account exporteren" + +#: mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exporteren" + +#: mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)" + +#: mod/mood.php:62 include/conversation.php:239 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s is op dit moment %2$s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Stemming" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Stel je huidige stemming in, en vertel het je vrienden" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Wil je echt dit voorstel verwijderen?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." + +#: mod/suggest.php:83 mod/suggest.php:100 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: mod/suggest.php:110 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:193 +msgid "Friend Suggestions" +msgstr "Vriendschapsvoorstellen" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profiel verwijderd" + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profiel-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Echtelijke staat" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Romantische Partner" + +#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 +msgid "Likes" +msgstr "Houdt van" + +#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Werk" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Godsdienst" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Politieke standpunten" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Geslacht" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Seksuele Voorkeur" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Tijdlijn" + +#: mod/profiles.php:375 mod/profiles.php:708 +msgid "Interests" +msgstr "Interesses" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Adres" + +#: mod/profiles.php:386 mod/profiles.php:704 +msgid "Location" +msgstr "Plaats" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profiel bijgewerkt." + +#: mod/profiles.php:565 +msgid " and " +msgstr "en" + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "publiek profiel" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Bezoek %2$s van %1$s" + +#: mod/profiles.php:580 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." + +#: mod/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:660 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" + +#: mod/profiles.php:684 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:695 +msgid "Edit Profile Details" +msgstr "Profieldetails bewerken" + +#: mod/profiles.php:697 +msgid "Change Profile Photo" +msgstr "Profielfoto wijzigen" + +#: mod/profiles.php:698 +msgid "View this profile" +msgstr "Dit profiel bekijken" + +#: mod/profiles.php:699 +msgid "Create a new profile using these settings" +msgstr "Nieuw profiel aanmaken met deze instellingen" + +#: mod/profiles.php:700 +msgid "Clone this profile" +msgstr "Dit profiel klonen" + +#: mod/profiles.php:701 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" + +#: mod/profiles.php:702 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:703 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:705 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:706 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:707 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:710 +msgid "Profile Name:" +msgstr "Profiel Naam:" + +#: mod/profiles.php:711 +msgid "Your Full Name:" +msgstr "Je volledige naam:" + +#: mod/profiles.php:712 +msgid "Title/Description:" +msgstr "Titel/Beschrijving:" + +#: mod/profiles.php:713 +msgid "Your Gender:" +msgstr "Je Geslacht:" + +#: mod/profiles.php:714 +msgid "Birthday :" +msgstr "" + +#: mod/profiles.php:715 +msgid "Street Address:" +msgstr "Postadres:" + +#: mod/profiles.php:716 +msgid "Locality/City:" +msgstr "Gemeente/Stad:" + +#: mod/profiles.php:717 +msgid "Postal/Zip Code:" +msgstr "Postcode:" + +#: mod/profiles.php:718 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:719 +msgid "Region/State:" +msgstr "Regio/Staat:" + +#: mod/profiles.php:720 +msgid " Marital Status:" +msgstr " Echtelijke Staat:" + +#: mod/profiles.php:721 +msgid "Who: (if applicable)" +msgstr "Wie: (indien toepasbaar)" + +#: mod/profiles.php:722 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" + +#: mod/profiles.php:723 +msgid "Since [date]:" +msgstr "Sinds [datum]:" + +#: mod/profiles.php:724 include/identity.php:570 +msgid "Sexual Preference:" +msgstr "Seksuele Voorkeur:" + +#: mod/profiles.php:725 +msgid "Homepage URL:" +msgstr "Adres tijdlijn:" + +#: mod/profiles.php:726 include/identity.php:574 +msgid "Hometown:" +msgstr "Woonplaats:" + +#: mod/profiles.php:727 include/identity.php:578 +msgid "Political Views:" +msgstr "Politieke standpunten:" + +#: mod/profiles.php:728 +msgid "Religious Views:" +msgstr "Geloof:" + +#: mod/profiles.php:729 +msgid "Public Keywords:" +msgstr "Publieke Sleutelwoorden:" + +#: mod/profiles.php:730 +msgid "Private Keywords:" +msgstr "Privé Sleutelwoorden:" + +#: mod/profiles.php:731 include/identity.php:586 +msgid "Likes:" +msgstr "Houdt van:" + +#: mod/profiles.php:732 include/identity.php:588 +msgid "Dislikes:" +msgstr "Houdt niet van:" + +#: mod/profiles.php:733 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: vissen fotografie software" + +#: mod/profiles.php:734 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" + +#: mod/profiles.php:735 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" + +#: mod/profiles.php:736 +msgid "Tell us about yourself..." +msgstr "Vertel iets over jezelf..." + +#: mod/profiles.php:737 +msgid "Hobbies/Interests" +msgstr "Hobby's/Interesses" + +#: mod/profiles.php:738 +msgid "Contact information and Social Networks" +msgstr "Contactinformatie en sociale netwerken" + +#: mod/profiles.php:739 +msgid "Musical interests" +msgstr "Muzikale interesses" + +#: mod/profiles.php:740 +msgid "Books, literature" +msgstr "Boeken, literatuur" + +#: mod/profiles.php:741 +msgid "Television" +msgstr "Televisie" + +#: mod/profiles.php:742 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultuur/ontspanning" + +#: mod/profiles.php:743 +msgid "Love/romance" +msgstr "Liefde/romance" + +#: mod/profiles.php:744 +msgid "Work/employment" +msgstr "Werk" + +#: mod/profiles.php:745 +msgid "School/education" +msgstr "School/opleiding" + +#: mod/profiles.php:750 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet." + +#: mod/profiles.php:813 +msgid "Edit/Manage Profiles" +msgstr "Wijzig/Beheer Profielen" + +#: mod/profiles.php:814 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "Profiel foto wijzigen" + +#: mod/profiles.php:815 include/identity.php:232 +msgid "Create New Profile" +msgstr "Maak nieuw profiel" + +#: mod/profiles.php:826 include/identity.php:242 +msgid "Profile Image" +msgstr "Profiel afbeelding" + +#: mod/profiles.php:828 include/identity.php:245 +msgid "visible to everybody" +msgstr "zichtbaar voor iedereen" + +#: mod/profiles.php:829 include/identity.php:246 +msgid "Edit visibility" +msgstr "Pas zichtbaarheid aan" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Item niet gevonden" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Bericht bewerken" + +#: mod/editpost.php:110 include/conversation.php:1185 +msgid "upload photo" +msgstr "Foto uploaden" + +#: mod/editpost.php:111 include/conversation.php:1186 +msgid "Attach file" +msgstr "Bestand bijvoegen" + +#: mod/editpost.php:112 include/conversation.php:1187 +msgid "attach file" +msgstr "bestand bijvoegen" + +#: mod/editpost.php:114 include/conversation.php:1189 +msgid "web link" +msgstr "webadres" + +#: mod/editpost.php:115 include/conversation.php:1190 +msgid "Insert video link" +msgstr "Voeg video toe" + +#: mod/editpost.php:116 include/conversation.php:1191 +msgid "video link" +msgstr "video adres" + +#: mod/editpost.php:117 include/conversation.php:1192 +msgid "Insert audio link" +msgstr "Voeg audio adres toe" + +#: mod/editpost.php:118 include/conversation.php:1193 +msgid "audio link" +msgstr "audio adres" + +#: mod/editpost.php:119 include/conversation.php:1194 +msgid "Set your location" +msgstr "Stel uw locatie in" + +#: mod/editpost.php:120 include/conversation.php:1195 +msgid "set location" +msgstr "Stel uw locatie in" + +#: mod/editpost.php:121 include/conversation.php:1196 +msgid "Clear browser location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: mod/editpost.php:122 include/conversation.php:1197 +msgid "clear location" +msgstr "Verwijder locatie uit uw webbrowser" + +#: mod/editpost.php:124 include/conversation.php:1203 +msgid "Permission settings" +msgstr "Instellingen van rechten" + +#: mod/editpost.php:132 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "CC: e-mailadressen" + +#: mod/editpost.php:133 include/conversation.php:1212 +msgid "Public post" +msgstr "Openbare post" + +#: mod/editpost.php:136 include/conversation.php:1199 +msgid "Set title" +msgstr "Titel plaatsen" + +#: mod/editpost.php:138 include/conversation.php:1201 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (komma-gescheiden lijst)" + +#: mod/editpost.php:139 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dit is Friendica, versie" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "draaiend op web-adres" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Bug rapporten en problemen: bezoek" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Geïnstalleerde plugins/toepassingen:" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Geen plugins of toepassingen geïnstalleerd" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Log in om verder te gaan." + +#: 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 "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Privacyinformatie op afstand niet beschikbaar." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Zichtbaar voor:" + +#: mod/notes.php:46 include/identity.php:677 +msgid "Personal Notes" +msgstr "Persoonlijke Nota's" + +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -1306,202 +5750,33 @@ msgstr "Omgerekende lokale tijd: %s" msgid "Please select your timezone:" msgstr "Selecteer je tijdzone:" -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "Bewaren in map:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- Kies -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978 -msgid "Save" -msgstr "Bewaren" - -#: mod/poke.php:192 +#: mod/poke.php:191 msgid "Poke/Prod" msgstr "Aanstoten/porren" -#: mod/poke.php:193 +#: mod/poke.php:192 msgid "poke, prod or do other things to somebody" msgstr "aanstoten, porren of andere dingen met iemand doen" -#: mod/poke.php:194 +#: mod/poke.php:193 msgid "Recipient" msgstr "Ontvanger" -#: mod/poke.php:195 +#: mod/poke.php:194 msgid "Choose what you wish to do to recipient" msgstr "Kies wat je met de ontvanger wil doen" -#: mod/poke.php:198 +#: mod/poke.php:197 msgid "Make this post private" msgstr "Dit bericht privé maken" -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt %3$s van %2$s" +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "" -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Account exporteren" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Alles exporteren" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)" - -#: mod/uexport.php:85 mod/settings.php:77 -msgid "Export personal data" -msgstr "Persoonlijke gegevens exporteren" - -#: mod/apps.php:7 index.php:225 -msgid "You must be logged in to use addons. " -msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Toepassingen" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Geen toepassingen geïnstalleerd" - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Niets nieuw hier" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Notificaties verwijderen" - -#: mod/tagrm.php:11 mod/tagrm.php:94 mod/fbrowser.php:81 mod/fbrowser.php:116 -#: mod/message.php:212 mod/contacts.php:416 mod/dfrn_request.php:859 -#: mod/editpost.php:148 mod/follow.php:68 mod/photos.php:225 -#: mod/photos.php:314 mod/suggest.php:32 mod/videos.php:121 -#: mod/settings.php:622 mod/settings.php:648 include/conversation.php:1093 -#: include/items.php:4857 -msgid "Cancel" -msgstr "Annuleren" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Label verwijderd" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Verwijder label van item" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecteer een label om te verwijderen: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Verwijderen" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden." - -#: mod/delegate.php:130 include/nav.php:171 -msgid "Delegate Page Management" -msgstr "Paginabeheer uitbesteden" - -#: mod/delegate.php:132 -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 "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Bestaande paginabeheerders" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Toevoegen" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Geen gegevens." - -#: mod/nogroup.php:40 mod/viewcontacts.php:64 mod/contacts.php:573 -#: mod/contacts.php:797 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bekijk het profiel van %s [%s]" - -#: mod/nogroup.php:41 mod/contacts.php:798 -msgid "Edit contact" -msgstr "Contact bewerken" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contacten die geen leden zijn van een groep" - -#: mod/fbrowser.php:113 -msgid "Files" -msgstr "Bestanden" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Systeem onbeschikbaar wegens onderhoud" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Verwijder mijn account" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Voer je wachtwoord in voor verificatie:" - -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/crepair.php:134 -#: mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "Contact niet gevonden" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vriendschapsvoorstel verzonden." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Stel vrienden voor" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een vriend voor aan %s" +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" #: mod/invite.php:27 msgid "Total invitation limit exceeded." @@ -1595,4274 +5870,391 @@ msgid "" "important, please visit http://friendica.com" msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken" -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Beheer Identiteiten en/of Pagina's" +#: mod/photos.php:91 include/identity.php:652 +msgid "Photo Albums" +msgstr "Fotoalbums" -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." +#: mod/photos.php:92 mod/photos.php:1891 +msgid "Recent Photos" +msgstr "Recente foto's" -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Selecteer een identiteit om te beheren:" +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" -#: mod/home.php:35 +#: mod/photos.php:173 +msgid "Contact information unavailable" +msgstr "Contactinformatie niet beschikbaar" + +#: mod/photos.php:194 +msgid "Album not found." +msgstr "Album niet gevonden" + +#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +msgid "Delete Album" +msgstr "Verwijder album" + +#: mod/photos.php:234 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" + +#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +msgid "Delete Photo" +msgstr "Verwijder foto" + +#: mod/photos.php:323 +msgid "Do you really want to delete this photo?" +msgstr "Wil je echt deze foto verwijderen?" + +#: mod/photos.php:698 #, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s is gelabeld in %2$s door %3$s" -#: mod/message.php:9 include/nav.php:165 -msgid "New Message" -msgstr "Nieuw Bericht" +#: mod/photos.php:698 +msgid "a photo" +msgstr "een foto" -#: mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Ik kan geen contact informatie vinden." +#: mod/photos.php:811 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg." -#: mod/message.php:182 include/nav.php:162 -msgid "Messages" -msgstr "Privéberichten" +#: mod/photos.php:978 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" -#: mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Wil je echt dit bericht verwijderen?" - -#: mod/message.php:227 -msgid "Message deleted." -msgstr "Bericht verwijderd." - -#: mod/message.php:258 -msgid "Conversation removed." -msgstr "Gesprek verwijderd." - -#: mod/message.php:371 -msgid "No messages." -msgstr "Geen berichten." - -#: mod/message.php:378 +#: mod/photos.php:1139 #, php-format -msgid "Unknown sender - %s" -msgstr "Onbekende afzender - %s" +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt." -#: mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Jij en %s" +#: mod/photos.php:1174 +msgid "Upload Photos" +msgstr "Upload foto's" -#: mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s en jij" +#: mod/photos.php:1178 mod/photos.php:1249 +msgid "New album name: " +msgstr "Nieuwe albumnaam: " -#: mod/message.php:405 mod/message.php:546 -msgid "Delete conversation" -msgstr "Verwijder gesprek" +#: mod/photos.php:1179 +msgid "or existing album name: " +msgstr "of bestaande albumnaam: " -#: mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" +#: mod/photos.php:1180 +msgid "Do not show a status post for this upload" +msgstr "Toon geen bericht op je tijdlijn van deze upload" -#: mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d bericht" -msgstr[1] "%d berichten" +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Rechten" -#: mod/message.php:450 -msgid "Message not available." -msgstr "Bericht niet beschikbaar." +#: mod/photos.php:1193 +msgid "Private Photo" +msgstr "Privé foto" -#: mod/message.php:520 -msgid "Delete message" -msgstr "Verwijder bericht" +#: mod/photos.php:1194 +msgid "Public Photo" +msgstr "Publieke foto" -#: mod/message.php:548 +#: mod/photos.php:1262 +msgid "Edit Album" +msgstr "Album wijzigen" + +#: mod/photos.php:1268 +msgid "Show Newest First" +msgstr "Toon niewste eerst" + +#: mod/photos.php:1270 +msgid "Show Oldest First" +msgstr "Toon oudste eerst" + +#: mod/photos.php:1298 mod/photos.php:1876 +msgid "View Photo" +msgstr "Bekijk foto" + +#: mod/photos.php:1345 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." + +#: mod/photos.php:1347 +msgid "Photo not available" +msgstr "Foto is niet beschikbaar" + +#: mod/photos.php:1403 +msgid "View photo" +msgstr "Bekijk foto" + +#: mod/photos.php:1403 +msgid "Edit photo" +msgstr "Bewerk foto" + +#: mod/photos.php:1404 +msgid "Use as profile photo" +msgstr "Gebruik als profielfoto" + +#: mod/photos.php:1429 +msgid "View Full Size" +msgstr "Bekijk in volledig formaat" + +#: mod/photos.php:1515 +msgid "Tags: " +msgstr "Labels: " + +#: mod/photos.php:1518 +msgid "[Remove any tag]" +msgstr "[Alle labels verwijderen]" + +#: mod/photos.php:1558 +msgid "New album name" +msgstr "Nieuwe albumnaam" + +#: mod/photos.php:1559 +msgid "Caption" +msgstr "Onderschrift" + +#: mod/photos.php:1560 +msgid "Add a Tag" +msgstr "Een label toevoegen" + +#: mod/photos.php:1560 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " -#: mod/message.php:552 -msgid "Send Reply" -msgstr "Verstuur Antwoord" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Geen contacten." - -#: mod/viewcontacts.php:78 include/text.php:899 -msgid "View Contacts" -msgstr "Bekijk contacten" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protocol fout. Geen ID Gevonden." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Login mislukt." - -#: mod/community.php:23 -msgid "Not available." -msgstr "Niet beschikbaar" - -#: mod/help.php:31 -msgid "Help:" -msgstr "Help:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Help" - -#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 -msgid "Not Found" -msgstr "Niet gevonden" - -#: mod/help.php:45 index.php:272 -msgid "Page not found." -msgstr "Pagina niet gevonden" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige request identifier." - -#: mod/notifications.php:35 mod/notifications.php:165 -#: mod/notifications.php:215 -msgid "Discard" -msgstr "Verwerpen" - -#: mod/notifications.php:51 mod/notifications.php:164 -#: mod/notifications.php:214 mod/contacts.php:527 mod/contacts.php:591 -#: mod/contacts.php:758 -msgid "Ignore" -msgstr "Negeren" - -#: mod/notifications.php:78 -msgid "System" -msgstr "Systeem" - -#: mod/notifications.php:83 include/nav.php:145 -msgid "Network" -msgstr "Netwerk" - -#: mod/notifications.php:88 mod/network.php:373 -msgid "Personal" -msgstr "Persoonlijk" - -#: mod/notifications.php:98 include/nav.php:153 -msgid "Introductions" -msgstr "Verzoeken" - -#: mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Toon genegeerde verzoeken" - -#: mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Verberg genegeerde verzoeken" - -#: mod/notifications.php:149 mod/notifications.php:199 -msgid "Notification type: " -msgstr "Notificatiesoort:" - -#: mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Vriendschapsvoorstel" - -#: mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "Voorgesteld door %s" - -#: mod/notifications.php:157 mod/notifications.php:208 mod/contacts.php:597 -msgid "Hide this contact from others" -msgstr "Verberg dit contact voor anderen" - -#: mod/notifications.php:158 mod/notifications.php:209 -msgid "Post a new friend activity" -msgstr "Bericht over een nieuwe vriend" - -#: mod/notifications.php:158 mod/notifications.php:209 -msgid "if applicable" -msgstr "Indien toepasbaar" - -#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1015 -msgid "Approve" -msgstr "Goedkeuren" - -#: mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Denkt dat u hem of haar kent:" - -#: mod/notifications.php:181 -msgid "yes" -msgstr "Ja" - -#: mod/notifications.php:181 -msgid "no" -msgstr "Nee" - -#: mod/notifications.php:182 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " +#: mod/photos.php:1561 +msgid "Do not rotate" msgstr "" -#: mod/notifications.php:185 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "" - -#: mod/notifications.php:193 -msgid "Friend" -msgstr "Vriend" - -#: mod/notifications.php:194 -msgid "Sharer" -msgstr "Deler" - -#: mod/notifications.php:194 -msgid "Fan/Admirer" -msgstr "Fan/Bewonderaar" - -#: mod/notifications.php:200 -msgid "Friend/Connect Request" -msgstr "Vriendschapsverzoek" - -#: mod/notifications.php:200 -msgid "New Follower" -msgstr "Nieuwe Volger" - -#: mod/notifications.php:221 -msgid "No introductions." -msgstr "Geen vriendschaps- of connectieverzoeken." - -#: mod/notifications.php:224 include/nav.php:156 -msgid "Notifications" -msgstr "Notificaties" - -#: mod/notifications.php:262 mod/notifications.php:391 -#: mod/notifications.php:482 -#, php-format -msgid "%s liked %s's post" -msgstr "%s vond het bericht van %s leuk" - -#: mod/notifications.php:272 mod/notifications.php:401 -#: mod/notifications.php:492 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s vond het bericht van %s niet leuk" - -#: mod/notifications.php:287 mod/notifications.php:416 -#: mod/notifications.php:507 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s is nu bevriend met %s" - -#: mod/notifications.php:294 mod/notifications.php:423 -#, php-format -msgid "%s created a new post" -msgstr "%s schreef een nieuw bericht" - -#: mod/notifications.php:295 mod/notifications.php:424 -#: mod/notifications.php:517 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s gaf een reactie op het bericht van %s" - -#: mod/notifications.php:310 -msgid "No more network notifications." -msgstr "Geen netwerknotificaties meer" - -#: mod/notifications.php:314 -msgid "Network Notifications" -msgstr "Netwerknotificaties" - -#: mod/notifications.php:340 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: mod/notifications.php:344 mod/notify.php:76 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: mod/notifications.php:439 -msgid "No more personal notifications." -msgstr "Geen persoonlijke notificaties meer" - -#: mod/notifications.php:443 -msgid "Personal Notifications" -msgstr "Persoonlijke notificaties" - -#: mod/notifications.php:524 -msgid "No more home notifications." -msgstr "Geen tijdlijn-notificaties meer" - -#: mod/notifications.php:528 -msgid "Home Notifications" -msgstr "Tijdlijn-notificaties" - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Thema-instellingen aangepast." - -#: mod/admin.php:104 mod/admin.php:627 -msgid "Site" -msgstr "Website" - -#: mod/admin.php:105 mod/admin.php:1008 mod/admin.php:1023 -msgid "Users" -msgstr "Gebruiker" - -#: mod/admin.php:106 mod/admin.php:1112 mod/admin.php:1165 mod/settings.php:62 -msgid "Plugins" -msgstr "Plugins" - -#: mod/admin.php:107 mod/admin.php:1333 mod/admin.php:1367 -msgid "Themes" -msgstr "Thema's" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "DB aanpassingen" - -#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1454 -msgid "Logs" -msgstr "Logs" - -#: mod/admin.php:124 -msgid "probe address" -msgstr "" - -#: mod/admin.php:125 -msgid "check webfinger" -msgstr "" - -#: mod/admin.php:130 include/nav.php:185 -msgid "Admin" -msgstr "Beheer" - -#: mod/admin.php:131 -msgid "Plugin Features" -msgstr "Plugin Functies" - -#: mod/admin.php:133 -msgid "diagnostics" -msgstr "" - -#: mod/admin.php:134 -msgid "User registrations waiting for confirmation" -msgstr "Gebruikersregistraties wachten op bevestiging" - -#: mod/admin.php:193 mod/admin.php:961 -msgid "Normal Account" -msgstr "Normaal account" - -#: mod/admin.php:194 mod/admin.php:962 -msgid "Soapbox Account" -msgstr "Zeepkist-account" - -#: mod/admin.php:195 mod/admin.php:963 -msgid "Community/Celebrity Account" -msgstr "Account voor een groep/forum of beroemdheid" - -#: mod/admin.php:196 mod/admin.php:964 -msgid "Automatic Friend Account" -msgstr "Automatisch Vriendschapsaccount" - -#: mod/admin.php:197 -msgid "Blog Account" -msgstr "Blog Account" - -#: mod/admin.php:198 -msgid "Private Forum" -msgstr "Privéforum/-groep" - -#: mod/admin.php:217 -msgid "Message queues" -msgstr "Bericht-wachtrijen" - -#: mod/admin.php:222 mod/admin.php:626 mod/admin.php:1007 mod/admin.php:1111 -#: mod/admin.php:1164 mod/admin.php:1332 mod/admin.php:1366 mod/admin.php:1453 -msgid "Administration" -msgstr "Beheer" - -#: mod/admin.php:223 -msgid "Summary" -msgstr "Samenvatting" - -#: mod/admin.php:225 -msgid "Registered users" -msgstr "Geregistreerde gebruikers" - -#: mod/admin.php:227 -msgid "Pending registrations" -msgstr "Registraties die in de wacht staan" - -#: mod/admin.php:228 -msgid "Version" -msgstr "Versie" - -#: mod/admin.php:232 -msgid "Active plugins" -msgstr "Actieve plug-ins" - -#: mod/admin.php:255 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: mod/admin.php:524 -msgid "Site settings updated." -msgstr "Site instellingen gewijzigd." - -#: mod/admin.php:553 mod/settings.php:853 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" - -#: mod/admin.php:570 -msgid "No community page" -msgstr "" - -#: mod/admin.php:571 -msgid "Public postings from users of this site" -msgstr "" - -#: mod/admin.php:572 -msgid "Global community page" -msgstr "" - -#: mod/admin.php:577 mod/contacts.php:498 -msgid "Never" -msgstr "Nooit" - -#: mod/admin.php:578 -msgid "At post arrival" -msgstr "" - -#: mod/admin.php:579 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequent" - -#: mod/admin.php:580 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "elk uur" - -#: mod/admin.php:581 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: mod/admin.php:582 include/contact_selectors.php:59 -msgid "Daily" -msgstr "dagelijks" - -#: mod/admin.php:587 -msgid "Multi user instance" -msgstr "Server voor meerdere gebruikers" - -#: mod/admin.php:610 -msgid "Closed" -msgstr "Gesloten" - -#: mod/admin.php:611 -msgid "Requires approval" -msgstr "Toestemming vereist" - -#: mod/admin.php:612 -msgid "Open" -msgstr "Open" - -#: mod/admin.php:616 -msgid "No SSL policy, links will track page SSL state" -msgstr "Geen SSL beleid, links zullen SSL status van pagina volgen" - -#: mod/admin.php:617 -msgid "Force all links to use SSL" -msgstr "Verplicht alle links om SSL te gebruiken" - -#: mod/admin.php:618 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Zelf-ondertekend certificaat, gebruik SSL alleen voor lokale links (afgeraden)" - -#: mod/admin.php:628 mod/admin.php:1166 mod/admin.php:1368 mod/admin.php:1455 -#: mod/settings.php:621 mod/settings.php:731 mod/settings.php:754 -#: mod/settings.php:823 mod/settings.php:905 mod/settings.php:1137 -msgid "Save Settings" -msgstr "Instellingen opslaan" - -#: mod/admin.php:629 mod/register.php:260 -msgid "Registration" -msgstr "Registratie" - -#: mod/admin.php:630 -msgid "File upload" -msgstr "Uploaden bestand" - -#: mod/admin.php:631 -msgid "Policies" -msgstr "Beleid" - -#: mod/admin.php:632 -msgid "Advanced" -msgstr "Geavanceerd" - -#: mod/admin.php:633 -msgid "Performance" -msgstr "Performantie" - -#: mod/admin.php:634 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: mod/admin.php:637 -msgid "Site name" -msgstr "Site naam" - -#: mod/admin.php:638 -msgid "Host name" -msgstr "" - -#: mod/admin.php:639 -msgid "Sender Email" -msgstr "" - -#: mod/admin.php:640 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:641 -msgid "Shortcut icon" -msgstr "" - -#: mod/admin.php:642 -msgid "Touch icon" -msgstr "" - -#: mod/admin.php:643 -msgid "Additional Info" -msgstr "" - -#: mod/admin.php:643 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" - -#: mod/admin.php:644 -msgid "System language" -msgstr "Systeemtaal" - -#: mod/admin.php:645 -msgid "System theme" -msgstr "Systeem thema" - -#: mod/admin.php:645 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen" - -#: mod/admin.php:646 -msgid "Mobile system theme" -msgstr "Mobiel systeem thema" - -#: mod/admin.php:646 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" - -#: mod/admin.php:647 -msgid "SSL link policy" -msgstr "Beleid SSL-links" - -#: mod/admin.php:647 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bepaald of gegenereerde verwijzingen verplicht SSL moeten gebruiken" - -#: mod/admin.php:648 -msgid "Force SSL" -msgstr "" - -#: mod/admin.php:648 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "" - -#: mod/admin.php:649 -msgid "Old style 'Share'" -msgstr "" - -#: mod/admin.php:649 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: mod/admin.php:650 -msgid "Hide help entry from navigation menu" -msgstr "Verberg de 'help' uit het navigatiemenu" - -#: mod/admin.php:650 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Verbergt het menu-item voor de Help pagina's uit het navigatiemenu. Je kunt ze nog altijd vinden door /help direct in te geven." - -#: mod/admin.php:651 -msgid "Single user instance" -msgstr "Server voor één gebruiker" - -#: mod/admin.php:651 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." - -#: mod/admin.php:652 -msgid "Maximum image size" -msgstr "Maximum afbeeldingsgrootte" - -#: mod/admin.php:652 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximum afmeting in bytes van afbeeldingen. Standaard is 0, dus geen beperking." - -#: mod/admin.php:653 -msgid "Maximum image length" -msgstr "Maximum afbeeldingslengte" - -#: mod/admin.php:653 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." - -#: mod/admin.php:654 -msgid "JPEG image quality" -msgstr "JPEG afbeeldingskwaliteit" - -#: mod/admin.php:654 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." - -#: mod/admin.php:656 -msgid "Register policy" -msgstr "Registratiebeleid" - -#: mod/admin.php:657 -msgid "Maximum Daily Registrations" -msgstr "Maximum aantal registraties per dag" - -#: mod/admin.php:657 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." - -#: mod/admin.php:658 -msgid "Register text" -msgstr "Registratietekst" - -#: mod/admin.php:658 -msgid "Will be displayed prominently on the registration page." -msgstr "Dit zal prominent op de registratiepagina getoond worden." - -#: mod/admin.php:659 -msgid "Accounts abandoned after x days" -msgstr "Verlaten accounts na x dagen" - -#: mod/admin.php:659 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." - -#: mod/admin.php:660 -msgid "Allowed friend domains" -msgstr "Toegelaten vriend domeinen" - -#: mod/admin.php:660 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." - -#: mod/admin.php:661 -msgid "Allowed email domains" -msgstr "Toegelaten e-mail domeinen" - -#: mod/admin.php:661 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." - -#: mod/admin.php:662 -msgid "Block public" -msgstr "Openbare toegang blokkeren" - -#: mod/admin.php:662 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." - -#: mod/admin.php:663 -msgid "Force publish" -msgstr "Dwing publiceren af" - -#: mod/admin.php:663 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." - -#: mod/admin.php:664 -msgid "Global directory update URL" -msgstr "Update-adres van de globale gids" - -#: mod/admin.php:664 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing." - -#: mod/admin.php:665 -msgid "Allow threaded items" -msgstr "Sta threads in conversaties toe" - -#: mod/admin.php:665 -msgid "Allow infinite level threading for items on this site." -msgstr "Sta oneindige niveaus threads in conversaties op deze website toe." - -#: mod/admin.php:666 -msgid "Private posts by default for new users" -msgstr "Privéberichten als standaard voor nieuwe gebruikers" - -#: mod/admin.php:666 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar." - -#: mod/admin.php:667 -msgid "Don't include post content in email notifications" -msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" - -#: mod/admin.php:667 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." - -#: mod/admin.php:668 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: mod/admin.php:668 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: mod/admin.php:669 -msgid "Don't embed private images in posts" -msgstr "" - -#: mod/admin.php:669 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "" - -#: mod/admin.php:670 -msgid "Allow Users to set remote_self" -msgstr "" - -#: mod/admin.php:670 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "" - -#: mod/admin.php:671 -msgid "Block multiple registrations" -msgstr "Blokkeer meerdere registraties" - -#: mod/admin.php:671 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Laat niet toe dat gebruikers meerdere accounts aanmaken." - -#: mod/admin.php:672 -msgid "OpenID support" -msgstr "OpenID ondersteuning" - -#: mod/admin.php:672 -msgid "OpenID support for registration and logins." -msgstr "OpenID ondersteuning voor registraties en logins." - -#: mod/admin.php:673 -msgid "Fullname check" -msgstr "Controleer volledige naam" - -#: mod/admin.php:673 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Verplicht gebruikers om zich te registreren met een spatie tussen voornaam en achternaam, als anti-spam maatregel" - -#: mod/admin.php:674 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 reguliere uitdrukkingen" - -#: mod/admin.php:674 -msgid "Use PHP UTF8 regular expressions" -msgstr "Gebruik PHP UTF8 reguliere uitdrukkingen" - -#: mod/admin.php:675 -msgid "Community Page Style" -msgstr "" - -#: mod/admin.php:675 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "" - -#: mod/admin.php:676 -msgid "Posts per user on community page" -msgstr "" - -#: mod/admin.php:676 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "" - -#: mod/admin.php:677 -msgid "Enable OStatus support" -msgstr "Activeer OStatus ondersteuning" - -#: mod/admin.php:677 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: mod/admin.php:678 -msgid "OStatus conversation completion interval" -msgstr "" - -#: mod/admin.php:678 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: mod/admin.php:679 -msgid "Enable Diaspora support" -msgstr "Activeer Diaspora ondersteuning" - -#: mod/admin.php:679 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Bied ingebouwde ondersteuning voor het Diaspora netwerk." - -#: mod/admin.php:680 -msgid "Only allow Friendica contacts" -msgstr "Laat alleen Friendica contacten toe" - -#: mod/admin.php:680 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Alle contacten moeten een Friendica protocol gebruiken. Alle andere ingebouwde communicatieprotocols worden uitgeschakeld." - -#: mod/admin.php:681 -msgid "Verify SSL" -msgstr "Controleer SSL" - -#: mod/admin.php:681 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." - -#: mod/admin.php:682 -msgid "Proxy user" -msgstr "Proxy-gebruiker" - -#: mod/admin.php:683 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: mod/admin.php:684 -msgid "Network timeout" -msgstr "Netwerk timeout" - -#: mod/admin.php:684 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." - -#: mod/admin.php:685 -msgid "Delivery interval" -msgstr "Afleverinterval" - -#: mod/admin.php:685 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Stel achtergrond processen voor aflevering een aantal seconden uit om systeembelasting te beperken. Aanbevolen: 4-5 voor gedeelde hosten, 2-3 voor virtuele privé servers, 0-1 voor grote servers." - -#: mod/admin.php:686 -msgid "Poll interval" -msgstr "Poll-interval" - -#: mod/admin.php:686 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Stel achtergrondprocessen zoveel seconden uit om de systeembelasting te beperken. Indien 0 wordt het afleverinterval gebruikt." - -#: mod/admin.php:687 -msgid "Maximum Load Average" -msgstr "Maximum gemiddelde belasting" - -#: mod/admin.php:687 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50." - -#: mod/admin.php:688 -msgid "Maximum Load Average (Frontend)" -msgstr "" - -#: mod/admin.php:688 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "" - -#: mod/admin.php:690 -msgid "Use MySQL full text engine" -msgstr "Gebruik de tekst-zoekfunctie van MySQL" - -#: mod/admin.php:690 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters." - -#: mod/admin.php:691 -msgid "Suppress Language" -msgstr "" - -#: mod/admin.php:691 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: mod/admin.php:692 -msgid "Suppress Tags" -msgstr "" - -#: mod/admin.php:692 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" - -#: mod/admin.php:693 -msgid "Path to item cache" -msgstr "Pad naar cache voor items" - -#: mod/admin.php:694 -msgid "Cache duration in seconds" -msgstr "Cache tijdsduur in seconden" - -#: mod/admin.php:694 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "" - -#: mod/admin.php:695 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: mod/admin.php:695 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: mod/admin.php:696 -msgid "Path for lock file" -msgstr "Pad voor lock bestand" - -#: mod/admin.php:697 -msgid "Temp path" -msgstr "Tijdelijk pad" - -#: mod/admin.php:698 -msgid "Base path to installation" -msgstr "Basispad voor installatie" - -#: mod/admin.php:699 -msgid "Disable picture proxy" -msgstr "" - -#: mod/admin.php:699 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" - -#: mod/admin.php:700 -msgid "Enable old style pager" -msgstr "" - -#: mod/admin.php:700 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "" - -#: mod/admin.php:701 -msgid "Only search in tags" -msgstr "" - -#: mod/admin.php:701 -msgid "On large systems the text search can slow down the system extremely." -msgstr "" - -#: mod/admin.php:703 -msgid "New base url" -msgstr "" - -#: mod/admin.php:705 -msgid "RINO Encryption" -msgstr "" - -#: mod/admin.php:705 -msgid "Encryption layer between nodes." -msgstr "" - -#: mod/admin.php:723 -msgid "Update has been marked successful" -msgstr "Wijziging succesvol gemarkeerd " - -#: mod/admin.php:731 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - -#: mod/admin.php:734 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" - -#: mod/admin.php:746 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" - -#: mod/admin.php:749 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Wijziging %s geslaagd." - -#: mod/admin.php:753 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." - -#: mod/admin.php:755 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" - -#: mod/admin.php:774 -msgid "No failed updates." -msgstr "Geen misluke wijzigingen" - -#: mod/admin.php:775 -msgid "Check database structure" -msgstr "" - -#: mod/admin.php:780 -msgid "Failed Updates" -msgstr "Misluke wijzigingen" - -#: mod/admin.php:781 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." - -#: mod/admin.php:782 -msgid "Mark success (if update was manually applied)" -msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" - -#: mod/admin.php:783 -msgid "Attempt to execute this update step automatically" -msgstr "Probeer deze stap automatisch uit te voeren" - -#: mod/admin.php:815 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" - -#: mod/admin.php:818 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" - -#: mod/admin.php:850 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Registratie details voor %s" - -#: mod/admin.php:862 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s gebruiker geblokkeerd/niet geblokkeerd" -msgstr[1] "%s gebruikers geblokkeerd/niet geblokkeerd" - -#: mod/admin.php:869 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s gebruiker verwijderd" -msgstr[1] "%s gebruikers verwijderd" - -#: mod/admin.php:908 -#, php-format -msgid "User '%s' deleted" -msgstr "Gebruiker '%s' verwijderd" - -#: mod/admin.php:916 -#, php-format -msgid "User '%s' unblocked" -msgstr "Gebruiker '%s' niet meer geblokkeerd" - -#: mod/admin.php:916 -#, php-format -msgid "User '%s' blocked" -msgstr "Gebruiker '%s' geblokkeerd" - -#: mod/admin.php:1009 -msgid "Add User" -msgstr "Gebruiker toevoegen" - -#: mod/admin.php:1010 -msgid "select all" -msgstr "Alles selecteren" - -#: mod/admin.php:1011 -msgid "User registrations waiting for confirm" -msgstr "Gebruikersregistraties wachten op een bevestiging" - -#: mod/admin.php:1012 -msgid "User waiting for permanent deletion" -msgstr "" - -#: mod/admin.php:1013 -msgid "Request date" -msgstr "Registratiedatum" - -#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1039 -#: mod/crepair.php:170 mod/settings.php:623 mod/settings.php:649 -msgid "Name" -msgstr "Naam" - -#: mod/admin.php:1013 mod/admin.php:1025 mod/admin.php:1026 mod/admin.php:1041 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - -#: mod/admin.php:1014 -msgid "No registrations." -msgstr "Geen registraties." - -#: mod/admin.php:1016 -msgid "Deny" -msgstr "Weiger" - -#: mod/admin.php:1018 mod/contacts.php:521 mod/contacts.php:590 -#: mod/contacts.php:757 -msgid "Block" -msgstr "Blokkeren" - -#: mod/admin.php:1019 mod/contacts.php:521 mod/contacts.php:590 -#: mod/contacts.php:757 -msgid "Unblock" -msgstr "Blokkering opheffen" - -#: mod/admin.php:1020 -msgid "Site admin" -msgstr "Sitebeheerder" - -#: mod/admin.php:1021 -msgid "Account expired" -msgstr "Account verlopen" - -#: mod/admin.php:1024 -msgid "New User" -msgstr "Nieuwe gebruiker" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Register date" -msgstr "Registratiedatum" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Last login" -msgstr "Laatste login" - -#: mod/admin.php:1025 mod/admin.php:1026 -msgid "Last item" -msgstr "Laatste item" - -#: mod/admin.php:1025 -msgid "Deleted since" -msgstr "Verwijderd sinds" - -#: mod/admin.php:1026 mod/settings.php:41 -msgid "Account" -msgstr "Account" - -#: mod/admin.php:1028 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" - -#: mod/admin.php:1029 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" - -#: mod/admin.php:1039 -msgid "Name of the new user." -msgstr "Naam van nieuwe gebruiker" - -#: mod/admin.php:1040 -msgid "Nickname" -msgstr "Bijnaam" - -#: mod/admin.php:1040 -msgid "Nickname of the new user." -msgstr "Bijnaam van nieuwe gebruiker" - -#: mod/admin.php:1041 -msgid "Email address of the new user." -msgstr "E-mailadres van nieuwe gebruiker" - -#: mod/admin.php:1074 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s uitgeschakeld." - -#: mod/admin.php:1078 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s ingeschakeld." - -#: mod/admin.php:1088 mod/admin.php:1304 -msgid "Disable" -msgstr "Uitschakelen" - -#: mod/admin.php:1090 mod/admin.php:1306 -msgid "Enable" -msgstr "Inschakelen" - -#: mod/admin.php:1113 mod/admin.php:1334 -msgid "Toggle" -msgstr "Schakelaar" - -#: mod/admin.php:1121 mod/admin.php:1344 -msgid "Author: " -msgstr "Auteur:" - -#: mod/admin.php:1122 mod/admin.php:1345 -msgid "Maintainer: " -msgstr "Onderhoud:" - -#: mod/admin.php:1264 -msgid "No themes found." -msgstr "Geen thema's gevonden." - -#: mod/admin.php:1326 -msgid "Screenshot" -msgstr "Schermafdruk" - -#: mod/admin.php:1372 -msgid "[Experimental]" -msgstr "[Experimenteel]" - -#: mod/admin.php:1373 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" - -#: mod/admin.php:1400 -msgid "Log settings updated." -msgstr "Log instellingen gewijzigd" - -#: mod/admin.php:1456 -msgid "Clear" -msgstr "Wis" - -#: mod/admin.php:1462 -msgid "Enable Debugging" -msgstr "" - -#: mod/admin.php:1463 -msgid "Log file" -msgstr "Logbestand" - -#: mod/admin.php:1463 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie." - -#: mod/admin.php:1464 -msgid "Log level" -msgstr "Log niveau" - -#: mod/admin.php:1513 mod/contacts.php:587 -msgid "Update now" -msgstr "Wijzig nu" - -#: mod/admin.php:1514 include/acl_selectors.php:347 -msgid "Close" -msgstr "Afsluiten" - -#: mod/admin.php:1520 -msgid "FTP Host" -msgstr "FTP Server" - -#: mod/admin.php:1521 -msgid "FTP Path" -msgstr "FTP Pad" - -#: mod/admin.php:1522 -msgid "FTP User" -msgstr "FTP Gebruiker" - -#: mod/admin.php:1523 -msgid "FTP Password" -msgstr "FTP wachtwoord" - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Vrienden van %s" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Geen vrienden om te laten zien." - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Gedeelde Vrienden" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Geen gedeelde contacten." - -#: mod/contacts.php:114 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" +#: mod/photos.php:1562 +msgid "Rotate CW (right)" +msgstr "Roteren met de klok mee (rechts)" + +#: mod/photos.php:1563 +msgid "Rotate CCW (left)" +msgstr "Roteren tegen de klok in (links)" + +#: mod/photos.php:1578 +msgid "Private photo" +msgstr "Privé foto" + +#: mod/photos.php:1579 +msgid "Public photo" +msgstr "Publieke foto" + +#: mod/photos.php:1601 include/conversation.php:1183 +msgid "Share" +msgstr "Delen" + +#: mod/photos.php:1640 include/conversation.php:509 +#: include/conversation.php:1405 +msgid "Attending" +msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: mod/contacts.php:145 mod/contacts.php:340 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de contactgegevens" - -#: mod/contacts.php:159 -msgid "Could not locate selected profile." -msgstr "Kon het geselecteerde profiel niet vinden." - -#: mod/contacts.php:192 -msgid "Contact updated." -msgstr "Contact bijgewerkt." - -#: mod/contacts.php:194 mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Ik kon de contactgegevens niet aanpassen." - -#: mod/contacts.php:361 -msgid "Contact has been blocked" -msgstr "Contact is geblokkeerd" - -#: mod/contacts.php:361 -msgid "Contact has been unblocked" -msgstr "Contact is gedeblokkeerd" - -#: mod/contacts.php:372 -msgid "Contact has been ignored" -msgstr "Contact wordt genegeerd" - -#: mod/contacts.php:372 -msgid "Contact has been unignored" -msgstr "Contact wordt niet meer genegeerd" - -#: mod/contacts.php:384 -msgid "Contact has been archived" -msgstr "Contact is gearchiveerd" - -#: mod/contacts.php:384 -msgid "Contact has been unarchived" -msgstr "Contact is niet meer gearchiveerd" - -#: mod/contacts.php:411 mod/contacts.php:754 -msgid "Do you really want to delete this contact?" -msgstr "Wil je echt dit contact verwijderen?" - -#: mod/contacts.php:428 -msgid "Contact has been removed." -msgstr "Contact is verwijderd." - -#: mod/contacts.php:466 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Je bent wederzijds bevriend met %s" - -#: mod/contacts.php:470 -#, php-format -msgid "You are sharing with %s" -msgstr "Je deelt met %s" - -#: mod/contacts.php:475 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deelt met jou" - -#: mod/contacts.php:495 -msgid "Private communications are not available for this contact." -msgstr "Privécommunicatie met dit contact is niet beschikbaar." - -#: mod/contacts.php:502 -msgid "(Update was successful)" -msgstr "(Wijziging is geslaagd)" - -#: mod/contacts.php:502 -msgid "(Update was not successful)" -msgstr "(Wijziging is niet geslaagd)" - -#: mod/contacts.php:504 -msgid "Suggest friends" -msgstr "Stel vrienden voor" - -#: mod/contacts.php:508 -#, php-format -msgid "Network type: %s" -msgstr "Netwerk type: %s" - -#: mod/contacts.php:511 include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gedeeld contact" -msgstr[1] "%d gedeelde contacten" - -#: mod/contacts.php:516 -msgid "View all contacts" -msgstr "Alle contacten zien" - -#: mod/contacts.php:524 -msgid "Toggle Blocked status" -msgstr "Schakel geblokkeerde status" - -#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:758 -msgid "Unignore" -msgstr "Negeer niet meer" - -#: mod/contacts.php:530 -msgid "Toggle Ignored status" -msgstr "Schakel negeerstatus" - -#: mod/contacts.php:534 mod/contacts.php:759 -msgid "Unarchive" -msgstr "Archiveer niet meer" - -#: mod/contacts.php:534 mod/contacts.php:759 -msgid "Archive" -msgstr "Archiveer" - -#: mod/contacts.php:537 -msgid "Toggle Archive status" -msgstr "Schakel archiveringsstatus" - -#: mod/contacts.php:540 -msgid "Repair" -msgstr "Herstellen" - -#: mod/contacts.php:543 -msgid "Advanced Contact Settings" -msgstr "Geavanceerde instellingen voor contacten" - -#: mod/contacts.php:549 -msgid "Communications lost with this contact!" -msgstr "Communicatie met dit contact is verbroken!" - -#: mod/contacts.php:552 -msgid "Fetch further information for feeds" +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Not attending" msgstr "" -#: mod/contacts.php:553 -msgid "Disabled" +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Might attend" msgstr "" -#: mod/contacts.php:553 -msgid "Fetch information" +#: mod/photos.php:1805 +msgid "Map" msgstr "" -#: mod/contacts.php:553 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:562 -msgid "Contact Editor" -msgstr "Contactbewerker" - -#: mod/contacts.php:565 -msgid "Profile Visibility" -msgstr "Zichtbaarheid profiel" - -#: mod/contacts.php:566 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. " - -#: mod/contacts.php:567 -msgid "Contact Information / Notes" -msgstr "Contactinformatie / aantekeningen" - -#: mod/contacts.php:568 -msgid "Edit contact notes" -msgstr "Wijzig aantekeningen over dit contact" - -#: mod/contacts.php:574 -msgid "Block/Unblock contact" -msgstr "Blokkeer/deblokkeer contact" - -#: mod/contacts.php:575 -msgid "Ignore contact" -msgstr "Negeer contact" - -#: mod/contacts.php:576 -msgid "Repair URL settings" -msgstr "Repareer URL-instellingen" - -#: mod/contacts.php:577 -msgid "View conversations" -msgstr "Toon conversaties" - -#: mod/contacts.php:579 -msgid "Delete contact" -msgstr "Verwijder contact" - -#: mod/contacts.php:583 -msgid "Last update:" -msgstr "Laatste wijziging:" - -#: mod/contacts.php:585 -msgid "Update public posts" -msgstr "Openbare posts aanpassen" - -#: mod/contacts.php:594 -msgid "Currently blocked" -msgstr "Op dit moment geblokkeerd" - -#: mod/contacts.php:595 -msgid "Currently ignored" -msgstr "Op dit moment genegeerd" - -#: mod/contacts.php:596 -msgid "Currently archived" -msgstr "Op dit moment gearchiveerd" - -#: mod/contacts.php:597 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn" - -#: mod/contacts.php:598 -msgid "Notification for new posts" -msgstr "Meldingen voor nieuwe berichten" - -#: mod/contacts.php:598 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:601 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:601 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:652 -msgid "Suggestions" -msgstr "Voorstellen" - -#: mod/contacts.php:655 -msgid "Suggest potential friends" -msgstr "Stel vrienden voor" - -#: mod/contacts.php:658 mod/group.php:192 -msgid "All Contacts" -msgstr "Alle Contacten" - -#: mod/contacts.php:661 -msgid "Show all contacts" -msgstr "Toon alle contacten" - -#: mod/contacts.php:664 -msgid "Unblocked" -msgstr "Niet geblokkeerd" - -#: mod/contacts.php:667 -msgid "Only show unblocked contacts" -msgstr "Toon alleen niet-geblokkeerde contacten" - -#: mod/contacts.php:671 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: mod/contacts.php:674 -msgid "Only show blocked contacts" -msgstr "Toon alleen geblokkeerde contacten" - -#: mod/contacts.php:678 -msgid "Ignored" -msgstr "Genegeerd" - -#: mod/contacts.php:681 -msgid "Only show ignored contacts" -msgstr "Toon alleen genegeerde contacten" - -#: mod/contacts.php:685 -msgid "Archived" -msgstr "Gearchiveerd" - -#: mod/contacts.php:688 -msgid "Only show archived contacts" -msgstr "Toon alleen gearchiveerde contacten" - -#: mod/contacts.php:692 -msgid "Hidden" -msgstr "Verborgen" - -#: mod/contacts.php:695 -msgid "Only show hidden contacts" -msgstr "Toon alleen verborgen contacten" - -#: mod/contacts.php:749 -msgid "Search your contacts" -msgstr "Doorzoek je contacten" - -#: mod/contacts.php:750 mod/directory.php:63 -msgid "Finding: " -msgstr "Gevonden:" - -#: mod/contacts.php:751 mod/directory.php:65 include/contact_widgets.php:34 -msgid "Find" -msgstr "Zoek" - -#: mod/contacts.php:756 mod/settings.php:137 mod/settings.php:647 -msgid "Update" -msgstr "Wijzigen" - -#: mod/contacts.php:773 -msgid "Mutual Friendship" -msgstr "Wederzijdse vriendschap" - -#: mod/contacts.php:777 -msgid "is a fan of yours" -msgstr "Is een fan van jou" - -#: mod/contacts.php:781 -msgid "you are a fan of" -msgstr "Jij bent een fan van" - -#: mod/content.php:119 mod/network.php:526 -msgid "No such group" -msgstr "Zo'n groep bestaat niet" - -#: mod/content.php:130 mod/network.php:543 -msgid "Group is empty" -msgstr "De groep is leeg" - -#: mod/content.php:135 mod/network.php:554 -#, php-format -msgid "Group: %s" -msgstr "" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "In context bekijken" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Contactinstellingen toegepast." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Aanpassen van contact mislukt." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Contactinstellingen herstellen" - -#: mod/crepair.php:142 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "" - -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen." - -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Ga terug naar contactbewerker" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Bijnaam account" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Labelnaam - krijgt voorrang op naam/bijnaam" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL account" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL vriendschapsverzoek" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL vriendschapsbevestiging" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "URL poll/feed" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Nieuwe foto van deze URL" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:626 -msgid "Profile not found." -msgstr "Profiel niet gevonden" - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwoord van de website op afstand werd niet begrepen." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Onverwacht antwoord van website op afstand:" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bevestiging werd correct voltooid." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Website op afstand berichtte: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Tijdelijke fout. Wacht even en probeer opnieuw." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Verzoek mislukt of herroepen." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Ik kan geen contact foto instellen." - -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:622 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s is nu bevriend met %2$s" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Geen gebruiker gevonden voor '%s'" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "De encryptie-sleutel van onze webstek is blijkbaar beschadigd." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "We vonden op onze webstek geen contactrecord voor jou." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s." - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Niet in staat om op dit systeem je contactreferenties in te stellen." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236 -msgid "[Name Withheld]" -msgstr "[Naam achtergehouden]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s is toegetreden tot %2$s" - -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Verzoek is al goedgekeurd" - -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiel is ongeldig of bevat geen informatie" - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Waarschuwing: Profieladres heeft geen profielfoto." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "De %d vereiste parameter is niet op het gegeven adres gevonden" -msgstr[1] "De %d vereiste parameters zijn niet op het gegeven adres gevonden" - -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Verzoek voltooid." - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Onherstelbare protocolfout. " - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profiel onbeschikbaar" - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s heeft te veel verzoeken gehad vandaag." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Beveiligingsmaatregelen tegen spam zijn in werking getreden." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Wij adviseren vrienden om het over 24 uur nog een keer te proberen." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ongeldige plaatsbepaler" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Geen geldig e-mailadres" - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Aanvraag mislukt. Dit account is niet geconfigureerd voor e-mail." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Ik kan jouw naam op het opgegeven adres niet vinden." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Je hebt jezelf hier al voorgesteld." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Blijkbaar bent u al bevriend met %s." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ongeldig profiel adres." - -#: mod/dfrn_request.php:507 include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Niet toegelaten profiel adres." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Je verzoek is verzonden." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Log in om je verzoek te bevestigen." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Je huidige identiteit is niet de juiste. Log met dit profiel in." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Bevestig" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Verberg dit contact" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Welkom terug %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bevestig je vriendschaps-/connectieverzoek voor %s." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:" - -#: mod/dfrn_request.php:839 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan." - -#: mod/dfrn_request.php:842 -msgid "Friend/Connection Request" -msgstr "Vriendschaps-/connectieverzoek" - -#: mod/dfrn_request.php:843 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:844 mod/follow.php:56 -msgid "Please answer the following:" -msgstr "Beantwoord het volgende:" - -#: mod/dfrn_request.php:845 mod/follow.php:57 -#, php-format -msgid "Does %s know you?" -msgstr "Kent %s jou?" - -#: mod/dfrn_request.php:849 mod/follow.php:58 -msgid "Add a personal note:" -msgstr "Voeg een persoonlijke opmerking toe:" - -#: mod/dfrn_request.php:851 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:852 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Gefedereerde Sociale Web" - -#: mod/dfrn_request.php:853 mod/settings.php:761 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/dfrn_request.php:854 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk." - -#: mod/dfrn_request.php:855 mod/follow.php:64 -msgid "Your Identity Address:" -msgstr "Adres van uw identiteit:" - -#: mod/dfrn_request.php:858 mod/follow.php:67 -msgid "Submit Request" -msgstr "Aanvraag indienen" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Op deze website zoeken" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Websitegids" - -#: mod/directory.php:129 mod/profiles.php:746 -msgid "Age: " -msgstr "Leeftijd:" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Geslacht:" - -#: mod/directory.php:152 mod/events.php:503 include/bb2diaspora.php:161 -#: include/event.php:42 include/identity.php:268 -msgid "Location:" -msgstr "Plaats:" - -#: mod/directory.php:154 include/identity.php:270 include/identity.php:540 -msgid "Gender:" -msgstr "Geslacht:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Tijdlijn:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Website:" - -#: mod/directory.php:160 include/identity.php:277 include/identity.php:581 -msgid "About:" -msgstr "Over:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." - -#: mod/dirfind.php:27 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:62 mod/match.php:73 -msgid "No matches" -msgstr "Geen resultaten" - -#: mod/display.php:343 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Toegang tot dit profiel is beperkt." - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "Item is verwijderd." - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Item niet gevonden" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Bericht bewerken" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "Foto uploaden" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Bestand bijvoegen" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "bestand bijvoegen" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "webadres" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Voeg video toe" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "video adres" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Voeg audio adres toe" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "audio adres" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "Stel uw locatie in" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "Stel uw locatie in" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "Verwijder locatie uit uw webbrowser" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Instellingen van rechten" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "CC: e-mailadressen" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Openbare post" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Titel plaatsen" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (komma-gescheiden lijst)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "" - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van de gebeurtenis zijn vereist." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l j F" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" - -#: mod/events.php:361 include/text.php:1679 include/text.php:1689 -msgid "link to source" -msgstr "Verwijzing naar bron" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Maak een nieuwe gebeurtenis" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Vorige" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Volgende" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Gebeurtenis details" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "" - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "Gebeurtenis begint:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Vereist" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "Einddatum/tijd is niet gekend of niet relevant" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "Gebeurtenis eindigt:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Pas aan aan de tijdzone van de gebruiker" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Beschrijving:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: mod/follow.php:24 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:106 -msgid "Contact added" -msgstr "Contact toegevoegd" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Groep aangemaakt." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Kon de groep niet aanmaken." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Groep niet gevonden." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Groepsnaam gewijzigd." - -#: mod/group.php:72 mod/profperm.php:19 index.php:381 -msgid "Permission denied" -msgstr "Toegang geweigerd" - -#: mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Maak een groep contacten/vrienden aan." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Groepsnaam:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Groep verwijderd." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Niet in staat om groep te verwijderen." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Groepsbewerker" - -#: mod/group.php:190 -msgid "Members" -msgstr "Leden" - -#: mod/group.php:222 mod/profperm.php:106 -msgid "Click on a contact to add or remove." -msgstr "Klik op een contact om het toe te voegen of te verwijderen." - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr "Kon geen toegang krijgen tot de database." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Kon tabel niet aanmaken." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "De database van je Friendica-website is geïnstalleerd." - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Zie het bestand \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "" - -#: mod/install.php:205 -msgid "System check" -msgstr "Systeemcontrole" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Controleer opnieuw" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Verbinding met database" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Servernaam database" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Gebruikersnaam database" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Wachtwoord database" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Naam database" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "E-mailadres van de websitebeheerder" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Selecteer een standaard tijdzone voor uw website" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Website-instellingen" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." - -#: mod/install.php:324 -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. See 'Activating scheduled tasks'" -msgstr "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie 'Activeren van geplande taken'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "PATH van het PHP commando" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten." - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "PHP-opdrachtregel" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Gevonden PHP versie:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "mysqli PHP module" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd." - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." - -#: mod/install.php:440 -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 "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen." - -#: mod/install.php:441 -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 "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." - -#: mod/install.php:442 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map." - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies." - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is schrijfbaar" - -#: mod/install.php:456 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." - -#: mod/install.php:457 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." - -#: mod/install.php:458 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." - -#: mod/install.php:459 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 is schrijfbaar" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "" - -#: mod/install.php:489 -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 "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver." - -#: mod/install.php:528 -msgid "

    What next

    " -msgstr "

    Wat nu

    " - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller." - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Ik kan de originele post niet meer vinden." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Lege post weggegooid." - -#: mod/item.php:486 mod/wall_upload.php:169 mod/wall_upload.php:178 -#: mod/wall_upload.php:185 include/message.php:144 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Systeemfout. Post niet bewaard." - -#: mod/item.php:989 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." - -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Je kunt ze online bezoeken op %s" - -#: mod/item.php:992 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." - -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s heeft een wijziging geplaatst." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profielmatch" - -#: mod/match.php:22 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel." - -#: mod/match.php:64 -msgid "is interested in:" -msgstr "Is geïnteresseerd in:" - -#: mod/match.php:65 mod/suggest.php:92 include/contact_widgets.php:10 -#: include/identity.php:188 -msgid "Connect" -msgstr "Verbinden" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "" - -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "toevoegen" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" - -#: mod/network.php:364 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" - -#: mod/network.php:367 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" - -#: mod/network.php:376 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" - -#: mod/network.php:382 -msgid "New" -msgstr "Nieuw" - -#: mod/network.php:385 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" - -#: mod/network.php:391 -msgid "Shared Links" -msgstr "Gedeelde links" - -#: mod/network.php:394 -msgid "Interesting Links" -msgstr "Interessante links" - -#: mod/network.php:400 -msgid "Starred" -msgstr "Met ster" - -#: mod/network.php:403 -msgid "Favourite Posts" -msgstr "Favoriete berichten" - -#: mod/network.php:460 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk." -msgstr[1] "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk." - -#: mod/network.php:463 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Privéberichten naar deze groep kunnen openbaar gemaakt worden." - -#: mod/network.php:572 -#, php-format -msgid "Contact: %s" -msgstr "" - -#: mod/network.php:576 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Privéberichten naar deze persoon kunnen openbaar gemaakt worden." - -#: mod/network.php:581 -msgid "Invalid contact." -msgstr "Ongeldig contact." - -#: mod/notes.php:44 include/identity.php:670 -msgid "Personal Notes" -msgstr "Persoonlijke Nota's" - #: mod/p.php:9 msgid "Not Extended" msgstr "" -#: mod/photos.php:84 include/identity.php:649 -msgid "Photo Albums" -msgstr "Fotoalbums" +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Account goedgekeurd." -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Recente foto's" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "iedereen" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "Contactinformatie niet beschikbaar" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album niet gevonden" - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Verwijder album" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Verwijder foto" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Wil je echt deze foto verwijderen?" - -#: mod/photos.php:684 +#: mod/regmod.php:92 #, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s is gelabeld in %2$s door %3$s" +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: mod/photos.php:684 -msgid "a photo" -msgstr "een foto" +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Inloggen." -#: mod/photos.php:789 mod/profile_photo.php:144 mod/wall_upload.php:122 +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Account verplaatsen" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Je kunt een account van een andere Friendica server importeren." + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Account bestand" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Item niet beschikbaar" + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Item niet gevonden" + +#: boot.php:771 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: boot.php:774 +msgid "show fewer" +msgstr "Minder tonen" + +#: boot.php:1148 #, php-format -msgid "Image exceeds size limit of %s" -msgstr "" +msgid "Update %s failed. See error logs." +msgstr "Wijziging %s mislukt. Lees de error logbestanden." -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg." +#: boot.php:1255 +msgid "Create a New Account" +msgstr "Nieuwe account aanmaken" -#: mod/photos.php:829 mod/profile_photo.php:153 mod/wall_upload.php:144 -msgid "Unable to process image." -msgstr "Niet in staat om de afbeelding te verwerken" +#: boot.php:1280 include/nav.php:72 +msgid "Logout" +msgstr "Uitloggen" -#: mod/photos.php:856 mod/profile_photo.php:301 mod/wall_upload.php:172 -msgid "Image upload failed." -msgstr "Uploaden van afbeelding mislukt." +#: boot.php:1283 +msgid "Nickname or Email address: " +msgstr "Bijnaam of e-mailadres:" -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" - -#: mod/photos.php:1053 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Upload foto's" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Nieuwe albumnaam: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "of bestaande albumnaam: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Toon geen bericht op je tijdlijn van deze upload" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Rechten" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1172 -msgid "Show to Groups" -msgstr "Tonen aan groepen" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1173 -msgid "Show to Contacts" -msgstr "Tonen aan contacten" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Privé foto" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Publieke foto" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Album wijzigen" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Toon niewste eerst" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Toon oudste eerst" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Bekijk foto" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto is niet beschikbaar" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Bekijk foto" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Bewerk foto" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Gebruik als profielfoto" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Bekijk in volledig formaat" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Labels: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Alle labels verwijderen]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nieuwe albumnaam" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Onderschrift" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Een label toevoegen" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Roteren met de klok mee (rechts)" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Roteren tegen de klok in (links)" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Privé foto" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Publieke foto" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Delen" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "Album bekijken" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} wilt je vriend worden" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} stuurde jou een bericht" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} vroeg om zich te registreren" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Gevraagde profiel is niet beschikbaar." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Tips voor nieuwe leden" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding opgeladen, maar bijsnijden mislukt." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleining van de afbeelding [%s] mislukt." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Ik kan de afbeelding niet verwerken" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Upload bestand:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Kies een profiel:" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "Uploaden" - -#: mod/profile_photo.php:248 mod/settings.php:1088 -msgid "or" -msgstr "of" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "Deze stap overslaan" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit je fotoalbums" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Wijzigingen compleet" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Uploaden van afbeelding gelukt." - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profiel verwijderd" - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "Profiel-" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen." - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist." - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "Echtelijke staat" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "Houdt van" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "Houdt niet van" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Werk" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Godsdienst" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Politieke standpunten" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Geslacht" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Seksuele Voorkeur" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Tijdlijn" - -#: mod/profiles.php:375 mod/profiles.php:694 -msgid "Interests" -msgstr "Interesses" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Adres" - -#: mod/profiles.php:386 mod/profiles.php:690 -msgid "Location" -msgstr "Plaats" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profiel bijgewerkt." - -#: mod/profiles.php:564 -msgid " and " -msgstr "en" - -#: mod/profiles.php:572 -msgid "public profile" -msgstr "publiek profiel" - -#: mod/profiles.php:575 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" - -#: mod/profiles.php:576 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Bezoek %2$s van %1$s" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepast %2$s, %3$s veranderd." - -#: mod/profiles.php:654 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:659 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van dit profiel?" - -#: mod/profiles.php:681 -msgid "Edit Profile Details" -msgstr "Profieldetails bewerken" - -#: mod/profiles.php:683 -msgid "Change Profile Photo" -msgstr "Profielfoto wijzigen" - -#: mod/profiles.php:684 -msgid "View this profile" -msgstr "Dit profiel bekijken" - -#: mod/profiles.php:685 -msgid "Create a new profile using these settings" -msgstr "Nieuw profiel aanmaken met deze instellingen" - -#: mod/profiles.php:686 -msgid "Clone this profile" -msgstr "Dit profiel klonen" - -#: mod/profiles.php:687 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" - -#: mod/profiles.php:688 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:689 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:691 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:692 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:693 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:696 -msgid "Profile Name:" -msgstr "Profiel Naam:" - -#: mod/profiles.php:697 -msgid "Your Full Name:" -msgstr "Je volledige naam:" - -#: mod/profiles.php:698 -msgid "Title/Description:" -msgstr "Titel/Beschrijving:" - -#: mod/profiles.php:699 -msgid "Your Gender:" -msgstr "Je Geslacht:" - -#: mod/profiles.php:700 -msgid "Birthday :" -msgstr "" - -#: mod/profiles.php:701 -msgid "Street Address:" -msgstr "Postadres:" - -#: mod/profiles.php:702 -msgid "Locality/City:" -msgstr "Gemeente/Stad:" - -#: mod/profiles.php:703 -msgid "Postal/Zip Code:" -msgstr "Postcode:" - -#: mod/profiles.php:704 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:705 -msgid "Region/State:" -msgstr "Regio/Staat:" - -#: mod/profiles.php:706 -msgid " Marital Status:" -msgstr " Echtelijke Staat:" - -#: mod/profiles.php:707 -msgid "Who: (if applicable)" -msgstr "Wie: (indien toepasbaar)" - -#: mod/profiles.php:708 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: Kathleen123, Kathleen Peeters, kathleen@voorbeeld.nl" - -#: mod/profiles.php:709 -msgid "Since [date]:" -msgstr "Sinds [datum]:" - -#: mod/profiles.php:710 include/identity.php:569 -msgid "Sexual Preference:" -msgstr "Seksuele Voorkeur:" - -#: mod/profiles.php:711 -msgid "Homepage URL:" -msgstr "Adres tijdlijn:" - -#: mod/profiles.php:712 include/identity.php:573 -msgid "Hometown:" -msgstr "Woonplaats:" - -#: mod/profiles.php:713 include/identity.php:577 -msgid "Political Views:" -msgstr "Politieke standpunten:" - -#: mod/profiles.php:714 -msgid "Religious Views:" -msgstr "Geloof:" - -#: mod/profiles.php:715 -msgid "Public Keywords:" -msgstr "Publieke Sleutelwoorden:" - -#: mod/profiles.php:716 -msgid "Private Keywords:" -msgstr "Privé Sleutelwoorden:" - -#: mod/profiles.php:717 include/identity.php:585 -msgid "Likes:" -msgstr "Houdt van:" - -#: mod/profiles.php:718 include/identity.php:587 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: mod/profiles.php:719 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: vissen fotografie software" - -#: mod/profiles.php:720 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" - -#: mod/profiles.php:721 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" - -#: mod/profiles.php:722 -msgid "Tell us about yourself..." -msgstr "Vertel iets over jezelf..." - -#: mod/profiles.php:723 -msgid "Hobbies/Interests" -msgstr "Hobby's/Interesses" - -#: mod/profiles.php:724 -msgid "Contact information and Social Networks" -msgstr "Contactinformatie en sociale netwerken" - -#: mod/profiles.php:725 -msgid "Musical interests" -msgstr "Muzikale interesses" - -#: mod/profiles.php:726 -msgid "Books, literature" -msgstr "Boeken, literatuur" - -#: mod/profiles.php:727 -msgid "Television" -msgstr "Televisie" - -#: mod/profiles.php:728 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultuur/ontspanning" - -#: mod/profiles.php:729 -msgid "Love/romance" -msgstr "Liefde/romance" - -#: mod/profiles.php:730 -msgid "Work/employment" -msgstr "Werk" - -#: mod/profiles.php:731 -msgid "School/education" -msgstr "School/opleiding" - -#: mod/profiles.php:736 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Dit is jouw publiek profiel.
    Het kan zichtbaar zijn voor iedereen op het internet." - -#: mod/profiles.php:799 -msgid "Edit/Manage Profiles" -msgstr "Wijzig/Beheer Profielen" - -#: mod/profiles.php:800 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "Profiel foto wijzigen" - -#: mod/profiles.php:801 include/identity.php:232 -msgid "Create New Profile" -msgstr "Maak nieuw profiel" - -#: mod/profiles.php:812 include/identity.php:242 -msgid "Profile Image" -msgstr "Profiel afbeelding" - -#: mod/profiles.php:814 include/identity.php:245 -msgid "visible to everybody" -msgstr "zichtbaar voor iedereen" - -#: mod/profiles.php:815 include/identity.php:246 -msgid "Edit visibility" -msgstr "Pas zichtbaarheid aan" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificatie." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "" - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Alle contacten (met veilige profieltoegang)" - -#: mod/search.php:180 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/search.php:182 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: mod/share.php:38 -msgid "link" -msgstr "link" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Wil je echt dit voorstel verwijderen?" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Geen video's geselecteerd" - -#: mod/videos.php:373 include/text.php:1429 -msgid "View Video" -msgstr "Bekijk Video" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Recente video's" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Nieuwe video's uploaden" - -#: mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:122 mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Uploaden van bestand mislukt." - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." - -#: mod/register.php:97 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "Je registratie kan niet verwerkt worden." - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw registratie wacht op goedkeuring van de beheerder." - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken." - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "Je OpenID (optioneel):" - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Je profiel in de ledengids opnemen?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "Je uitnodigingsid:" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Je volledige naam (bijv. Jan Jansens):" - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Je email adres:" - -#: mod/register.php:271 mod/settings.php:1144 -msgid "New Password:" -msgstr "Nieuw Wachtwoord:" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:272 mod/settings.php:1145 -msgid "Confirm:" -msgstr "Bevestig:" - -#: mod/register.php:273 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@$sitename' zijn." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Kies een bijnaam:" - -#: mod/register.php:277 include/nav.php:109 boot.php:1238 -msgid "Register" -msgstr "Registreer" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/settings.php:46 -msgid "Additional features" -msgstr "Extra functies" - -#: mod/settings.php:51 -msgid "Display" -msgstr "Weergave" - -#: mod/settings.php:57 mod/settings.php:805 -msgid "Social Networks" -msgstr "Sociale netwerken" - -#: mod/settings.php:67 include/nav.php:171 -msgid "Delegations" -msgstr "" - -#: mod/settings.php:72 -msgid "Connected apps" -msgstr "Verbonden applicaties" - -#: mod/settings.php:82 -msgid "Remove account" -msgstr "Account verwijderen" - -#: mod/settings.php:134 -msgid "Missing some important data!" -msgstr "Een belangrijk gegeven ontbreekt!" - -#: mod/settings.php:245 -msgid "Failed to connect with email account using the settings provided." -msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." - -#: mod/settings.php:250 -msgid "Email settings updated." -msgstr "E-mail instellingen bijgewerkt.." - -#: mod/settings.php:265 -msgid "Features updated" -msgstr "Functies bijgewerkt" - -#: mod/settings.php:328 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:342 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." - -#: mod/settings.php:347 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd." - -#: mod/settings.php:355 -msgid "Wrong password." -msgstr "Verkeerd wachtwoord." - -#: mod/settings.php:366 -msgid "Password changed." -msgstr "Wachtwoord gewijzigd." - -#: mod/settings.php:368 -msgid "Password update failed. Please try again." -msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." - -#: mod/settings.php:435 -msgid " Please use a shorter name." -msgstr "Gebruik een kortere naam." - -#: mod/settings.php:437 -msgid " Name too short." -msgstr "Naam te kort." - -#: mod/settings.php:446 -msgid "Wrong Password" -msgstr "Verkeerd wachtwoord" - -#: mod/settings.php:451 -msgid " Not valid email." -msgstr "Geen geldig e-mailadres." - -#: mod/settings.php:457 -msgid " Cannot change to that email." -msgstr "Kan niet veranderen naar die e-mail." - -#: mod/settings.php:513 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt." - -#: mod/settings.php:517 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep." - -#: mod/settings.php:547 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." - -#: mod/settings.php:620 mod/settings.php:646 mod/settings.php:682 -msgid "Add application" -msgstr "Toepassing toevoegen" - -#: mod/settings.php:624 mod/settings.php:650 -msgid "Consumer Key" -msgstr "Gebruikerssleutel" - -#: mod/settings.php:625 mod/settings.php:651 -msgid "Consumer Secret" -msgstr "Gebruikersgeheim" - -#: mod/settings.php:626 mod/settings.php:652 -msgid "Redirect" -msgstr "Doorverwijzing" - -#: mod/settings.php:627 mod/settings.php:653 -msgid "Icon url" -msgstr "URL pictogram" - -#: mod/settings.php:638 -msgid "You can't edit this application." -msgstr "Je kunt deze toepassing niet wijzigen." - -#: mod/settings.php:681 -msgid "Connected Apps" -msgstr "Verbonden applicaties" - -#: mod/settings.php:685 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:686 -msgid "No name" -msgstr "Geen naam" - -#: mod/settings.php:687 -msgid "Remove authorization" -msgstr "Verwijder authorisatie" - -#: mod/settings.php:699 -msgid "No Plugin settings configured" -msgstr "" - -#: mod/settings.php:707 -msgid "Plugin Settings" -msgstr "Plugin Instellingen" - -#: mod/settings.php:721 -msgid "Off" -msgstr "Uit" - -#: mod/settings.php:721 -msgid "On" -msgstr "Aan" - -#: mod/settings.php:729 -msgid "Additional Features" -msgstr "Extra functies" - -#: mod/settings.php:739 mod/settings.php:743 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:749 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:751 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "" - -#: mod/settings.php:761 mod/settings.php:762 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Ingebouwde ondersteuning voor connectiviteit met %s is %s" - -#: mod/settings.php:761 mod/settings.php:762 -msgid "enabled" -msgstr "ingeschakeld" - -#: mod/settings.php:761 mod/settings.php:762 -msgid "disabled" -msgstr "uitgeschakeld" - -#: mod/settings.php:762 -msgid "StatusNet" -msgstr "StatusNet" - -#: mod/settings.php:798 -msgid "Email access is disabled on this site." -msgstr "E-mailtoegang is op deze website uitgeschakeld." - -#: mod/settings.php:810 -msgid "Email/Mailbox Setup" -msgstr "E-mail Instellen" - -#: mod/settings.php:811 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." - -#: mod/settings.php:812 -msgid "Last successful email check:" -msgstr "Laatste succesvolle e-mail controle:" - -#: mod/settings.php:814 -msgid "IMAP server name:" -msgstr "IMAP server naam:" - -#: mod/settings.php:815 -msgid "IMAP port:" -msgstr "IMAP poort:" - -#: mod/settings.php:816 -msgid "Security:" -msgstr "Beveiliging:" - -#: mod/settings.php:816 mod/settings.php:821 -msgid "None" -msgstr "Geen" - -#: mod/settings.php:817 -msgid "Email login name:" -msgstr "E-mail login naam:" - -#: mod/settings.php:818 -msgid "Email password:" -msgstr "E-mail wachtwoord:" - -#: mod/settings.php:819 -msgid "Reply-to address:" -msgstr "Antwoord adres:" - -#: mod/settings.php:820 -msgid "Send public posts to all email contacts:" -msgstr "Openbare posts naar alle e-mail contacten versturen:" - -#: mod/settings.php:821 -msgid "Action after import:" -msgstr "Actie na importeren:" - -#: mod/settings.php:821 -msgid "Mark as seen" -msgstr "Als 'gelezen' markeren" - -#: mod/settings.php:821 -msgid "Move to folder" -msgstr "Naar map verplaatsen" - -#: mod/settings.php:822 -msgid "Move to folder:" -msgstr "Verplaatsen naar map:" - -#: mod/settings.php:903 -msgid "Display Settings" -msgstr "Scherminstellingen" - -#: mod/settings.php:909 mod/settings.php:925 -msgid "Display Theme:" -msgstr "Schermthema:" - -#: mod/settings.php:910 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" - -#: mod/settings.php:911 -msgid "Update browser every xx seconds" -msgstr "Browser elke xx seconden verversen" - -#: mod/settings.php:911 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 seconden, geen maximum" - -#: mod/settings.php:912 -msgid "Number of items to display per page:" -msgstr "Aantal items te tonen per pagina:" - -#: mod/settings.php:912 mod/settings.php:913 -msgid "Maximum of 100 items" -msgstr "Maximum 100 items" - -#: mod/settings.php:913 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" - -#: mod/settings.php:914 -msgid "Don't show emoticons" -msgstr "Emoticons niet tonen" - -#: mod/settings.php:915 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:916 -msgid "Infinite scroll" -msgstr "Oneindig scrollen" - -#: mod/settings.php:917 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:995 -msgid "User Types" -msgstr "Gebruikerstypes" - -#: mod/settings.php:996 -msgid "Community Types" -msgstr "Forum/groepstypes" - -#: mod/settings.php:997 -msgid "Normal Account Page" -msgstr "Normale accountpagina" - -#: mod/settings.php:998 -msgid "This account is a normal personal profile" -msgstr "Deze account is een normaal persoonlijk profiel" - -#: mod/settings.php:1001 -msgid "Soapbox Page" -msgstr "Zeepkist-pagina" - -#: mod/settings.php:1002 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen." - -#: mod/settings.php:1005 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/groeps- of beroemdheid-account" - -#: mod/settings.php:1006 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven." - -#: mod/settings.php:1009 -msgid "Automatic Friend Page" -msgstr "Automatisch Vriendschapspagina" - -#: mod/settings.php:1010 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden." - -#: mod/settings.php:1013 -msgid "Private Forum [Experimental]" -msgstr "Privé-forum [experimenteel]" - -#: mod/settings.php:1014 -msgid "Private forum - approved members only" -msgstr "Privé-forum - enkel voor goedgekeurde leden" - -#: mod/settings.php:1026 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1026 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." - -#: mod/settings.php:1036 -msgid "Publish your default profile in your local site directory?" -msgstr "Je standaardprofiel in je lokale gids publiceren?" - -#: mod/settings.php:1042 -msgid "Publish your default profile in the global social directory?" -msgstr "Je standaardprofiel in de globale sociale gids publiceren?" - -#: mod/settings.php:1050 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?" - -#: mod/settings.php:1054 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "Je profieldetails verbergen voor onbekende bezoekers?" - -#: mod/settings.php:1054 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1059 -msgid "Allow friends to post to your profile page?" -msgstr "Vrienden toestaan om op jou profielpagina te posten?" - -#: mod/settings.php:1065 -msgid "Allow friends to tag your posts?" -msgstr "Sta vrienden toe om jouw berichten te labelen?" - -#: mod/settings.php:1071 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?" - -#: mod/settings.php:1077 -msgid "Permit unknown people to send you private mail?" -msgstr "Mogen onbekende personen jou privé berichten sturen?" - -#: mod/settings.php:1085 -msgid "Profile is not published." -msgstr "Profiel is niet gepubliceerd." - -#: mod/settings.php:1093 -msgid "Your Identity Address is" -msgstr "Jouw Identiteitsadres is" - -#: mod/settings.php:1102 -msgid "Automatically expire posts after this many days:" -msgstr "Laat berichten automatisch vervallen na zo veel dagen:" - -#: mod/settings.php:1102 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." - -#: mod/settings.php:1103 -msgid "Advanced expiration settings" -msgstr "Geavanceerde instellingen voor vervallen" - -#: mod/settings.php:1104 -msgid "Advanced Expiration" -msgstr "Geavanceerd Verval:" - -#: mod/settings.php:1105 -msgid "Expire posts:" -msgstr "Laat berichten vervallen:" - -#: mod/settings.php:1106 -msgid "Expire personal notes:" -msgstr "Laat persoonlijke aantekeningen verlopen:" - -#: mod/settings.php:1107 -msgid "Expire starred posts:" -msgstr "Laat berichten met ster verlopen" - -#: mod/settings.php:1108 -msgid "Expire photos:" -msgstr "Laat foto's vervallen:" - -#: mod/settings.php:1109 -msgid "Only expire posts by others:" -msgstr "Laat alleen berichten door anderen vervallen:" - -#: mod/settings.php:1135 -msgid "Account Settings" -msgstr "Account Instellingen" - -#: mod/settings.php:1143 -msgid "Password Settings" -msgstr "Wachtwoord Instellingen" - -#: mod/settings.php:1145 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" - -#: mod/settings.php:1146 -msgid "Current Password:" -msgstr "Huidig wachtwoord:" - -#: mod/settings.php:1146 mod/settings.php:1147 -msgid "Your current password to confirm the changes" -msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" - -#: mod/settings.php:1147 -msgid "Password:" +#: boot.php:1284 +msgid "Password: " msgstr "Wachtwoord:" -#: mod/settings.php:1151 -msgid "Basic Settings" -msgstr "Basis Instellingen" +#: boot.php:1285 +msgid "Remember me" +msgstr "Onthou me" -#: mod/settings.php:1152 include/identity.php:538 -msgid "Full Name:" -msgstr "Volledige Naam:" +#: boot.php:1288 +msgid "Or login using OpenID: " +msgstr "Of log in met OpenID:" -#: mod/settings.php:1153 -msgid "Email Address:" -msgstr "E-mailadres:" +#: boot.php:1294 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" -#: mod/settings.php:1154 -msgid "Your Timezone:" -msgstr "Je Tijdzone:" +#: boot.php:1297 +msgid "Website Terms of Service" +msgstr "Gebruikersvoorwaarden website" -#: mod/settings.php:1155 -msgid "Default Post Location:" -msgstr "Standaard locatie:" +#: boot.php:1298 +msgid "terms of service" +msgstr "servicevoorwaarden" -#: mod/settings.php:1156 -msgid "Use Browser Location:" -msgstr "Gebruik Webbrowser Locatie:" +#: boot.php:1300 +msgid "Website Privacy Policy" +msgstr "Privacybeleid website" -#: mod/settings.php:1159 -msgid "Security and Privacy Settings" -msgstr "Instellingen voor Beveiliging en Privacy" +#: boot.php:1301 +msgid "privacy policy" +msgstr "privacybeleid" -#: mod/settings.php:1161 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal vriendschapsverzoeken per dag:" - -#: mod/settings.php:1161 mod/settings.php:1191 -msgid "(to prevent spam abuse)" -msgstr "(om spam misbruik te voorkomen)" - -#: mod/settings.php:1162 -msgid "Default Post Permissions" -msgstr "Standaard rechten voor nieuwe berichten" - -#: mod/settings.php:1163 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: mod/settings.php:1174 -msgid "Default Private Post" -msgstr "Standaard Privé Post" - -#: mod/settings.php:1175 -msgid "Default Public Post" -msgstr "Standaard Publieke Post" - -#: mod/settings.php:1179 -msgid "Default Permissions for New Posts" -msgstr "Standaard rechten voor nieuwe berichten" - -#: mod/settings.php:1191 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" - -#: mod/settings.php:1194 -msgid "Notification Settings" -msgstr "Notificatie Instellingen" - -#: mod/settings.php:1195 -msgid "By default post a status message when:" -msgstr "Post automatisch een bericht op je tijdlijn wanneer:" - -#: mod/settings.php:1196 -msgid "accepting a friend request" -msgstr "Een vriendschapsverzoek accepteren" - -#: mod/settings.php:1197 -msgid "joining a forum/community" -msgstr "Lid worden van een groep/forum" - -#: mod/settings.php:1198 -msgid "making an interesting profile change" -msgstr "Een interessante verandering aan je profiel" - -#: mod/settings.php:1199 -msgid "Send a notification email when:" -msgstr "Stuur een notificatie e-mail wanneer:" - -#: mod/settings.php:1200 -msgid "You receive an introduction" -msgstr "Je ontvangt een vriendschaps- of connectieverzoek" - -#: mod/settings.php:1201 -msgid "Your introductions are confirmed" -msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" - -#: mod/settings.php:1202 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op je tijdlijn schrijft" - -#: mod/settings.php:1203 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" - -#: mod/settings.php:1204 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" - -#: mod/settings.php:1205 -msgid "You receive a friend suggestion" -msgstr "Je een suggestie voor een vriendschap ontvangt" - -#: mod/settings.php:1206 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" - -#: mod/settings.php:1207 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je in een bericht bent aangestoten/gepord/etc." - -#: mod/settings.php:1209 -msgid "Activate desktop notifications" +#: object/Item.php:95 +msgid "This entry was edited" msgstr "" -#: mod/settings.php:1209 -msgid "Show desktop popup on new notifications" +#: object/Item.php:191 +msgid "I will attend" msgstr "" -#: mod/settings.php:1211 -msgid "Text-only notification emails" +#: object/Item.php:191 +msgid "I will not attend" msgstr "" -#: mod/settings.php:1213 -msgid "Send text only notification emails, without the html part" +#: object/Item.php:191 +msgid "I might attend" msgstr "" -#: mod/settings.php:1215 -msgid "Advanced Account/Page Type Settings" +#: object/Item.php:230 +msgid "ignore thread" msgstr "" -#: mod/settings.php:1216 -msgid "Change the behaviour of this account for special situations" +#: object/Item.php:231 +msgid "unignore thread" msgstr "" -#: mod/settings.php:1219 -msgid "Relocate" +#: object/Item.php:232 +msgid "toggle ignore status" msgstr "" -#: mod/settings.php:1220 +#: object/Item.php:345 include/conversation.php:687 +msgid "Categories:" +msgstr "Categorieën:" + +#: object/Item.php:346 include/conversation.php:688 +msgid "Filed under:" +msgstr "Bewaard onder:" + +#: object/Item.php:360 +msgid "via" +msgstr "via" + +#: include/dbstructure.php:26 +#, php-format msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: mod/settings.php:1221 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/bookmarklet.php:12 include/nav.php:92 boot.php:1263 -msgid "Login" -msgstr "Login" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dit is Friendica, versie" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "draaiend op web-adres" - -#: mod/friendica.php:62 +#: include/dbstructure.php:31 +#, php-format msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bezoek Friendica.com om meer te leren over het Friendica project." - -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Bug rapporten en problemen: bezoek" - -#: mod/friendica.php:64 -msgid "the bugtracker at github" +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: mod/friendica.php:65 +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." + +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "" + +#: include/auth.php:38 +msgid "Logged out." +msgstr "Uitgelogd." + +#: include/auth.php:128 include/user.php:75 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Geïnstalleerde plugins/toepassingen:" - -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Geen plugins of toepassingen geïnstalleerd" +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "De foutboodschap was:" #: include/contact_widgets.php:6 msgid "Add New Contact" @@ -5891,18 +6283,24 @@ msgstr "Zoek mensen" msgid "Enter name or interest" msgstr "Vul naam of interesse in" -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbind/Volg" - #: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Voorbeelden: Jan Peeters, Vissen" +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:192 +msgid "Similar Interests" +msgstr "Dezelfde interesses" + #: include/contact_widgets.php:37 msgid "Random Profile" msgstr "Willekeurig Profiel" +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:194 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" + #: include/contact_widgets.php:71 msgid "Networks" msgstr "Netwerken" @@ -5911,7 +6309,7 @@ msgstr "Netwerken" msgid "All Networks" msgstr "Alle netwerken" -#: include/contact_widgets.php:104 include/features.php:60 +#: include/contact_widgets.php:104 include/features.php:61 msgid "Saved Folders" msgstr "Bewaarde Mappen" @@ -5923,77 +6321,1005 @@ msgstr "Alles" msgid "Categories" msgstr "Categorieën" -#: include/plugin.php:455 include/plugin.php:457 -msgid "Click here to upgrade." +#: include/features.php:23 +msgid "General Features" +msgstr "Algemene functies" + +#: include/features.php:25 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: include/features.php:26 +msgid "Photo Location" msgstr "" -#: include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." +#: include/features.php:26 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." msgstr "" -#: include/plugin.php:468 -msgid "This action is not available under your subscription plan." +#: include/features.php:31 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" + +#: include/features.php:32 +msgid "Richtext Editor" +msgstr "Tekstverwerker met opmaak" + +#: include/features.php:32 +msgid "Enable richtext editor" +msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" + +#: include/features.php:33 +msgid "Post Preview" +msgstr "Voorvertoning bericht" + +#: include/features.php:33 +msgid "Allow previewing posts and comments before publishing them" msgstr "" +#: include/features.php:34 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:34 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:39 +msgid "Network Sidebar Widgets" +msgstr "Zijbalkwidgets op netwerkpagina" + +#: include/features.php:40 +msgid "Search by Date" +msgstr "Zoeken op datum" + +#: include/features.php:40 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" + +#: include/features.php:41 +msgid "Group Filter" +msgstr "Groepsfilter" + +#: include/features.php:41 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" + +#: include/features.php:42 +msgid "Network Filter" +msgstr "Netwerkfilter" + +#: include/features.php:42 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" + +#: include/features.php:43 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" + +#: include/features.php:48 +msgid "Network Tabs" +msgstr "Netwerktabs" + +#: include/features.php:49 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" + +#: include/features.php:49 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" + +#: include/features.php:50 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" + +#: include/features.php:50 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" + +#: include/features.php:51 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:51 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:56 +msgid "Post/Comment Tools" +msgstr "Bericht-/reactiehulpmiddelen" + +#: include/features.php:57 +msgid "Multiple Deletion" +msgstr "Meervoudige verwijdering" + +#: include/features.php:57 +msgid "Select and delete multiple posts/comments at once" +msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" + +#: include/features.php:58 +msgid "Edit Sent Posts" +msgstr "Bewerk verzonden berichten" + +#: include/features.php:58 +msgid "Edit and correct posts and comments after sending" +msgstr "Bewerk en corrigeer berichten en reacties na verzending" + +#: include/features.php:59 +msgid "Tagging" +msgstr "Labelen" + +#: include/features.php:59 +msgid "Ability to tag existing posts" +msgstr "Mogelijkheid om bestaande berichten te labelen" + +#: include/features.php:60 +msgid "Post Categories" +msgstr "Categorieën berichten" + +#: include/features.php:60 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" + +#: include/features.php:61 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen te bewaren" + +#: include/features.php:62 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" + +#: include/features.php:62 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" + +#: include/features.php:63 +msgid "Star Posts" +msgstr "Geef berichten een ster" + +#: include/features.php:63 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:64 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:64 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/follow.php:77 +msgid "Connect URL missing." +msgstr "" + +#: include/follow.php:104 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." + +#: include/follow.php:105 include/follow.php:125 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." + +#: include/follow.php:123 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: include/follow.php:127 +msgid "An author or name was not found." +msgstr "" + +#: include/follow.php:129 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: include/follow.php:131 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." + +#: include/follow.php:132 +msgid "Use mailto: in front of address to force email check." +msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." + +#: include/follow.php:138 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: include/follow.php:148 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: include/follow.php:249 +msgid "Unable to retrieve contact information." +msgstr "" + +#: include/follow.php:302 +msgid "following" +msgstr "volgend" + +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " + +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "" + +#: include/group.php:228 +msgid "Everybody" +msgstr "Iedereen" + +#: include/group.php:251 +msgid "edit" +msgstr "verander" + +#: include/group.php:273 +msgid "Edit group" +msgstr "Verander groep" + +#: include/group.php:274 +msgid "Create a new group" +msgstr "Maak nieuwe groep" + +#: include/group.php:277 +msgid "Contacts not in any group" +msgstr "" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversen" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:271 +msgid "never" +msgstr "nooit" + +#: include/datetime.php:277 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" + +#: include/datetime.php:287 +msgid "year" +msgstr "jaar" + +#: include/datetime.php:287 +msgid "years" +msgstr "jaren" + +#: include/datetime.php:288 +msgid "months" +msgstr "maanden" + +#: include/datetime.php:289 +msgid "weeks" +msgstr "weken" + +#: include/datetime.php:290 +msgid "days" +msgstr "dagen" + +#: include/datetime.php:291 +msgid "hour" +msgstr "uur" + +#: include/datetime.php:291 +msgid "hours" +msgstr "uren" + +#: include/datetime.php:292 +msgid "minute" +msgstr "minuut" + +#: include/datetime.php:292 +msgid "minutes" +msgstr "minuten" + +#: include/datetime.php:293 +msgid "second" +msgstr "seconde" + +#: include/datetime.php:293 +msgid "seconds" +msgstr "secondes" + +#: include/datetime.php:302 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" + +#: include/datetime.php:474 include/items.php:2484 +#, php-format +msgid "%s's birthday" +msgstr "%s's verjaardag" + +#: include/datetime.php:475 include/items.php:2485 +#, php-format +msgid "Happy Birthday %s" +msgstr "Gefeliciteerd %s" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Gevraagde account is niet beschikbaar." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "Bewerk profiel" + +#: include/identity.php:220 +msgid "Message" +msgstr "Bericht" + +#: include/identity.php:226 include/nav.php:185 +msgid "Profiles" +msgstr "Profielen" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Beheer/wijzig profielen" + +#: include/identity.php:342 +msgid "Network:" +msgstr "" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "G l j F" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "d F" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "[vandaag]" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "[Geen omschrijving]" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "Gebeurtenisherinneringen" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "F j Y" + +#: include/identity.php:547 +msgid "j F" +msgstr "F j" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "Verjaardag:" + +#: include/identity.php:558 +msgid "Age:" +msgstr "Leeftijd:" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "Religie:" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "Hobby:" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "Muzikale interesse " + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" + +#: include/identity.php:597 +msgid "Television:" +msgstr "Televisie" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/cultuur/ontspanning:" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "Liefde/romance:" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "Werk/beroep:" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "School/opleiding:" + +#: include/identity.php:633 include/nav.php:75 +msgid "Status" +msgstr "Tijdlijn" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "Berichten op jouw tijdlijn" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "Profieldetails" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:78 +msgid "Videos" +msgstr "Video's" + +#: include/identity.php:672 include/nav.php:140 +msgid "Events and Calendar" +msgstr "Gebeurtenissen en kalender" + +#: include/identity.php:680 +msgid "Only You Can See This" +msgstr "Alleen jij kunt dit zien" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Verzenden per e-mail" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "show" +msgstr "tonen" + +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "niet tonen" + +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[geen onderwerp]" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "" + +#: include/Contact.php:334 include/conversation.php:911 +msgid "View Status" +msgstr "Bekijk status" + +#: include/Contact.php:336 include/conversation.php:913 +msgid "View Photos" +msgstr "Bekijk foto's" + +#: include/Contact.php:337 include/conversation.php:914 +msgid "Network Posts" +msgstr "Netwerkberichten" + +#: include/Contact.php:338 include/conversation.php:915 +msgid "Edit Contact" +msgstr "Bewerk contact" + +#: include/Contact.php:339 +msgid "Drop Contact" +msgstr "Verwijder contact" + +#: include/Contact.php:340 include/conversation.php:916 +msgid "Send PM" +msgstr "Stuur een privébericht" + +#: include/Contact.php:341 include/conversation.php:920 +msgid "Poke" +msgstr "Aanstoten" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Welkom" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Upload een profielfoto." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Welkom terug " + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stootte %2$s aan" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "bericht/item" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s markeerde %2$s's %3$s als favoriet" + +#: include/conversation.php:792 +msgid "remove" +msgstr "verwijder" + +#: include/conversation.php:796 +msgid "Delete Selected Items" +msgstr "Geselecteerde items verwijderen" + +#: include/conversation.php:910 +msgid "Follow Thread" +msgstr "Conversatie volgen" + +#: include/conversation.php:1035 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." + +#: include/conversation.php:1038 +#, php-format +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." + +#: include/conversation.php:1041 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1044 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1047 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1057 +msgid "and" +msgstr "en" + +#: include/conversation.php:1063 +#, php-format +msgid ", and %d other people" +msgstr ", en %d andere mensen" + +#: include/conversation.php:1072 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d mensen vinden dit leuk" + +#: include/conversation.php:1073 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d people vinden dit niet leuk" + +#: include/conversation.php:1077 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1080 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1081 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1084 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1085 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1088 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "" + +#: include/conversation.php:1089 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1128 include/conversation.php:1146 +msgid "Visible to everybody" +msgstr "Zichtbaar voor iedereen" + +#: include/conversation.php:1130 include/conversation.php:1148 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" + +#: include/conversation.php:1131 include/conversation.php:1149 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" + +#: include/conversation.php:1132 include/conversation.php:1150 +msgid "Tag term:" +msgstr "Label:" + +#: include/conversation.php:1134 include/conversation.php:1152 +msgid "Where are you right now?" +msgstr "Waar ben je nu?" + +#: include/conversation.php:1135 +msgid "Delete item(s)?" +msgstr "Item(s) verwijderen?" + +#: include/conversation.php:1204 +msgid "permissions" +msgstr "rechten" + +#: include/conversation.php:1227 +msgid "Post to Groups" +msgstr "Verzenden naar Groepen" + +#: include/conversation.php:1228 +msgid "Post to Contacts" +msgstr "Verzenden naar Contacten" + +#: include/conversation.php:1229 +msgid "Private post" +msgstr "Privé verzending" + +#: include/conversation.php:1377 +msgid "View all" +msgstr "" + +#: include/conversation.php:1399 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1402 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1408 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1411 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/network.php:967 +msgid "view full size" +msgstr "Volledig formaat" + +#: include/text.php:299 +msgid "newer" +msgstr "nieuwere berichten" + +#: include/text.php:301 +msgid "older" +msgstr "oudere berichten" + +#: include/text.php:306 +msgid "prev" +msgstr "vorige" + +#: include/text.php:308 +msgid "first" +msgstr "eerste" + +#: include/text.php:340 +msgid "last" +msgstr "laatste" + +#: include/text.php:343 +msgid "next" +msgstr "volgende" + +#: include/text.php:398 +msgid "Loading more entries..." +msgstr "" + +#: include/text.php:399 +msgid "The end" +msgstr "" + +#: include/text.php:890 +msgid "No contacts" +msgstr "Geen contacten" + +#: include/text.php:905 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacten" + +#: include/text.php:1003 include/nav.php:121 +msgid "Full Text" +msgstr "" + +#: include/text.php:1004 include/nav.php:122 +msgid "Tags" +msgstr "" + +#: include/text.php:1008 include/nav.php:126 +msgid "Forums" +msgstr "" + +#: include/text.php:1059 +msgid "poke" +msgstr "aanstoten" + +#: include/text.php:1059 +msgid "poked" +msgstr "aangestoten" + +#: include/text.php:1060 +msgid "ping" +msgstr "ping" + +#: include/text.php:1060 +msgid "pinged" +msgstr "gepingd" + +#: include/text.php:1061 +msgid "prod" +msgstr "porren" + +#: include/text.php:1061 +msgid "prodded" +msgstr "gepord" + +#: include/text.php:1062 +msgid "slap" +msgstr "slaan" + +#: include/text.php:1062 +msgid "slapped" +msgstr "geslagen" + +#: include/text.php:1063 +msgid "finger" +msgstr "finger" + +#: include/text.php:1063 +msgid "fingered" +msgstr "gerfingerd" + +#: include/text.php:1064 +msgid "rebuff" +msgstr "afpoeieren" + +#: include/text.php:1064 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: include/text.php:1078 +msgid "happy" +msgstr "Blij" + +#: include/text.php:1079 +msgid "sad" +msgstr "Verdrietig" + +#: include/text.php:1080 +msgid "mellow" +msgstr "mellow" + +#: include/text.php:1081 +msgid "tired" +msgstr "vermoeid" + +#: include/text.php:1082 +msgid "perky" +msgstr "parmantig" + +#: include/text.php:1083 +msgid "angry" +msgstr "boos" + +#: include/text.php:1084 +msgid "stupified" +msgstr "verbijsterd" + +#: include/text.php:1085 +msgid "puzzled" +msgstr "onzeker" + +#: include/text.php:1086 +msgid "interested" +msgstr "Geïnteresseerd" + +#: include/text.php:1087 +msgid "bitter" +msgstr "bitter" + +#: include/text.php:1088 +msgid "cheerful" +msgstr "vrolijk" + +#: include/text.php:1089 +msgid "alive" +msgstr "levend" + +#: include/text.php:1090 +msgid "annoyed" +msgstr "verveeld" + +#: include/text.php:1091 +msgid "anxious" +msgstr "bezorgd" + +#: include/text.php:1092 +msgid "cranky" +msgstr "humeurig " + +#: include/text.php:1093 +msgid "disturbed" +msgstr "verontrust" + +#: include/text.php:1094 +msgid "frustrated" +msgstr "gefrustreerd" + +#: include/text.php:1095 +msgid "motivated" +msgstr "gemotiveerd" + +#: include/text.php:1096 +msgid "relaxed" +msgstr "ontspannen" + +#: include/text.php:1097 +msgid "surprised" +msgstr "verbaasd" + +#: include/text.php:1490 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1522 include/text.php:1534 +msgid "Click to open/close" +msgstr "klik om te openen/sluiten" + +#: include/text.php:1708 +msgid "View on separate page" +msgstr "" + +#: include/text.php:1709 +msgid "view on separate page" +msgstr "" + +#: include/text.php:1990 +msgid "activity" +msgstr "activiteit" + +#: include/text.php:1993 +msgid "post" +msgstr "bericht" + +#: include/text.php:2161 +msgid "Item filed" +msgstr "Item bewaard" + +#: include/bbcode.php:474 include/bbcode.php:1132 include/bbcode.php:1133 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: include/bbcode.php:572 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:606 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: include/bbcode.php:1092 include/bbcode.php:1112 +msgid "$1 wrote:" +msgstr "$1 schreef:" + +#: include/bbcode.php:1141 include/bbcode.php:1142 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: include/notifier.php:840 include/delivery.php:456 +msgid "(no subject)" +msgstr "(geen onderwerp)" + +#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:37 +msgid "noreply" +msgstr "geen reactie" + #: include/dba_pdo.php:72 include/dba.php:56 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: include/auth.php:38 -msgid "Logged out." -msgstr "Uitgelogd." - -#: include/auth.php:128 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: include/auth.php:128 include/user.php:75 -msgid "The error message was:" -msgstr "De foutboodschap was:" - -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: include/uimport.php:120 include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Gebruiker '%s' bestaat al op deze server!" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Fout bij het aanmaken van de gebruiker" - -#: include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fout bij het aanmaken van het gebruikersprofiel" - -#: include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact werd niet geïmporteerd" -msgstr[1] "%d contacten werden niet geïmporteerd" - -#: include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" - -#: include/message.php:15 include/message.php:172 -msgid "[no subject]" -msgstr "[geen onderwerp]" - #: include/contact_selectors.php:32 msgid "Unknown | Not categorised" msgstr "Onbekend | Niet " @@ -6067,177 +7393,361 @@ msgid "Diaspora Connector" msgstr "Diaspora-connector" #: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" +msgid "GNU Social" +msgstr "" #: include/contact_selectors.php:92 msgid "App.net" msgstr "" -#: include/features.php:23 -msgid "General Features" -msgstr "Algemene functies" - -#: include/features.php:25 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: include/features.php:30 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: include/features.php:31 -msgid "Richtext Editor" -msgstr "Tekstverwerker met opmaak" - -#: include/features.php:31 -msgid "Enable richtext editor" -msgstr "Gebruik een tekstverwerker met eenvoudige opmaakfuncties" - -#: include/features.php:32 -msgid "Post Preview" -msgstr "Voorvertoning bericht" - -#: include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" +#: include/contact_selectors.php:103 +msgid "Redmatrix" msgstr "" -#: include/features.php:33 -msgid "Auto-mention Forums" +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr " op Last.fm" + +#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 +msgid "Starts:" +msgstr "Begint:" + +#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 +msgid "Finishes:" +msgstr "Eindigt:" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." msgstr "" -#: include/features.php:33 +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/nav.php:72 +msgid "End this session" +msgstr "Deze sessie beëindigen" + +#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "Jouw berichten en conversaties" + +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Jouw profiel pagina" + +#: include/nav.php:77 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Jouw foto's" + +#: include/nav.php:78 +msgid "Your videos" +msgstr "" + +#: include/nav.php:79 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "Jouw gebeurtenissen" + +#: include/nav.php:80 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Persoonlijke nota's" + +#: include/nav.php:80 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:91 +msgid "Sign in" +msgstr "Inloggen" + +#: include/nav.php:104 +msgid "Home Page" +msgstr "Jouw tijdlijn" + +#: include/nav.php:108 +msgid "Create an account" +msgstr "Maak een accoount" + +#: include/nav.php:113 +msgid "Help and documentation" +msgstr "Hulp en documentatie" + +#: include/nav.php:116 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Extra toepassingen, hulpmiddelen of spelletjes" + +#: include/nav.php:118 +msgid "Search site content" +msgstr "Doorzoek de inhoud van de website" + +#: include/nav.php:136 +msgid "Conversations on this site" +msgstr "Conversaties op deze website" + +#: include/nav.php:138 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:142 +msgid "Directory" +msgstr "Gids" + +#: include/nav.php:142 +msgid "People directory" +msgstr "Personengids" + +#: include/nav.php:144 +msgid "Information" +msgstr "Informatie" + +#: include/nav.php:144 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:154 +msgid "Conversations from your friends" +msgstr "Conversaties van je vrienden" + +#: include/nav.php:155 +msgid "Network Reset" +msgstr "Netwerkpagina opnieuw instellen" + +#: include/nav.php:155 +msgid "Load Network page with no filters" +msgstr "Laad de netwerkpagina zonder filters" + +#: include/nav.php:162 +msgid "Friend Requests" +msgstr "Vriendschapsverzoeken" + +#: include/nav.php:166 +msgid "See all notifications" +msgstr "Toon alle notificaties" + +#: include/nav.php:167 +msgid "Mark all system notifications seen" +msgstr "Alle systeemnotificaties als gelezen markeren" + +#: include/nav.php:171 +msgid "Private mail" +msgstr "Privéberichten" + +#: include/nav.php:172 +msgid "Inbox" +msgstr "Inbox" + +#: include/nav.php:173 +msgid "Outbox" +msgstr "Verzonden berichten" + +#: include/nav.php:177 +msgid "Manage" +msgstr "Beheren" + +#: include/nav.php:177 +msgid "Manage other pages" +msgstr "Andere pagina's beheren" + +#: include/nav.php:182 +msgid "Account settings" +msgstr "Account instellingen" + +#: include/nav.php:185 +msgid "Manage/Edit Profiles" +msgstr "Beheer/Wijzig Profielen" + +#: include/nav.php:187 +msgid "Manage/edit friends and contacts" +msgstr "Beheer/Wijzig vrienden en contacten" + +#: include/nav.php:194 +msgid "Site setup and configuration" +msgstr "Website opzetten en configureren" + +#: include/nav.php:198 +msgid "Navigation" +msgstr "Navigatie" + +#: include/nav.php:198 +msgid "Site map" +msgstr "Sitemap" + +#: include/api.php:321 include/api.php:332 include/api.php:441 +#: include/api.php:1151 include/api.php:1153 +msgid "User not found." +msgstr "Gebruiker niet gevonden" + +#: include/api.php:799 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:818 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:837 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: include/api.php:1360 +msgid "There is no status with this id." +msgstr "Er is geen status met dit kenmerk" + +#: include/api.php:1434 +msgid "There is no conversation with this id." +msgstr "" + +#: include/api.php:1713 +msgid "Invalid item." +msgstr "" + +#: include/api.php:1723 +msgid "Invalid action. " +msgstr "" + +#: include/api.php:1731 +msgid "DB error" +msgstr "" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ongeldige OpenID url" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "gebruik een kortere naam" + +#: include/user.php:98 +msgid "Name too short." +msgstr "Naam te kort" + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Je e-maildomein is op deze website niet toegestaan." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Geen geldig e-mailadres." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Ik kan die e-mail niet gebruiken." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Bijnaam is al geregistreerd. Kies een andere." + +#: include/user.php:156 msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." msgstr "" -#: include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Zijbalkwidgets op netwerkpagina" +#: include/user.php:255 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "standaard" -#: include/features.php:39 -msgid "Search by Date" -msgstr "Zoeken op datum" - -#: include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten te selecteren volgens datumbereik" - -#: include/features.php:40 -msgid "Group Filter" -msgstr "Groepsfilter" - -#: include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde groepen" - -#: include/features.php:41 -msgid "Network Filter" -msgstr "Netwerkfilter" - -#: include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Sta de widget toe om netwerkberichten te tonen van bepaalde netwerken" - -#: include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: include/features.php:47 -msgid "Network Tabs" -msgstr "Netwerktabs" - -#: include/features.php:48 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: include/features.php:49 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Laat de tab alleen nieuwe netwerkberichten tonen (van de laatste 12 uur)" - -#: include/features.php:50 -msgid "Network Shared Links Tab" +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Vrienden" + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" msgstr "" -#: include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Bericht-/reactiehulpmiddelen" - -#: include/features.php:56 -msgid "Multiple Deletion" -msgstr "Meervoudige verwijdering" - -#: include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selecteer en verwijder meerdere berichten/reacties in een keer" - -#: include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Bewerk verzonden berichten" - -#: include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Bewerk en corrigeer berichten en reacties na verzending" - -#: include/features.php:58 -msgid "Tagging" -msgstr "Labelen" - -#: include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Mogelijkheid om bestaande berichten te labelen" - -#: include/features.php:59 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: include/features.php:59 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen te bewaren" - -#: include/features.php:61 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten of reacties niet leuk te vinden" - -#: include/features.php:62 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: include/features.php:62 -msgid "Ability to mark special posts with a star indicator" +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." msgstr "" -#: include/features.php:63 -msgid "Mute Post Notifications" +#: include/diaspora.php:719 +msgid "Sharing notification from Diaspora network" msgstr "" -#: include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" +#: include/diaspora.php:2574 +msgid "Attachments:" +msgstr "Bijlagen:" + +#: include/items.php:4933 +msgid "Do you really want to delete this item?" +msgstr "Wil je echt dit item verwijderen?" + +#: include/items.php:5208 +msgid "Archives" +msgstr "Archieven" #: include/profile_selectors.php:6 msgid "Male" @@ -6291,10 +7801,6 @@ msgstr "Niet-specifiek" msgid "Other" msgstr "Anders" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Onbeslist" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Mannen" @@ -6383,10 +7889,6 @@ msgstr "Ontrouw" msgid "Sex Addict" msgstr "Seksverslaafd" -#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 -msgid "Friends" -msgstr "Vrienden" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Vriendschap plus" @@ -6471,371 +7973,6 @@ msgstr "Kan me niet schelen" msgid "Ask me" msgstr "Vraag me" -#: include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Aanstoten" - -#: include/Contact.php:233 include/conversation.php:875 -msgid "View Status" -msgstr "Bekijk status" - -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Bekijk profiel" - -#: include/Contact.php:235 include/conversation.php:877 -msgid "View Photos" -msgstr "Bekijk foto's" - -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 -msgid "Network Posts" -msgstr "Netwerkberichten" - -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 -msgid "Edit Contact" -msgstr "Bewerk contact" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Verwijder contact" - -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 -msgid "Send PM" -msgstr "Stuur een privébericht" - -#: include/Scrape.php:608 -msgid " on Last.fm" -msgstr " op Last.fm" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Verzenden per e-mail" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: include/api.php:310 include/api.php:321 include/api.php:430 -#: include/api.php:1133 include/api.php:1135 -msgid "User not found." -msgstr "Gebruiker niet gevonden" - -#: include/api.php:784 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:803 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:822 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "" - -#: include/api.php:1342 -msgid "There is no status with this id." -msgstr "Er is geen status met dit kenmerk" - -#: include/api.php:1416 -msgid "There is no conversation with this id." -msgstr "" - -#: include/api.php:1686 -msgid "Invalid request." -msgstr "" - -#: include/api.php:1697 -msgid "Invalid item." -msgstr "" - -#: include/api.php:1707 -msgid "Invalid action. " -msgstr "" - -#: include/api.php:1715 -msgid "DB error" -msgstr "" - -#: include/bb2diaspora.php:145 include/event.php:22 -msgid "Starts:" -msgstr "Begint:" - -#: include/bb2diaspora.php:153 include/event.php:32 -msgid "Finishes:" -msgstr "Eindigt:" - -#: include/bbcode.php:451 include/bbcode.php:1101 include/bbcode.php:1102 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: include/bbcode.php:549 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:583 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: include/bbcode.php:1065 include/bbcode.php:1085 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: include/bbcode.php:1110 include/bbcode.php:1111 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stootte %2$s aan" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "bericht/item" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s markeerde %2$s's %3$s als favoriet" - -#: include/conversation.php:771 -msgid "remove" -msgstr "verwijder" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Geselecteerde items verwijderen" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Conversatie volgen" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d mensen vinden dit leuk" - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d people vinden dit niet leuk" - -#: include/conversation.php:965 -msgid "and" -msgstr "en" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr ", en %d andere mensen" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s vindt dit leuk." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s vindt dit niet leuk." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Zichtbaar voor iedereen" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Label:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Waar ben je nu?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Item(s) verwijderen?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "rechten" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Verzenden naar Groepen" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Verzenden naar Contacten" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Privé verzending" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diversen" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:256 -msgid "never" -msgstr "nooit" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: include/datetime.php:272 -msgid "year" -msgstr "jaar" - -#: include/datetime.php:272 -msgid "years" -msgstr "jaren" - -#: include/datetime.php:273 -msgid "month" -msgstr "maand" - -#: include/datetime.php:273 -msgid "months" -msgstr "maanden" - -#: include/datetime.php:274 -msgid "week" -msgstr "week" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "weken" - -#: include/datetime.php:275 -msgid "day" -msgstr "dag" - -#: include/datetime.php:275 -msgid "days" -msgstr "dagen" - -#: include/datetime.php:276 -msgid "hour" -msgstr "uur" - -#: include/datetime.php:276 -msgid "hours" -msgstr "uren" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuut" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minuten" - -#: include/datetime.php:278 -msgid "second" -msgstr "seconde" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "secondes" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: include/datetime.php:459 include/items.php:2431 -#, php-format -msgid "%s's birthday" -msgstr "%s's verjaardag" - -#: include/datetime.php:460 include/items.php:2432 -#, php-format -msgid "Happy Birthday %s" -msgstr "Gefeliciteerd %s" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "" - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" - -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "" - -#: include/delivery.php:456 include/notifier.php:825 -msgid "(no subject)" -msgstr "(geen onderwerp)" - -#: include/delivery.php:467 include/enotify.php:33 include/notifier.php:835 -msgid "noreply" -msgstr "geen reactie" - -#: include/diaspora.php:705 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: include/diaspora.php:2539 -msgid "Attachments:" -msgstr "Bijlagen:" - #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Friendica Notificatie" @@ -6844,242 +7981,247 @@ msgstr "Friendica Notificatie" msgid "Thank You," msgstr "Bedankt" -#: include/enotify.php:23 +#: include/enotify.php:24 #, php-format msgid "%s Administrator" msgstr "%s Beheerder" -#: include/enotify.php:64 +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:68 #, php-format msgid "%s " msgstr "%s " -#: include/enotify.php:78 +#: include/enotify.php:82 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Notificatie] Nieuw bericht ontvangen op %s" -#: include/enotify.php:80 +#: include/enotify.php:84 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sent you a new private message at %2$s." -#: include/enotify.php:81 +#: include/enotify.php:85 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s stuurde jou %2$s." -#: include/enotify.php:81 +#: include/enotify.php:85 msgid "a private message" msgstr "een prive bericht" -#: include/enotify.php:82 +#: include/enotify.php:86 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." -#: include/enotify.php:134 +#: include/enotify.php:138 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s gaf een reactie op [url=%2$s]a %3$s[/url]" -#: include/enotify.php:141 +#: include/enotify.php:145 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s gaf een reactie op [url=%2$s]%3$s's %4$s[/url]" -#: include/enotify.php:149 +#: include/enotify.php:153 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s gaf een reactie op [url=%2$s]jouw %3$s[/url]" -#: include/enotify.php:159 +#: include/enotify.php:163 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: include/enotify.php:160 +#: include/enotify.php:164 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s gaf een reactie op een bericht/conversatie die jij volgt." -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 +#: include/enotify.php:167 include/enotify.php:182 include/enotify.php:195 +#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bezoek %s om de conversatie te bekijken en/of te beantwoorden." -#: include/enotify.php:170 +#: include/enotify.php:174 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "" -#: include/enotify.php:172 +#: include/enotify.php:176 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: include/enotify.php:174 +#: include/enotify.php:178 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: include/enotify.php:185 +#: include/enotify.php:189 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notificatie] %s heeft jou genoemd" -#: include/enotify.php:186 +#: include/enotify.php:190 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s heeft jou in %2$s genoemd" -#: include/enotify.php:187 +#: include/enotify.php:191 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]heeft jou genoemd[/url]." -#: include/enotify.php:198 +#: include/enotify.php:202 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "" -#: include/enotify.php:199 +#: include/enotify.php:203 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "" -#: include/enotify.php:200 +#: include/enotify.php:204 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "" -#: include/enotify.php:212 +#: include/enotify.php:216 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify] %1$s heeft jou aangestoten" -#: include/enotify.php:213 +#: include/enotify.php:217 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s heeft jou aangestoten op %2$s" -#: include/enotify.php:214 +#: include/enotify.php:218 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "" -#: include/enotify.php:229 +#: include/enotify.php:233 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notificatie] %s heeft jouw bericht gelabeld" -#: include/enotify.php:230 +#: include/enotify.php:234 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s heeft jouw bericht gelabeld in %2$s" -#: include/enotify.php:231 +#: include/enotify.php:235 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s labelde [url=%2$s]jouw bericht[/url]" -#: include/enotify.php:242 +#: include/enotify.php:246 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notificatie] Vriendschaps-/connectieverzoek ontvangen" -#: include/enotify.php:243 +#: include/enotify.php:247 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" -#: include/enotify.php:244 +#: include/enotify.php:248 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." -#: include/enotify.php:247 include/enotify.php:289 +#: include/enotify.php:251 include/enotify.php:293 #, php-format msgid "You may visit their profile at %s" msgstr "U kunt hun profiel bezoeken op %s" -#: include/enotify.php:249 +#: include/enotify.php:253 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bezoek %s om het verzoek goed of af te keuren." -#: include/enotify.php:257 +#: include/enotify.php:261 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "" -#: include/enotify.php:258 include/enotify.php:259 +#: include/enotify.php:262 include/enotify.php:263 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: include/enotify.php:265 +#: include/enotify.php:269 msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: include/enotify.php:266 include/enotify.php:267 +#: include/enotify.php:270 include/enotify.php:271 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: include/enotify.php:280 +#: include/enotify.php:284 msgid "[Friendica:Notify] Friend suggestion received" msgstr "" -#: include/enotify.php:281 +#: include/enotify.php:285 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: include/enotify.php:282 +#: include/enotify.php:286 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: include/enotify.php:287 +#: include/enotify.php:291 msgid "Name:" msgstr "Naam:" -#: include/enotify.php:288 +#: include/enotify.php:292 msgid "Photo:" msgstr "Foto: " -#: include/enotify.php:291 +#: include/enotify.php:295 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: include/enotify.php:299 include/enotify.php:312 +#: include/enotify.php:303 include/enotify.php:316 msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: include/enotify.php:300 include/enotify.php:313 +#: include/enotify.php:304 include/enotify.php:317 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: include/enotify.php:301 include/enotify.php:314 +#: include/enotify.php:305 include/enotify.php:318 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: include/enotify.php:304 +#: include/enotify.php:308 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "" -#: include/enotify.php:307 include/enotify.php:321 +#: include/enotify.php:311 include/enotify.php:325 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: include/enotify.php:317 +#: include/enotify.php:321 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -7088,873 +8230,260 @@ msgid "" "automatically." msgstr "" -#: include/enotify.php:319 +#: include/enotify.php:323 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "" -#: include/enotify.php:332 +#: include/enotify.php:336 msgid "[Friendica System:Notify] registration request" msgstr "" -#: include/enotify.php:333 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:334 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - #: include/enotify.php:337 #, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:338 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:341 +#, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "" -#: include/enotify.php:340 +#: include/enotify.php:344 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: include/follow.php:32 -msgid "Connect URL missing." -msgstr "" - -#: include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Deze website is niet geconfigureerd voor communicatie met andere netwerken." - -#: include/follow.php:60 include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." - -#: include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: include/follow.php:82 -msgid "An author or name was not found." -msgstr "" - -#: include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." - -#: include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." - -#: include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "" - -#: include/follow.php:258 -msgid "following" -msgstr "volgend" - -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. " - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Iedereen" - -#: include/group.php:249 -msgid "edit" -msgstr "verander" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Verander groep" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Maak nieuwe groep" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "Gevraagde account is niet beschikbaar." - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Bewerk profiel" - -#: include/identity.php:220 -msgid "Message" -msgstr "Bericht" - -#: include/identity.php:226 include/nav.php:176 -msgid "Profiles" -msgstr "Profielen" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Beheer/wijzig profielen" - -#: include/identity.php:341 -msgid "Network:" -msgstr "" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "G l j F" - -#: include/identity.php:374 include/identity.php:460 -msgid "F d" -msgstr "d F" - -#: include/identity.php:419 include/identity.php:506 -msgid "[today]" -msgstr "[vandaag]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[Geen omschrijving]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Gebeurtenisherinneringen" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" - -#: include/identity.php:545 -msgid "j F, Y" -msgstr "F j Y" - -#: include/identity.php:546 -msgid "j F" -msgstr "F j" - -#: include/identity.php:553 -msgid "Birthday:" -msgstr "Verjaardag:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Leeftijd:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: include/identity.php:575 -msgid "Tags:" -msgstr "Labels:" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Religie:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Hobby:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Muzikale interesse " - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Televisie" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/cultuur/ontspanning:" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Liefde/romance:" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Werk/beroep:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "School/opleiding:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Tijdlijn" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Berichten op jouw tijdlijn" - -#: include/identity.php:642 -msgid "Profile Details" -msgstr "Profieldetails" - -#: include/identity.php:653 include/identity.php:656 include/nav.php:79 -msgid "Videos" -msgstr "Video's" - -#: include/identity.php:666 -msgid "Events and Calendar" -msgstr "Gebeurtenissen en kalender" - -#: include/identity.php:673 -msgid "Only You Can See This" -msgstr "Alleen jij kunt dit zien" - -#: include/items.php:4852 -msgid "Do you really want to delete this item?" -msgstr "Wil je echt dit item verwijderen?" - -#: include/items.php:5127 -msgid "Archives" -msgstr "Archieven" - -#: include/nav.php:73 boot.php:1262 -msgid "Logout" -msgstr "Uitloggen" - -#: include/nav.php:73 -msgid "End this session" -msgstr "Deze sessie beëindigen" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Inloggen" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Jouw tijdlijn" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Maak een accoount" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Hulp en documentatie" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Extra toepassingen, hulpmiddelen of spelletjes" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Doorzoek de inhoud van de website" - -#: include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversaties op deze website" - -#: include/nav.php:131 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:133 -msgid "Directory" -msgstr "Gids" - -#: include/nav.php:133 -msgid "People directory" -msgstr "Personengids" - -#: include/nav.php:135 -msgid "Information" -msgstr "Informatie" - -#: include/nav.php:135 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:145 -msgid "Conversations from your friends" -msgstr "Conversaties van je vrienden" - -#: include/nav.php:146 -msgid "Network Reset" -msgstr "Netwerkpagina opnieuw instellen" - -#: include/nav.php:146 -msgid "Load Network page with no filters" -msgstr "Laad de netwerkpagina zonder filters" - -#: include/nav.php:153 -msgid "Friend Requests" -msgstr "Vriendschapsverzoeken" - -#: include/nav.php:157 -msgid "See all notifications" -msgstr "Toon alle notificaties" - -#: include/nav.php:158 -msgid "Mark all system notifications seen" -msgstr "Alle systeemnotificaties als gelezen markeren" - -#: include/nav.php:162 -msgid "Private mail" -msgstr "Privéberichten" - -#: include/nav.php:163 -msgid "Inbox" -msgstr "Inbox" - -#: include/nav.php:164 -msgid "Outbox" -msgstr "Verzonden berichten" - -#: include/nav.php:168 -msgid "Manage" -msgstr "Beheren" - -#: include/nav.php:168 -msgid "Manage other pages" -msgstr "Andere pagina's beheren" - -#: include/nav.php:173 -msgid "Account settings" -msgstr "Account instellingen" - -#: include/nav.php:176 -msgid "Manage/Edit Profiles" -msgstr "Beheer/Wijzig Profielen" - -#: include/nav.php:178 -msgid "Manage/edit friends and contacts" -msgstr "Beheer/Wijzig vrienden en contacten" - -#: include/nav.php:185 -msgid "Site setup and configuration" -msgstr "Website opzetten en configureren" - -#: include/nav.php:189 -msgid "Navigation" -msgstr "Navigatie" - -#: include/nav.php:189 -msgid "Site map" -msgstr "Sitemap" - -#: include/network.php:959 -msgid "view full size" -msgstr "Volledig formaat" - -#: include/oembed.php:224 +#: include/oembed.php:220 msgid "Embedded content" msgstr "Ingebedde inhoud" -#: include/oembed.php:233 +#: include/oembed.php:229 msgid "Embedding disabled" msgstr "Inbedden uitgeschakeld" -#: include/security.php:22 -msgid "Welcome " -msgstr "Welkom" - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Upload een profielfoto." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Welkom terug " - -#: include/security.php:375 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: include/uimport.php:94 +msgid "Error decoding account file" msgstr "" -#: include/text.php:299 -msgid "newer" -msgstr "nieuwere berichten" - -#: include/text.php:301 -msgid "older" -msgstr "oudere berichten" - -#: include/text.php:306 -msgid "prev" -msgstr "vorige" - -#: include/text.php:308 -msgid "first" -msgstr "eerste" - -#: include/text.php:340 -msgid "last" -msgstr "laatste" - -#: include/text.php:343 -msgid "next" -msgstr "volgende" - -#: include/text.php:398 -msgid "Loading more entries..." +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: include/text.php:399 -msgid "The end" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" msgstr "" -#: include/text.php:878 -msgid "No contacts" -msgstr "Geen contacten" - -#: include/text.php:887 +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacten" +msgid "User '%s' already exists on this server!" +msgstr "Gebruiker '%s' bestaat al op deze server!" -#: include/text.php:1027 -msgid "poke" -msgstr "aanstoten" +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Fout bij het aanmaken van de gebruiker" -#: include/text.php:1027 -msgid "poked" -msgstr "aangestoten" +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Fout bij het aanmaken van het gebruikersprofiel" -#: include/text.php:1028 -msgid "ping" -msgstr "ping" - -#: include/text.php:1028 -msgid "pinged" -msgstr "gepingd" - -#: include/text.php:1029 -msgid "prod" -msgstr "porren" - -#: include/text.php:1029 -msgid "prodded" -msgstr "gepord" - -#: include/text.php:1030 -msgid "slap" -msgstr "slaan" - -#: include/text.php:1030 -msgid "slapped" -msgstr "geslagen" - -#: include/text.php:1031 -msgid "finger" -msgstr "finger" - -#: include/text.php:1031 -msgid "fingered" -msgstr "gerfingerd" - -#: include/text.php:1032 -msgid "rebuff" -msgstr "afpoeieren" - -#: include/text.php:1032 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: include/text.php:1046 -msgid "happy" -msgstr "Blij" - -#: include/text.php:1047 -msgid "sad" -msgstr "Verdrietig" - -#: include/text.php:1048 -msgid "mellow" -msgstr "mellow" - -#: include/text.php:1049 -msgid "tired" -msgstr "vermoeid" - -#: include/text.php:1050 -msgid "perky" -msgstr "parmantig" - -#: include/text.php:1051 -msgid "angry" -msgstr "boos" - -#: include/text.php:1052 -msgid "stupified" -msgstr "verbijsterd" - -#: include/text.php:1053 -msgid "puzzled" -msgstr "onzeker" - -#: include/text.php:1054 -msgid "interested" -msgstr "Geïnteresseerd" - -#: include/text.php:1055 -msgid "bitter" -msgstr "bitter" - -#: include/text.php:1056 -msgid "cheerful" -msgstr "vrolijk" - -#: include/text.php:1057 -msgid "alive" -msgstr "levend" - -#: include/text.php:1058 -msgid "annoyed" -msgstr "verveeld" - -#: include/text.php:1059 -msgid "anxious" -msgstr "bezorgd" - -#: include/text.php:1060 -msgid "cranky" -msgstr "humeurig " - -#: include/text.php:1061 -msgid "disturbed" -msgstr "verontrust" - -#: include/text.php:1062 -msgid "frustrated" -msgstr "gefrustreerd" - -#: include/text.php:1063 -msgid "motivated" -msgstr "gemotiveerd" - -#: include/text.php:1064 -msgid "relaxed" -msgstr "ontspannen" - -#: include/text.php:1065 -msgid "surprised" -msgstr "verbaasd" - -#: include/text.php:1235 -msgid "Monday" -msgstr "Maandag" - -#: include/text.php:1235 -msgid "Tuesday" -msgstr "Dinsdag" - -#: include/text.php:1235 -msgid "Wednesday" -msgstr "Woensdag" - -#: include/text.php:1235 -msgid "Thursday" -msgstr "Donderdag" - -#: include/text.php:1235 -msgid "Friday" -msgstr "Vrijdag" - -#: include/text.php:1235 -msgid "Saturday" -msgstr "Zaterdag" - -#: include/text.php:1235 -msgid "Sunday" -msgstr "Zondag" - -#: include/text.php:1239 -msgid "January" -msgstr "Januari" - -#: include/text.php:1239 -msgid "February" -msgstr "Februari" - -#: include/text.php:1239 -msgid "March" -msgstr "Maart" - -#: include/text.php:1239 -msgid "April" -msgstr "April" - -#: include/text.php:1239 -msgid "May" -msgstr "Mei" - -#: include/text.php:1239 -msgid "June" -msgstr "Juni" - -#: include/text.php:1239 -msgid "July" -msgstr "Juli" - -#: include/text.php:1239 -msgid "August" -msgstr "Augustus" - -#: include/text.php:1239 -msgid "September" -msgstr "September" - -#: include/text.php:1239 -msgid "October" -msgstr "Oktober" - -#: include/text.php:1239 -msgid "November" -msgstr "November" - -#: include/text.php:1239 -msgid "December" -msgstr "December" - -#: include/text.php:1461 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1493 include/text.php:1505 -msgid "Click to open/close" -msgstr "klik om te openen/sluiten" - -#: include/text.php:1746 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: include/text.php:2002 -msgid "activity" -msgstr "activiteit" - -#: include/text.php:2005 -msgid "post" -msgstr "bericht" - -#: include/text.php:2173 -msgid "Item filed" -msgstr "Item bewaard" - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Ongeldige OpenID url" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "gebruik een kortere naam" - -#: include/user.php:98 -msgid "Name too short." -msgstr "Naam te kort" - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Je e-maildomein is op deze website niet toegestaan." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Geen geldig e-mailadres." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Ik kan die e-mail niet gebruiken." - -#: include/user.php:140 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen." - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Bijnaam is al geregistreerd. Kies een andere." - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere." - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: include/user.php:385 +#: include/uimport.php:222 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact werd niet geïmporteerd" +msgstr[1] "%d contacten werden niet geïmporteerd" -#: include/user.php:389 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" #: index.php:441 msgid "toggle mobile" msgstr "mobiel thema omwisselen" -#: boot.php:753 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" -#: boot.php:756 -msgid "show fewer" -msgstr "Minder tonen" +#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 +#: view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Stel lettergrootte voor berichten en reacties in" -#: boot.php:1130 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Wijziging %s mislukt. Lees de error logbestanden." +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Stel breedte van het thema in" -#: boot.php:1237 -msgid "Create a New Account" -msgstr "Nieuwe account aanmaken" +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Kleurschema" -#: boot.php:1265 -msgid "Nickname or Email address: " -msgstr "Bijnaam of e-mailadres:" +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Stel lijnhoogte voor berichten en reacties in" -#: boot.php:1266 -msgid "Password: " -msgstr "Wachtwoord:" +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Stel kleurschema in" -#: boot.php:1267 -msgid "Remember me" -msgstr "Onthou me" +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Uitlijning" -#: boot.php:1270 -msgid "Or login using OpenID: " -msgstr "Of log in met OpenID:" +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" -#: boot.php:1276 -msgid "Forgot your password?" -msgstr "Wachtwoord vergeten?" +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Gecentreerd" -#: boot.php:1279 -msgid "Website Terms of Service" -msgstr "Gebruikersvoorwaarden website" +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Lettergrootte berichten" -#: boot.php:1280 -msgid "terms of service" -msgstr "servicevoorwaarden" +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Lettergrootte tekstgebieden" -#: boot.php:1282 -msgid "Website Privacy Policy" -msgstr "Privacybeleid website" +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Stel resolutie in voor de middelste kolom. " -#: boot.php:1283 -msgid "privacy policy" -msgstr "privacybeleid" +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Stel kleurenschema in" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/vier/config.php:111 view/theme/vier/theme.php:230 +msgid "Community Pages" +msgstr "Forum/groepspagina's" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 +#: view/theme/vier/theme.php:142 +msgid "Community Profiles" +msgstr "Forum/groepsprofielen" + +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 +#: view/theme/vier/theme.php:348 +msgid "Connect Services" +msgstr "Diensten verbinden" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 +#: view/theme/vier/theme.php:189 +msgid "Find Friends" +msgstr "Zoek vrienden" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 +#: view/theme/vier/theme.php:171 +msgid "Last users" +msgstr "Laatste gebruikers" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Laatste foto's" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Recent leuk gevonden" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Jouw contacten" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Jouw persoonlijke foto's" + +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:190 +msgid "Local Directory" +msgstr "Lokale gids" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 +msgid "Set style" +msgstr "" + +#: view/theme/vier/theme.php:234 +msgid "External link to forum" +msgstr "" + +#: view/theme/vier/theme.php:266 +msgid "Quick Start" +msgstr "" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" diff --git a/view/nl/strings.php b/view/nl/strings.php index 66937c644c..f535f54be0 100644 --- a/view/nl/strings.php +++ b/view/nl/strings.php @@ -5,193 +5,128 @@ function string_plural_select_nl($n){ return ($n != 1);; }} ; -$a->strings["This entry was edited"] = ""; -$a->strings["Private Message"] = "Privébericht"; -$a->strings["Edit"] = "Bewerken"; -$a->strings["Select"] = "Kies"; -$a->strings["Delete"] = "Verwijder"; -$a->strings["save to folder"] = "Bewaren in map"; -$a->strings["add star"] = "ster toevoegen"; -$a->strings["remove star"] = "ster verwijderen"; -$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; -$a->strings["starred"] = "met ster"; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; -$a->strings["add tag"] = "label toevoegen"; -$a->strings["I like this (toggle)"] = "Vind ik leuk"; -$a->strings["like"] = "leuk"; -$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -$a->strings["dislike"] = "niet leuk"; -$a->strings["Share this"] = "Delen"; -$a->strings["share"] = "Delen"; -$a->strings["Categories:"] = "Categorieën:"; -$a->strings["Filed under:"] = "Bewaard onder:"; -$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -$a->strings["to"] = "aan"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "wall-to-wall"; -$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; -$a->strings["%s from %s"] = "%s van %s"; -$a->strings["Comment"] = "Reacties"; -$a->strings["Please wait"] = "Even geduld"; -$a->strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties", +$a->strings["%d contact edited."] = array( + 0 => "", + 1 => "", ); -$a->strings["comment"] = array( - 0 => "reactie", - 1 => "reacties", -); -$a->strings["show more"] = "toon meer"; -$a->strings["This is you"] = "Dit ben jij"; -$a->strings["Submit"] = "Opslaan"; -$a->strings["Bold"] = "Vet"; -$a->strings["Italic"] = "Cursief"; -$a->strings["Underline"] = "Onderstrepen"; -$a->strings["Quote"] = "Citeren"; -$a->strings["Code"] = "Broncode"; -$a->strings["Image"] = "Afbeelding"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Voorvertoning"; -$a->strings["Clone this project:"] = ""; -$a->strings["Click here to download"] = ""; -$a->strings["This project is empty!"] = ""; -$a->strings["Projects"] = ""; -$a->strings["add new"] = ""; -$a->strings["delete"] = ""; -$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = ""; -$a->strings["Home"] = "Tijdlijn"; -$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; -$a->strings["Profile"] = "Profiel"; -$a->strings["Your profile page"] = "Jouw profiel pagina"; -$a->strings["Photos"] = "Foto's"; -$a->strings["Your photos"] = "Jouw foto's"; -$a->strings["Events"] = "Gebeurtenissen"; -$a->strings["Your events"] = "Jouw gebeurtenissen"; -$a->strings["Personal notes"] = "Persoonlijke nota's"; -$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; -$a->strings["Community"] = "Website"; -$a->strings["don't show"] = "niet tonen"; -$a->strings["show"] = "tonen"; -$a->strings["Theme settings"] = "Thema-instellingen"; -$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; -$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in"; -$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. "; -$a->strings["Set color scheme"] = "Stel kleurenschema in"; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Community Pages"] = "Forum/groepspagina's"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Forum/groepsprofielen"; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = "Diensten verbinden"; -$a->strings["Find Friends"] = "Zoek vrienden"; -$a->strings["Last users"] = "Laatste gebruikers"; -$a->strings["Last photos"] = "Laatste foto's"; -$a->strings["Last likes"] = "Recent leuk gevonden"; -$a->strings["Contacts"] = "Contacten"; -$a->strings["Your contacts"] = "Jouw contacten"; -$a->strings["event"] = "gebeurtenis"; -$a->strings["status"] = "status"; -$a->strings["photo"] = "foto"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk"; -$a->strings["Contact Photos"] = "Contactfoto's"; -$a->strings["Profile Photos"] = "Profielfoto's"; -$a->strings["Local Directory"] = "Lokale gids"; -$a->strings["Global Directory"] = "Globale gids"; -$a->strings["Similar Interests"] = "Dezelfde interesses"; -$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen"; -$a->strings["Invite Friends"] = "Vrienden uitnodigen"; -$a->strings["Settings"] = "Instellingen"; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Alignment"] = "Uitlijning"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Gecentreerd"; -$a->strings["Color scheme"] = "Kleurschema"; -$a->strings["Posts font size"] = "Lettergrootte berichten"; -$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set theme width"] = "Stel breedte van het thema in"; -$a->strings["Set colour scheme"] = "Stel kleurschema in"; -$a->strings["default"] = "standaard"; -$a->strings["Midnight"] = ""; -$a->strings["Zenburn"] = ""; -$a->strings["Bootstrap"] = ""; -$a->strings["Shades of Pink"] = ""; -$a->strings["Lime and Orange"] = ""; -$a->strings["GeoCities Retro"] = ""; -$a->strings["Background Image"] = ""; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; -$a->strings["Background Color"] = "achtergrondkleur"; -$a->strings["HEX value for the background color. Don't include the #"] = ""; -$a->strings["font size"] = ""; -$a->strings["base font size for your interface"] = ""; -$a->strings["greenzero"] = ""; -$a->strings["purplezero"] = ""; -$a->strings["easterbunny"] = ""; -$a->strings["darkzero"] = ""; -$a->strings["comix"] = ""; -$a->strings["slackr"] = ""; -$a->strings["Variations"] = ""; -$a->strings["Set style"] = ""; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s"; +$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; +$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden."; +$a->strings["Contact updated."] = "Contact bijgewerkt."; +$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; $a->strings["Permission denied."] = "Toegang geweigerd"; -$a->strings["Mood"] = "Stemming"; -$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; -$a->strings["Access denied."] = "Toegang geweigerd"; -$a->strings["Item not found."] = "Item niet gevonden."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; -$a->strings["Authorize application connection"] = ""; -$a->strings["Return to your app and insert this Securty Code:"] = ""; -$a->strings["Please login to continue."] = "Log in om verder te gaan."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; +$a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; +$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; +$a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; +$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; +$a->strings["Contact has been archived"] = "Contact is gearchiveerd"; +$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; +$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; $a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nee"; -$a->strings["No valid account found."] = "Geen geldige account gevonden."; -$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; -$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; -$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; -$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; -$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; -$a->strings["click here to login"] = "klik hier om in te loggen"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tBeste %1\$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t"; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; -$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; -$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; -$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; -$a->strings["Reset"] = "Opnieuw"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; -$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; -$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen"; -$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden."; -$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; -$a->strings["Message sent."] = "Bericht verzonden."; -$a->strings["No recipient."] = "Geen ontvanger."; -$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; -$a->strings["Send Private Message"] = "Verstuur privébericht"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Upload photo"] = "Foto uploaden"; -$a->strings["Insert web link"] = "Voeg een webadres in"; +$a->strings["Cancel"] = "Annuleren"; +$a->strings["Contact has been removed."] = "Contact is verwijderd."; +$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; +$a->strings["You are sharing with %s"] = "Je deelt met %s"; +$a->strings["%s is sharing with you"] = "%s deelt met jou"; +$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; +$a->strings["Never"] = "Nooit"; +$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; +$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; +$a->strings["Suggest friends"] = "Stel vrienden voor"; +$a->strings["Network type: %s"] = "Netwerk type: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d gedeeld contact", + 1 => "%d gedeelde contacten", +); +$a->strings["View all contacts"] = "Alle contacten zien"; +$a->strings["Unblock"] = "Blokkering opheffen"; +$a->strings["Block"] = "Blokkeren"; +$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; +$a->strings["Unignore"] = "Negeer niet meer"; +$a->strings["Ignore"] = "Negeren"; +$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; +$a->strings["Unarchive"] = "Archiveer niet meer"; +$a->strings["Archive"] = "Archiveer"; +$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; +$a->strings["Repair"] = "Herstellen"; +$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; +$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Disabled"] = "Uitgeschakeld"; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Contact Editor"] = "Contactbewerker"; +$a->strings["Submit"] = "Opslaan"; +$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "; +$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; +$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; +$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; +$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; +$a->strings["Ignore contact"] = "Negeer contact"; +$a->strings["Repair URL settings"] = "Repareer URL-instellingen"; +$a->strings["View conversations"] = "Toon conversaties"; +$a->strings["Delete contact"] = "Verwijder contact"; +$a->strings["Last update:"] = "Laatste wijziging:"; +$a->strings["Update public posts"] = "Openbare posts aanpassen"; +$a->strings["Update now"] = "Wijzig nu"; +$a->strings["Connect/Follow"] = "Verbind/Volg"; +$a->strings["Currently blocked"] = "Op dit moment geblokkeerd"; +$a->strings["Currently ignored"] = "Op dit moment genegeerd"; +$a->strings["Currently archived"] = "Op dit moment gearchiveerd"; +$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn"; +$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten"; +$a->strings["Send a notification of every new post of this contact"] = ""; +$a->strings["Blacklisted keywords"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["Profile URL"] = "Profiel url"; +$a->strings["Suggestions"] = "Voorstellen"; +$a->strings["Suggest potential friends"] = "Stel vrienden voor"; +$a->strings["All Contacts"] = "Alle Contacten"; +$a->strings["Show all contacts"] = "Toon alle contacten"; +$a->strings["Unblocked"] = "Niet geblokkeerd"; +$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten"; +$a->strings["Blocked"] = "Geblokkeerd"; +$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; +$a->strings["Ignored"] = "Genegeerd"; +$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; +$a->strings["Archived"] = "Gearchiveerd"; +$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; +$a->strings["Contacts"] = "Contacten"; +$a->strings["Search your contacts"] = "Doorzoek je contacten"; +$a->strings["Finding: "] = "Gevonden:"; +$a->strings["Find"] = "Zoek"; +$a->strings["Update"] = "Wijzigen"; +$a->strings["Delete"] = "Verwijder"; +$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap"; +$a->strings["is a fan of yours"] = "Is een fan van jou"; +$a->strings["you are a fan of"] = "Jij bent een fan van"; +$a->strings["Edit contact"] = "Contact bewerken"; +$a->strings["No profile"] = "Geen profiel"; +$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; +$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; +$a->strings["Post successful."] = "Bericht succesvol geplaatst."; +$a->strings["Permission denied"] = "Toegang geweigerd"; +$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; +$a->strings["Profile Visibility Editor"] = ""; +$a->strings["Profile"] = "Profiel"; +$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; +$a->strings["Visible To"] = "Zichtbaar voor"; +$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; +$a->strings["Item not found."] = "Item niet gevonden."; +$a->strings["Public access denied."] = "Niet vrij toegankelijk"; +$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; +$a->strings["Item has been removed."] = "Item is verwijderd."; $a->strings["Welcome to Friendica"] = "Welkom bij Friendica"; $a->strings["New Member Checklist"] = "Checklist voor nieuwe leden"; $a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen."; $a->strings["Getting Started"] = "Aan de slag"; $a->strings["Friendica Walk-Through"] = "Doorloop Friendica"; $a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden."; +$a->strings["Settings"] = "Instellingen"; $a->strings["Go to Your Settings"] = "Ga naar je instellingen"; $a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web."; $a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden."; @@ -221,161 +156,160 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s $a->strings["Getting Help"] = "Hulp krijgen"; $a->strings["Go to the Help Section"] = "Ga naar de help"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma."; -$a->strings["Remove term"] = "Verwijder zoekterm"; -$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -$a->strings["Public access denied."] = "Niet vrij toegankelijk"; -$a->strings["Search"] = "Zoeken"; -$a->strings["No results."] = "Geen resultaten."; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; -$a->strings["Item not available."] = "Item niet beschikbaar"; -$a->strings["Item was not found."] = "Item niet gevonden"; -$a->strings["Account approved."] = "Account goedgekeurd."; -$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -$a->strings["Please login."] = "Inloggen."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; -$a->strings["Import"] = "Importeren"; -$a->strings["Move account"] = "Account verplaatsen"; -$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Deze functie is experimenteel. We kunnen geen contacten van het OStatus netwerk (statusnet/identi.ca) of van Diaspora importeren."; -$a->strings["Account file"] = "Account bestand"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; -$a->strings["Visible to:"] = "Zichtbaar voor:"; -$a->strings["No profile"] = "Geen profiel"; -$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; -$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; -$a->strings["Source input: "] = "Bron ingave:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):"; -$a->strings["bb2html: "] = "bb2html:"; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk"; -$a->strings["Post successful."] = "Bericht succesvol geplaatst."; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Tijdsconversie"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; -$a->strings["UTC time: %s"] = "UTC tijd: %s"; -$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; -$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s"; -$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; -$a->strings["Save to Folder:"] = "Bewaren in map:"; -$a->strings["- select -"] = "- Kies -"; -$a->strings["Save"] = "Bewaren"; -$a->strings["Poke/Prod"] = "Aanstoten/porren"; -$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; -$a->strings["Recipient"] = "Ontvanger"; -$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -$a->strings["Make this post private"] = "Dit bericht privé maken"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; +$a->strings["Login failed."] = "Login mislukt."; +$a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt."; +$a->strings["Profile Photos"] = "Profielfoto's"; +$a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."; +$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; +$a->strings["Image exceeds size limit of %s"] = ""; +$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; +$a->strings["Upload File:"] = "Upload bestand:"; +$a->strings["Select a profile:"] = "Kies een profiel:"; +$a->strings["Upload"] = "Uploaden"; +$a->strings["or"] = "of"; +$a->strings["skip this step"] = "Deze stap overslaan"; +$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums"; +$a->strings["Crop Image"] = "Afbeelding bijsnijden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat."; +$a->strings["Done Editing"] = "Wijzigingen compleet"; +$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt."; +$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "status"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt %3\$s van %2\$s"; -$a->strings["Export account"] = "Account exporteren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; -$a->strings["Export all"] = "Alles exporteren"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; -$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; -$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; -$a->strings["Applications"] = "Toepassingen"; -$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; -$a->strings["Nothing new here"] = "Niets nieuw hier"; -$a->strings["Clear notifications"] = "Notificaties verwijderen"; -$a->strings["Cancel"] = "Annuleren"; $a->strings["Tag removed"] = "Label verwijderd"; $a->strings["Remove Item Tag"] = "Verwijder label van item"; $a->strings["Select a tag to remove: "] = "Selecteer een label om te verwijderen: "; $a->strings["Remove"] = "Verwijderen"; -$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."; -$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; -$a->strings["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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."; -$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders"; -$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed"; -$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; -$a->strings["Add"] = "Toevoegen"; -$a->strings["No entries."] = "Geen gegevens."; -$a->strings["Visit %s's profile [%s]"] = "Bekijk het profiel van %s [%s]"; -$a->strings["Edit contact"] = "Contact bewerken"; -$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; -$a->strings["Files"] = "Bestanden"; -$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; -$a->strings["Remove My Account"] = "Verwijder mijn account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; -$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; +$a->strings["Subsribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["Done"] = "Klaar"; +$a->strings["success"] = "Succesvol"; +$a->strings["failed"] = "Mislukt"; +$a->strings["ignored"] = "Verboden"; +$a->strings["Keep this window open until done."] = "Houd dit scherm open tot het klaar is"; +$a->strings["Save to Folder:"] = "Bewaren in map:"; +$a->strings["- select -"] = "- Kies -"; +$a->strings["Save"] = "Bewaren"; +$a->strings["Submit Request"] = "Aanvraag indienen"; +$a->strings["You already added this contact."] = "Je hebt deze kontakt al toegevoegd"; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = ""; +$a->strings["OStatus support is disabled. Contact can't be added."] = ""; +$a->strings["The network type couldn't be detected. Contact can't be added."] = ""; +$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; +$a->strings["Does %s know you?"] = "Kent %s jou?"; +$a->strings["No"] = "Nee"; +$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; +$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; +$a->strings["Location:"] = "Plaats:"; +$a->strings["About:"] = "Over:"; +$a->strings["Tags:"] = "Labels:"; +$a->strings["Contact added"] = "Contact toegevoegd"; +$a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden."; +$a->strings["Empty post discarded."] = "Lege post weggegooid."; +$a->strings["Wall Photos"] = ""; +$a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."; +$a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."; +$a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst."; +$a->strings["Group created."] = "Groep aangemaakt."; +$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; +$a->strings["Group not found."] = "Groep niet gevonden."; +$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; +$a->strings["Save Group"] = "Bewaar groep"; +$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; +$a->strings["Group Name: "] = "Groepsnaam:"; +$a->strings["Group removed."] = "Groep verwijderd."; +$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; +$a->strings["Group Editor"] = "Groepsbewerker"; +$a->strings["Members"] = "Leden"; +$a->strings["You must be logged in to use addons. "] = "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "; +$a->strings["Applications"] = "Toepassingen"; +$a->strings["No installed applications."] = "Geen toepassingen geïnstalleerd"; +$a->strings["Profile not found."] = "Profiel niet gevonden"; $a->strings["Contact not found."] = "Contact niet gevonden"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; +$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; +$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; +$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; +$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; +$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; +$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; +$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; +$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; +$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; +$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; +$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; +$a->strings["Unable to update your contact profile details on our system"] = ""; +$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; +$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; +$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; +$a->strings["Do you really want to delete this video?"] = "Wil je deze video echt verwijderen?"; +$a->strings["Delete Video"] = "Verwijder video"; +$a->strings["No videos selected"] = "Geen video's geselecteerd"; +$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +$a->strings["View Video"] = "Bekijk Video"; +$a->strings["View Album"] = "Album bekijken"; +$a->strings["Recent Videos"] = "Recente video's"; +$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s labelde %3\$s van %2\$s met %4\$s"; $a->strings["Friend suggestion sent."] = "Vriendschapsvoorstel verzonden."; $a->strings["Suggest Friends"] = "Stel vrienden voor"; $a->strings["Suggest a friend for %s"] = "Stel een vriend voor aan %s"; -$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; -$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; -$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; -$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; -$a->strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; -$a->strings["Send invitations"] = "Verstuur uitnodigingen"; -$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; -$a->strings["Manage Identities and/or Pages"] = "Beheer Identiteiten en/of Pagina's"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen."; -$a->strings["Select an identity to manage: "] = "Selecteer een identiteit om te beheren:"; -$a->strings["Welcome to %s"] = "Welkom op %s"; -$a->strings["New Message"] = "Nieuw Bericht"; -$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; -$a->strings["Messages"] = "Privéberichten"; -$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; -$a->strings["Message deleted."] = "Bericht verwijderd."; -$a->strings["Conversation removed."] = "Gesprek verwijderd."; -$a->strings["No messages."] = "Geen berichten."; -$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; -$a->strings["You and %s"] = "Jij en %s"; -$a->strings["%s and You"] = "%s en jij"; -$a->strings["Delete conversation"] = "Verwijder gesprek"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d bericht", - 1 => "%d berichten", -); -$a->strings["Message not available."] = "Bericht niet beschikbaar."; -$a->strings["Delete message"] = "Verwijder bericht"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; -$a->strings["Send Reply"] = "Verstuur Antwoord"; +$a->strings["Invalid request."] = ""; +$a->strings["No valid account found."] = "Geen geldige account gevonden."; +$a->strings["Password reset request issued. Check your email."] = "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$a->strings["Password reset requested at %s"] = "Op %s werd gevraagd je wachtwoord opnieuw in te stellen"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld."; +$a->strings["Password Reset"] = "Wachtwoord opnieuw instellen"; +$a->strings["Your password has been reset as requested."] = "Je wachtwoord is opnieuw ingesteld zoals gevraagd."; +$a->strings["Your new password is"] = "Je nieuwe wachtwoord is"; +$a->strings["Save or copy your new password - and then"] = "Bewaar of kopieer je nieuw wachtwoord - en dan"; +$a->strings["click here to login"] = "klik hier om in te loggen"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tBeste %1\$s,\n\t\t\t\t\tZoals gevraagd werd je wachtwoord aangepast. Houd deze\n\t\t\t\tinformatie bij (of verander je wachtwoord naar\n\t\t\t\tiets dat je zal onthouden).\n\t\t\t"; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; +$a->strings["Your password has been changed at %s"] = "Je wachtwoord is veranderd op %s"; +$a->strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies."; +$a->strings["Nickname or Email: "] = "Bijnaam of e-mail:"; +$a->strings["Reset"] = "Opnieuw"; +$a->strings["event"] = "gebeurtenis"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s leuk"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt het %3\$s van %2\$s niet leuk"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = ""; +$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; +$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; +$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; $a->strings["No contacts."] = "Geen contacten."; $a->strings["View Contacts"] = "Bekijk contacten"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol fout. Geen ID Gevonden."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account niet gevonden, en OpenID-registratie is niet toegelaten op deze website."; -$a->strings["Login failed."] = "Login mislukt."; -$a->strings["Not available."] = "Niet beschikbaar"; -$a->strings["Help:"] = "Help:"; -$a->strings["Help"] = "Help"; -$a->strings["Not Found"] = "Niet gevonden"; -$a->strings["Page not found."] = "Pagina niet gevonden"; $a->strings["Invalid request identifier."] = "Ongeldige request identifier."; $a->strings["Discard"] = "Verwerpen"; -$a->strings["Ignore"] = "Negeren"; $a->strings["System"] = "Systeem"; $a->strings["Network"] = "Netwerk"; $a->strings["Personal"] = "Persoonlijk"; +$a->strings["Home"] = "Tijdlijn"; $a->strings["Introductions"] = "Verzoeken"; $a->strings["Show Ignored Requests"] = "Toon genegeerde verzoeken"; $a->strings["Hide Ignored Requests"] = "Verberg genegeerde verzoeken"; $a->strings["Notification type: "] = "Notificatiesoort:"; $a->strings["Friend Suggestion"] = "Vriendschapsvoorstel"; $a->strings["suggested by %s"] = "Voorgesteld door %s"; -$a->strings["Hide this contact from others"] = "Verberg dit contact voor anderen"; $a->strings["Post a new friend activity"] = "Bericht over een nieuwe vriend"; $a->strings["if applicable"] = "Indien toepasbaar"; $a->strings["Approve"] = "Goedkeuren"; @@ -389,6 +323,7 @@ $a->strings["Sharer"] = "Deler"; $a->strings["Fan/Admirer"] = "Fan/Bewonderaar"; $a->strings["Friend/Connect Request"] = "Vriendschapsverzoek"; $a->strings["New Follower"] = "Nieuwe Volger"; +$a->strings["Gender:"] = "Geslacht:"; $a->strings["No introductions."] = "Geen vriendschaps- of connectieverzoeken."; $a->strings["Notifications"] = "Notificaties"; $a->strings["%s liked %s's post"] = "%s vond het bericht van %s leuk"; @@ -404,12 +339,93 @@ $a->strings["No more personal notifications."] = "Geen persoonlijke notificaties $a->strings["Personal Notifications"] = "Persoonlijke notificaties"; $a->strings["No more home notifications."] = "Geen tijdlijn-notificaties meer"; $a->strings["Home Notifications"] = "Tijdlijn-notificaties"; +$a->strings["Source (bbcode) text:"] = "Bron (bbcode) tekst:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Bron (Diaspora) tekst om naar BBCode om te zetten:"; +$a->strings["Source input: "] = "Bron ingave:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (ruwe HTML):"; +$a->strings["bb2html: "] = "bb2html:"; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Bron ingave (Diaspora formaat):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Nothing new here"] = "Niets nieuw hier"; +$a->strings["Clear notifications"] = "Notificaties verwijderen"; +$a->strings["New Message"] = "Nieuw Bericht"; +$a->strings["No recipient selected."] = "Geen ontvanger geselecteerd."; +$a->strings["Unable to locate contact information."] = "Ik kan geen contact informatie vinden."; +$a->strings["Message could not be sent."] = "Bericht kon niet verzonden worden."; +$a->strings["Message collection failure."] = "Fout bij het verzamelen van berichten."; +$a->strings["Message sent."] = "Bericht verzonden."; +$a->strings["Messages"] = "Privéberichten"; +$a->strings["Do you really want to delete this message?"] = "Wil je echt dit bericht verwijderen?"; +$a->strings["Message deleted."] = "Bericht verwijderd."; +$a->strings["Conversation removed."] = "Gesprek verwijderd."; +$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:"; +$a->strings["Send Private Message"] = "Verstuur privébericht"; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Your message:"] = "Jouw bericht:"; +$a->strings["Upload photo"] = "Foto uploaden"; +$a->strings["Insert web link"] = "Voeg een webadres in"; +$a->strings["Please wait"] = "Even geduld"; +$a->strings["No messages."] = "Geen berichten."; +$a->strings["Message not available."] = "Bericht niet beschikbaar."; +$a->strings["Delete message"] = "Verwijder bericht"; +$a->strings["Delete conversation"] = "Verwijder gesprek"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender."; +$a->strings["Send Reply"] = "Verstuur Antwoord"; +$a->strings["Unknown sender - %s"] = "Onbekende afzender - %s"; +$a->strings["You and %s"] = "Jij en %s"; +$a->strings["%s and You"] = "%s en jij"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d bericht", + 1 => "%d berichten", +); +$a->strings["[Embedded content - reload page to view]"] = "[Ingebedde inhoud - herlaad pagina om het te bekijken]"; +$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; +$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; +$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; +$a->strings["Refetch contact data"] = ""; +$a->strings["Name"] = "Naam"; +$a->strings["Account Nickname"] = "Bijnaam account"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; +$a->strings["Account URL"] = "URL account"; +$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; +$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging"; +$a->strings["Notification Endpoint URL"] = ""; +$a->strings["Poll/Feed URL"] = "URL poll/feed"; +$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Login"] = "Login"; +$a->strings["The post was created"] = ""; +$a->strings["Access denied."] = "Toegang geweigerd"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["View Profile"] = "Bekijk profiel"; +$a->strings["People Search - %s"] = ""; +$a->strings["No matches"] = "Geen resultaten"; +$a->strings["Photos"] = "Foto's"; +$a->strings["Contact Photos"] = "Contactfoto's"; +$a->strings["Files"] = "Bestanden"; +$a->strings["Contacts who are not members of a group"] = "Contacten die geen leden zijn van een groep"; $a->strings["Theme settings updated."] = "Thema-instellingen aangepast."; $a->strings["Site"] = "Website"; $a->strings["Users"] = "Gebruiker"; $a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Thema's"; $a->strings["DB updates"] = "DB aanpassingen"; +$a->strings["Inspect Queue"] = ""; $a->strings["Logs"] = "Logs"; $a->strings["probe address"] = ""; $a->strings["check webfinger"] = ""; @@ -417,6 +433,13 @@ $a->strings["Admin"] = "Beheer"; $a->strings["Plugin Features"] = "Plugin Functies"; $a->strings["diagnostics"] = ""; $a->strings["User registrations waiting for confirmation"] = "Gebruikersregistraties wachten op bevestiging"; +$a->strings["Administration"] = "Beheer"; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = ""; +$a->strings["Recipient Profile"] = ""; +$a->strings["Created"] = ""; +$a->strings["Last Tried"] = ""; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; $a->strings["Normal Account"] = "Normaal account"; $a->strings["Soapbox Account"] = "Zeepkist-account"; $a->strings["Community/Celebrity Account"] = "Account voor een groep/forum of beroemdheid"; @@ -424,24 +447,29 @@ $a->strings["Automatic Friend Account"] = "Automatisch Vriendschapsaccount"; $a->strings["Blog Account"] = "Blog Account"; $a->strings["Private Forum"] = "Privéforum/-groep"; $a->strings["Message queues"] = "Bericht-wachtrijen"; -$a->strings["Administration"] = "Beheer"; $a->strings["Summary"] = "Samenvatting"; $a->strings["Registered users"] = "Geregistreerde gebruikers"; $a->strings["Pending registrations"] = "Registraties die in de wacht staan"; $a->strings["Version"] = "Versie"; $a->strings["Active plugins"] = "Actieve plug-ins"; $a->strings["Can not parse base url. Must have at least ://"] = ""; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; $a->strings["Site settings updated."] = "Site instellingen gewijzigd."; $a->strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; $a->strings["No community page"] = ""; $a->strings["Public postings from users of this site"] = ""; $a->strings["Global community page"] = ""; -$a->strings["Never"] = "Nooit"; $a->strings["At post arrival"] = ""; $a->strings["Frequently"] = "Frequent"; $a->strings["Hourly"] = "elk uur"; $a->strings["Twice daily"] = "Twee keer per dag"; $a->strings["Daily"] = "dagelijks"; +$a->strings["Users, Global Contacts"] = ""; +$a->strings["Users, Global Contacts/fallback"] = ""; +$a->strings["One month"] = ""; +$a->strings["Three months"] = ""; +$a->strings["Half a year"] = ""; +$a->strings["One year"] = ""; $a->strings["Multi user instance"] = "Server voor meerdere gebruikers"; $a->strings["Closed"] = "Gesloten"; $a->strings["Requires approval"] = "Toestemming vereist"; @@ -454,16 +482,20 @@ $a->strings["Registration"] = "Registratie"; $a->strings["File upload"] = "Uploaden bestand"; $a->strings["Policies"] = "Beleid"; $a->strings["Advanced"] = "Geavanceerd"; +$a->strings["Auto Discovered Contact Directory"] = ""; $a->strings["Performance"] = "Performantie"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; $a->strings["Site name"] = "Site naam"; $a->strings["Host name"] = ""; $a->strings["Sender Email"] = ""; +$a->strings["The email address your server shall use to send notification emails from."] = ""; $a->strings["Banner/Logo"] = "Banner/Logo"; $a->strings["Shortcut icon"] = ""; +$a->strings["Link to an icon that will be used for browsers."] = ""; $a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = ""; $a->strings["Additional Info"] = ""; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; $a->strings["System language"] = "Systeemtaal"; $a->strings["System theme"] = "Systeem thema"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaard systeem thema - kan door gebruikersprofielen veranderd worden - verander thema instellingen"; @@ -500,8 +532,8 @@ $a->strings["Block public"] = "Openbare toegang blokkeren"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."; $a->strings["Force publish"] = "Dwing publiceren af"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."; -$a->strings["Global directory update URL"] = "Update-adres van de globale gids"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL om de globale gids aan te passen. Als dit niet is ingevuld, is de globale gids volledig onbeschikbaar voor deze toepassing."; +$a->strings["Global directory URL"] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; $a->strings["Allow threaded items"] = "Sta threads in conversaties toe"; $a->strings["Allow infinite level threading for items on this site."] = "Sta oneindige niveaus threads in conversaties op deze website toe."; $a->strings["Private posts by default for new users"] = "Privéberichten als standaard voor nieuwe gebruikers"; @@ -530,6 +562,8 @@ $a->strings["Enable OStatus support"] = "Activeer OStatus ondersteuning"; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; $a->strings["OStatus conversation completion interval"] = ""; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["OStatus support can only be enabled if threading is enabled."] = ""; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = ""; $a->strings["Enable Diaspora support"] = "Activeer Diaspora ondersteuning"; $a->strings["Provide built-in Diaspora network compatibility."] = "Bied ingebouwde ondersteuning voor het Diaspora netwerk."; $a->strings["Only allow Friendica contacts"] = "Laat alleen Friendica contacten toe"; @@ -548,6 +582,18 @@ $a->strings["Maximum Load Average"] = "Maximum gemiddelde belasting"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximum systeembelasting voordat aflever- en poll-processen uitgesteld worden - standaard 50."; $a->strings["Maximum Load Average (Frontend)"] = ""; $a->strings["Maximum system load before the frontend quits service - default 50."] = ""; +$a->strings["Periodical check of global contacts"] = ""; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; +$a->strings["Timeframe for fetching global contacts"] = ""; +$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; +$a->strings["Search the local directory"] = ""; +$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; +$a->strings["Publish server information"] = ""; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; $a->strings["Use MySQL full text engine"] = "Gebruik de tekst-zoekfunctie van MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activeert de zoekmotor. Dit maakt zoeken sneller, maar het kan alleen zoeken naar teksten van minstens vier letters."; $a->strings["Suppress Language"] = ""; @@ -555,13 +601,17 @@ $a->strings["Suppress language information in meta information about a posting." $a->strings["Suppress Tags"] = ""; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; $a->strings["Path to item cache"] = "Pad naar cache voor items"; +$a->strings["The item caches buffers generated bbcode and external images."] = ""; $a->strings["Cache duration in seconds"] = "Cache tijdsduur in seconden"; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; $a->strings["Maximum numbers of comments per post"] = ""; $a->strings["How much comments should be shown for each post? Default value is 100."] = ""; $a->strings["Path for lock file"] = "Pad voor lock bestand"; +$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = ""; $a->strings["Temp path"] = "Tijdelijk pad"; +$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = ""; $a->strings["Base path to installation"] = "Basispad voor installatie"; +$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = ""; $a->strings["Disable picture proxy"] = ""; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; $a->strings["Enable old style pager"] = ""; @@ -569,8 +619,11 @@ $a->strings["The old style pager has page numbers but slows down massively the p $a->strings["Only search in tags"] = ""; $a->strings["On large systems the text search can slow down the system extremely."] = ""; $a->strings["New base url"] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; $a->strings["RINO Encryption"] = ""; $a->strings["Encryption layer between nodes."] = ""; +$a->strings["Embedly API key"] = ""; +$a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; $a->strings["Update has been marked successful"] = "Wijziging succesvol gemarkeerd "; $a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = ""; @@ -603,12 +656,9 @@ $a->strings["select all"] = "Alles selecteren"; $a->strings["User registrations waiting for confirm"] = "Gebruikersregistraties wachten op een bevestiging"; $a->strings["User waiting for permanent deletion"] = ""; $a->strings["Request date"] = "Registratiedatum"; -$a->strings["Name"] = "Naam"; $a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Geen registraties."; $a->strings["Deny"] = "Weiger"; -$a->strings["Block"] = "Blokkeren"; -$a->strings["Unblock"] = "Blokkering opheffen"; $a->strings["Site admin"] = "Sitebeheerder"; $a->strings["Account expired"] = "Account verlopen"; $a->strings["New User"] = "Nieuwe gebruiker"; @@ -630,8 +680,10 @@ $a->strings["Enable"] = "Inschakelen"; $a->strings["Toggle"] = "Schakelaar"; $a->strings["Author: "] = "Auteur:"; $a->strings["Maintainer: "] = "Onderhoud:"; +$a->strings["Reload active plugins"] = ""; $a->strings["No themes found."] = "Geen thema's gevonden."; $a->strings["Screenshot"] = "Schermafdruk"; +$a->strings["Reload active themes"] = ""; $a->strings["[Experimental]"] = "[Experimenteel]"; $a->strings["[Unsupported]"] = "[Niet ondersteund]"; $a->strings["Log settings updated."] = "Log instellingen gewijzigd"; @@ -640,144 +692,404 @@ $a->strings["Enable Debugging"] = ""; $a->strings["Log file"] = "Logbestand"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "De webserver moet hier kunnen schrijven. Relatief t.o.v. van de hoogste folder binnen uw Friendica-installatie."; $a->strings["Log level"] = "Log niveau"; -$a->strings["Update now"] = "Wijzig nu"; $a->strings["Close"] = "Afsluiten"; $a->strings["FTP Host"] = "FTP Server"; $a->strings["FTP Path"] = "FTP Pad"; $a->strings["FTP User"] = "FTP Gebruiker"; $a->strings["FTP Password"] = "FTP wachtwoord"; -$a->strings["Friends of %s"] = "Vrienden van %s"; -$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; -$a->strings["Common Friends"] = "Gedeelde Vrienden"; -$a->strings["No contacts in common."] = "Geen gedeelde contacten."; -$a->strings["%d contact edited."] = array( - 0 => "", - 1 => "", +$a->strings["Search Results For: %s"] = ""; +$a->strings["Remove term"] = "Verwijder zoekterm"; +$a->strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +$a->strings["add"] = "toevoegen"; +$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; +$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; +$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; +$a->strings["New"] = "Nieuw"; +$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +$a->strings["Shared Links"] = "Gedeelde links"; +$a->strings["Interesting Links"] = "Interessante links"; +$a->strings["Starred"] = "Met ster"; +$a->strings["Favourite Posts"] = "Favoriete berichten"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", + 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", ); -$a->strings["Could not access contact record."] = "Kon geen toegang krijgen tot de contactgegevens"; -$a->strings["Could not locate selected profile."] = "Kon het geselecteerde profiel niet vinden."; -$a->strings["Contact updated."] = "Contact bijgewerkt."; -$a->strings["Failed to update contact record."] = "Ik kon de contactgegevens niet aanpassen."; -$a->strings["Contact has been blocked"] = "Contact is geblokkeerd"; -$a->strings["Contact has been unblocked"] = "Contact is gedeblokkeerd"; -$a->strings["Contact has been ignored"] = "Contact wordt genegeerd"; -$a->strings["Contact has been unignored"] = "Contact wordt niet meer genegeerd"; -$a->strings["Contact has been archived"] = "Contact is gearchiveerd"; -$a->strings["Contact has been unarchived"] = "Contact is niet meer gearchiveerd"; -$a->strings["Do you really want to delete this contact?"] = "Wil je echt dit contact verwijderen?"; -$a->strings["Contact has been removed."] = "Contact is verwijderd."; -$a->strings["You are mutual friends with %s"] = "Je bent wederzijds bevriend met %s"; -$a->strings["You are sharing with %s"] = "Je deelt met %s"; -$a->strings["%s is sharing with you"] = "%s deelt met jou"; -$a->strings["Private communications are not available for this contact."] = "Privécommunicatie met dit contact is niet beschikbaar."; -$a->strings["(Update was successful)"] = "(Wijziging is geslaagd)"; -$a->strings["(Update was not successful)"] = "(Wijziging is niet geslaagd)"; -$a->strings["Suggest friends"] = "Stel vrienden voor"; -$a->strings["Network type: %s"] = "Netwerk type: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d gedeeld contact", - 1 => "%d gedeelde contacten", -); -$a->strings["View all contacts"] = "Alle contacten zien"; -$a->strings["Toggle Blocked status"] = "Schakel geblokkeerde status"; -$a->strings["Unignore"] = "Negeer niet meer"; -$a->strings["Toggle Ignored status"] = "Schakel negeerstatus"; -$a->strings["Unarchive"] = "Archiveer niet meer"; -$a->strings["Archive"] = "Archiveer"; -$a->strings["Toggle Archive status"] = "Schakel archiveringsstatus"; -$a->strings["Repair"] = "Herstellen"; -$a->strings["Advanced Contact Settings"] = "Geavanceerde instellingen voor contacten"; -$a->strings["Communications lost with this contact!"] = "Communicatie met dit contact is verbroken!"; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Disabled"] = ""; -$a->strings["Fetch information"] = ""; -$a->strings["Fetch information and keywords"] = ""; -$a->strings["Contact Editor"] = "Contactbewerker"; -$a->strings["Profile Visibility"] = "Zichtbaarheid profiel"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat getoond moet worden wanneer %s uw profiel bezoekt. "; -$a->strings["Contact Information / Notes"] = "Contactinformatie / aantekeningen"; -$a->strings["Edit contact notes"] = "Wijzig aantekeningen over dit contact"; -$a->strings["Block/Unblock contact"] = "Blokkeer/deblokkeer contact"; -$a->strings["Ignore contact"] = "Negeer contact"; -$a->strings["Repair URL settings"] = "Repareer URL-instellingen"; -$a->strings["View conversations"] = "Toon conversaties"; -$a->strings["Delete contact"] = "Verwijder contact"; -$a->strings["Last update:"] = "Laatste wijziging:"; -$a->strings["Update public posts"] = "Openbare posts aanpassen"; -$a->strings["Currently blocked"] = "Op dit moment geblokkeerd"; -$a->strings["Currently ignored"] = "Op dit moment genegeerd"; -$a->strings["Currently archived"] = "Op dit moment gearchiveerd"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antwoorden of 'vind ik leuk's op je openbare posts kunnen nog zichtbaar zijn"; -$a->strings["Notification for new posts"] = "Meldingen voor nieuwe berichten"; -$a->strings["Send a notification of every new post of this contact"] = ""; -$a->strings["Blacklisted keywords"] = ""; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; -$a->strings["Suggestions"] = "Voorstellen"; -$a->strings["Suggest potential friends"] = "Stel vrienden voor"; -$a->strings["All Contacts"] = "Alle Contacten"; -$a->strings["Show all contacts"] = "Toon alle contacten"; -$a->strings["Unblocked"] = "Niet geblokkeerd"; -$a->strings["Only show unblocked contacts"] = "Toon alleen niet-geblokkeerde contacten"; -$a->strings["Blocked"] = "Geblokkeerd"; -$a->strings["Only show blocked contacts"] = "Toon alleen geblokkeerde contacten"; -$a->strings["Ignored"] = "Genegeerd"; -$a->strings["Only show ignored contacts"] = "Toon alleen genegeerde contacten"; -$a->strings["Archived"] = "Gearchiveerd"; -$a->strings["Only show archived contacts"] = "Toon alleen gearchiveerde contacten"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Toon alleen verborgen contacten"; -$a->strings["Search your contacts"] = "Doorzoek je contacten"; -$a->strings["Finding: "] = "Gevonden:"; -$a->strings["Find"] = "Zoek"; -$a->strings["Update"] = "Wijzigen"; -$a->strings["Mutual Friendship"] = "Wederzijdse vriendschap"; -$a->strings["is a fan of yours"] = "Is een fan van jou"; -$a->strings["you are a fan of"] = "Jij bent een fan van"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; $a->strings["No such group"] = "Zo'n groep bestaat niet"; $a->strings["Group is empty"] = "De groep is leeg"; $a->strings["Group: %s"] = ""; +$a->strings["Contact: %s"] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; +$a->strings["Invalid contact."] = "Ongeldig contact."; +$a->strings["No friends to display."] = "Geen vrienden om te laten zien."; +$a->strings["Forum"] = ""; +$a->strings["Friends of %s"] = "Vrienden van %s"; +$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; +$a->strings["Sun"] = ""; +$a->strings["Mon"] = ""; +$a->strings["Tue"] = ""; +$a->strings["Wed"] = ""; +$a->strings["Thu"] = ""; +$a->strings["Fri"] = ""; +$a->strings["Sat"] = ""; +$a->strings["Sunday"] = "Zondag"; +$a->strings["Monday"] = "Maandag"; +$a->strings["Tuesday"] = "Dinsdag"; +$a->strings["Wednesday"] = "Woensdag"; +$a->strings["Thursday"] = "Donderdag"; +$a->strings["Friday"] = "Vrijdag"; +$a->strings["Saturday"] = "Zaterdag"; +$a->strings["Jan"] = ""; +$a->strings["Feb"] = ""; +$a->strings["Mar"] = ""; +$a->strings["Apr"] = ""; +$a->strings["May"] = "Mei"; +$a->strings["Jun"] = ""; +$a->strings["Jul"] = ""; +$a->strings["Aug"] = ""; +$a->strings["Sept"] = ""; +$a->strings["Oct"] = ""; +$a->strings["Nov"] = ""; +$a->strings["Dec"] = ""; +$a->strings["January"] = "Januari"; +$a->strings["February"] = "Februari"; +$a->strings["March"] = "Maart"; +$a->strings["April"] = "April"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "Augustus"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "December"; +$a->strings["today"] = ""; +$a->strings["month"] = "maand"; +$a->strings["week"] = "week"; +$a->strings["day"] = "dag"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Gebeurtenis bewerken"; +$a->strings["link to source"] = "Verwijzing naar bron"; +$a->strings["Events"] = "Gebeurtenissen"; +$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; +$a->strings["Previous"] = "Vorige"; +$a->strings["Next"] = "Volgende"; +$a->strings["Event details"] = "Gebeurtenis details"; +$a->strings["Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Gebeurtenis begint:"; +$a->strings["Required"] = "Vereist"; +$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant"; +$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:"; +$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker"; +$a->strings["Description:"] = "Beschrijving:"; +$a->strings["Title:"] = "Titel:"; +$a->strings["Share this event"] = "Deel deze gebeurtenis"; +$a->strings["Preview"] = "Voorvertoning"; +$a->strings["Credits"] = ""; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = ""; +$a->strings["Select"] = "Kies"; +$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +$a->strings["%s from %s"] = "%s van %s"; $a->strings["View in context"] = "In context bekijken"; -$a->strings["Contact settings applied."] = "Contactinstellingen toegepast."; -$a->strings["Contact update failed."] = "Aanpassen van contact mislukt."; -$a->strings["Repair Contact Settings"] = "Contactinstellingen herstellen"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Gebruik nu de \"terug\"-knop in je webbrowser wanneer je niet weet wat je op deze pagina moet doen."; -$a->strings["Return to contact editor"] = "Ga terug naar contactbewerker"; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Refetch contact data"] = ""; -$a->strings["Account Nickname"] = "Bijnaam account"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Labelnaam - krijgt voorrang op naam/bijnaam"; -$a->strings["Account URL"] = "URL account"; -$a->strings["Friend Request URL"] = "URL vriendschapsverzoek"; -$a->strings["Friend Confirm URL"] = "URL vriendschapsbevestiging"; -$a->strings["Notification Endpoint URL"] = ""; -$a->strings["Poll/Feed URL"] = "URL poll/feed"; -$a->strings["New photo from this URL"] = "Nieuwe foto van deze URL"; -$a->strings["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["Profile not found."] = "Profiel niet gevonden"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Dit kan soms gebeuren als het contact door beide personen werd gevraagd, en het werd al goedgekeurd."; -$a->strings["Response from remote site was not understood."] = "Antwoord van de website op afstand werd niet begrepen."; -$a->strings["Unexpected response from remote site: "] = "Onverwacht antwoord van website op afstand:"; -$a->strings["Confirmation completed successfully."] = "Bevestiging werd correct voltooid."; -$a->strings["Remote site reported: "] = "Website op afstand berichtte: "; -$a->strings["Temporary failure. Please wait and try again."] = "Tijdelijke fout. Wacht even en probeer opnieuw."; -$a->strings["Introduction failed or was revoked."] = "Verzoek mislukt of herroepen."; -$a->strings["Unable to set contact photo."] = "Ik kan geen contact foto instellen."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is nu bevriend met %2\$s"; -$a->strings["No user record found for '%s' "] = "Geen gebruiker gevonden voor '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "De encryptie-sleutel van onze webstek is blijkbaar beschadigd."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Er werd een lege URL gegeven, of de URL kon niet ontcijferd worden door ons."; -$a->strings["Contact record was not found for you on our site."] = "We vonden op onze webstek geen contactrecord voor jou."; -$a->strings["Site public key not available in contact record for URL %s."] = "Publieke sleutel voor webstek niet beschikbaar in contactrecord voor URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Het ID dat jouw systeem aangeeft is een dubbel op ons systeem. Als je opnieuw probeert zou het moeten werken."; -$a->strings["Unable to set your contact credentials on our system."] = "Niet in staat om op dit systeem je contactreferenties in te stellen."; -$a->strings["Unable to update your contact profile details on our system"] = ""; -$a->strings["[Name Withheld]"] = "[Naam achtergehouden]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s is toegetreden tot %2\$s"; +$a->strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties", +); +$a->strings["comment"] = array( + 0 => "reactie", + 1 => "reacties", +); +$a->strings["show more"] = "toon meer"; +$a->strings["Private Message"] = "Privébericht"; +$a->strings["I like this (toggle)"] = "Vind ik leuk"; +$a->strings["like"] = "leuk"; +$a->strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +$a->strings["dislike"] = "niet leuk"; +$a->strings["Share this"] = "Delen"; +$a->strings["share"] = "Delen"; +$a->strings["This is you"] = "Dit ben jij"; +$a->strings["Comment"] = "Reacties"; +$a->strings["Bold"] = "Vet"; +$a->strings["Italic"] = "Cursief"; +$a->strings["Underline"] = "Onderstrepen"; +$a->strings["Quote"] = "Citeren"; +$a->strings["Code"] = "Broncode"; +$a->strings["Image"] = "Afbeelding"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Bewerken"; +$a->strings["add star"] = "ster toevoegen"; +$a->strings["remove star"] = "ster verwijderen"; +$a->strings["toggle star status"] = "ster toevoegen of verwijderen"; +$a->strings["starred"] = "met ster"; +$a->strings["add tag"] = "label toevoegen"; +$a->strings["save to folder"] = "Bewaren in map"; +$a->strings["to"] = "aan"; +$a->strings["Wall-to-Wall"] = "wall-to-wall"; +$a->strings["via Wall-To-Wall:"] = "via wall-to-wall"; +$a->strings["Remove My Account"] = "Verwijder mijn account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is."; +$a->strings["Please enter your password for verification:"] = "Voer je wachtwoord in voor verificatie:"; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database."; +$a->strings["Could not create table."] = "Kon tabel niet aanmaken."; +$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\"."; +$a->strings["Database already in use."] = ""; +$a->strings["System check"] = "Systeemcontrole"; +$a->strings["Check again"] = "Controleer opnieuw"; +$a->strings["Database connection"] = "Verbinding met database"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."; +$a->strings["Database Server Name"] = "Servernaam database"; +$a->strings["Database Login Name"] = "Gebruikersnaam database"; +$a->strings["Database Login Password"] = "Wachtwoord database"; +$a->strings["Database Name"] = "Naam database"; +$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."; +$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website"; +$a->strings["Site settings"] = "Website-instellingen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."; +$a->strings["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. See 'Setup the poller'"] = ""; +$a->strings["PHP executable path"] = "PATH van het PHP commando"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."; +$a->strings["Command line PHP"] = "PHP-opdrachtregel"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = "Gevonden PHP versie:"; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."; +$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."; +$a->strings["Generate encryption keys"] = ""; +$a->strings["libCurl PHP module"] = "libCurl PHP module"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +$a->strings["mysqli PHP module"] = "mysqli PHP module"; +$a->strings["mb_string PHP module"] = "mb_string PHP module"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."; +$a->strings["Error: mcrypt PHP module required but not installed."] = ""; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +$a->strings["Url rewrite is working"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."; +$a->strings["

    What next

    "] = "

    Wat nu

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["Unable to check your home location."] = "Niet in staat om je tijdlijn-locatie vast te stellen"; +$a->strings["No recipient."] = "Geen ontvanger."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Als je wilt dat %s antwoordt moet je nakijken dat de privacy-instellingen op jouw website privéberichten van onbekende afzenders toelaat."; +$a->strings["Help:"] = "Help:"; +$a->strings["Help"] = "Help"; +$a->strings["Not Found"] = "Niet gevonden"; +$a->strings["Page not found."] = "Pagina niet gevonden"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heet %2\$s van harte welkom"; +$a->strings["Welcome to %s"] = "Welkom op %s"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = ""; +$a->strings["File exceeds size limit of %s"] = ""; +$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; +$a->strings["is interested in:"] = "Is geïnteresseerd in:"; +$a->strings["Profile Match"] = "Profielmatch"; +$a->strings["link"] = "link"; +$a->strings["Not available."] = "Niet beschikbaar"; +$a->strings["Community"] = "Website"; +$a->strings["No results."] = "Geen resultaten."; +$a->strings["everybody"] = "iedereen"; +$a->strings["Additional features"] = "Extra functies"; +$a->strings["Display"] = "Weergave"; +$a->strings["Social Networks"] = "Sociale netwerken"; +$a->strings["Delegations"] = ""; +$a->strings["Connected apps"] = "Verbonden applicaties"; +$a->strings["Export personal data"] = "Persoonlijke gegevens exporteren"; +$a->strings["Remove account"] = "Account verwijderen"; +$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; +$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt.."; +$a->strings["Features updated"] = "Functies bijgewerkt"; +$a->strings["Relocate message has been send to your contacts"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."; +$a->strings["Wrong password."] = "Verkeerd wachtwoord."; +$a->strings["Password changed."] = "Wachtwoord gewijzigd."; +$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; +$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; +$a->strings[" Name too short."] = "Naam te kort."; +$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; +$a->strings[" Not valid email."] = "Geen geldig e-mailadres."; +$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; +$a->strings["Settings updated."] = "Instellingen bijgewerkt."; +$a->strings["Add application"] = "Toepassing toevoegen"; +$a->strings["Consumer Key"] = "Gebruikerssleutel"; +$a->strings["Consumer Secret"] = "Gebruikersgeheim"; +$a->strings["Redirect"] = "Doorverwijzing"; +$a->strings["Icon url"] = "URL pictogram"; +$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen."; +$a->strings["Connected Apps"] = "Verbonden applicaties"; +$a->strings["Client key starts with"] = ""; +$a->strings["No name"] = "Geen naam"; +$a->strings["Remove authorization"] = "Verwijder authorisatie"; +$a->strings["No Plugin settings configured"] = ""; +$a->strings["Plugin Settings"] = "Plugin Instellingen"; +$a->strings["Off"] = "Uit"; +$a->strings["On"] = "Aan"; +$a->strings["Additional Features"] = "Extra functies"; +$a->strings["General Social Media Settings"] = ""; +$a->strings["Disable intelligent shortening"] = ""; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["enabled"] = "ingeschakeld"; +$a->strings["disabled"] = "uitgeschakeld"; +$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; +$a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; +$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; +$a->strings["IMAP server name:"] = "IMAP server naam:"; +$a->strings["IMAP port:"] = "IMAP poort:"; +$a->strings["Security:"] = "Beveiliging:"; +$a->strings["None"] = "Geen"; +$a->strings["Email login name:"] = "E-mail login naam:"; +$a->strings["Email password:"] = "E-mail wachtwoord:"; +$a->strings["Reply-to address:"] = "Antwoord adres:"; +$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:"; +$a->strings["Action after import:"] = "Actie na importeren:"; +$a->strings["Mark as seen"] = "Als 'gelezen' markeren"; +$a->strings["Move to folder"] = "Naar map verplaatsen"; +$a->strings["Move to folder:"] = "Verplaatsen naar map:"; +$a->strings["Display Settings"] = "Scherminstellingen"; +$a->strings["Display Theme:"] = "Schermthema:"; +$a->strings["Mobile Theme:"] = "Mobiel thema:"; +$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum"; +$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:"; +$a->strings["Maximum of 100 items"] = "Maximum 100 items"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; +$a->strings["Don't show emoticons"] = "Emoticons niet tonen"; +$a->strings["Calendar"] = ""; +$a->strings["Beginning of week:"] = ""; +$a->strings["Don't show notices"] = ""; +$a->strings["Infinite scroll"] = "Oneindig scrollen"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Theme settings"] = "Thema-instellingen"; +$a->strings["User Types"] = "Gebruikerstypes"; +$a->strings["Community Types"] = "Forum/groepstypes"; +$a->strings["Normal Account Page"] = "Normale accountpagina"; +$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; +$a->strings["Soapbox Page"] = "Zeepkist-pagina"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."; +$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."; +$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."; +$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; +$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."; +$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?"; +$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?"; +$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; +$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; +$a->strings["Profile is not published."] = "Profiel is niet gepubliceerd."; +$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."; +$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen"; +$a->strings["Advanced Expiration"] = "Geavanceerd Verval:"; +$a->strings["Expire posts:"] = "Laat berichten vervallen:"; +$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:"; +$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen"; +$a->strings["Expire photos:"] = "Laat foto's vervallen:"; +$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:"; +$a->strings["Account Settings"] = "Account Instellingen"; +$a->strings["Password Settings"] = "Wachtwoord Instellingen"; +$a->strings["New Password:"] = "Nieuw Wachtwoord:"; +$a->strings["Confirm:"] = "Bevestig:"; +$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"; +$a->strings["Current Password:"] = "Huidig wachtwoord:"; +$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; +$a->strings["Password:"] = "Wachtwoord:"; +$a->strings["Basic Settings"] = "Basis Instellingen"; +$a->strings["Full Name:"] = "Volledige Naam:"; +$a->strings["Email Address:"] = "E-mailadres:"; +$a->strings["Your Timezone:"] = "Je Tijdzone:"; +$a->strings["Your Language:"] = ""; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = ""; +$a->strings["Default Post Location:"] = "Standaard locatie:"; +$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; +$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; +$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; +$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; +$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +$a->strings["Show to Groups"] = "Tonen aan groepen"; +$a->strings["Show to Contacts"] = "Tonen aan contacten"; +$a->strings["Default Private Post"] = "Standaard Privé Post"; +$a->strings["Default Public Post"] = "Standaard Publieke Post"; +$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +$a->strings["Notification Settings"] = "Notificatie Instellingen"; +$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:"; +$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"; +$a->strings["joining a forum/community"] = "Lid worden van een groep/forum"; +$a->strings["making an interesting profile change"] = "Een interessante verandering aan je profiel"; +$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; +$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; +$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; +$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; +$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; +$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; +$a->strings["Activate desktop notifications"] = ""; +$a->strings["Show desktop popup on new notifications"] = ""; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Relocate"] = ""; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; +$a->strings["Resend relocate message to contacts"] = ""; $a->strings["This introduction has already been accepted."] = "Verzoek is al goedgekeurd"; $a->strings["Profile location is not valid or does not contain profile information."] = "Profiel is ongeldig of bevat geen informatie"; $a->strings["Warning: profile location has no identifiable owner name."] = "Waarschuwing: de profiellocatie heeft geen identificeerbare eigenaar."; @@ -808,252 +1120,68 @@ $a->strings["Hide this contact"] = "Verberg dit contact"; $a->strings["Welcome home %s."] = "Welkom terug %s."; $a->strings["Please confirm your introduction/connection request to %s."] = "Bevestig je vriendschaps-/connectieverzoek voor %s."; $a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vul hier uw 'Identiteitsadres' in van een van de volgende ondersteunde communicatienetwerken:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een openbare Friendica-website te vinden, en sluit je vandaag nog aan."; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; $a->strings["Friend/Connection Request"] = "Vriendschaps-/connectieverzoek"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Voorbeelden: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Beantwoord het volgende:"; -$a->strings["Does %s know you?"] = "Kent %s jou?"; -$a->strings["Add a personal note:"] = "Voeg een persoonlijke opmerking toe:"; $a->strings["Friendica"] = "Friendica"; $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Gefedereerde Sociale Web"; -$a->strings["Diaspora"] = "Diaspora"; $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- Gebruik niet dit formulier. Vul %s in in je Diaspora zoekbalk."; -$a->strings["Your Identity Address:"] = "Adres van uw identiteit:"; -$a->strings["Submit Request"] = "Aanvraag indienen"; -$a->strings["Find on this site"] = "Op deze website zoeken"; -$a->strings["Site Directory"] = "Websitegids"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = ""; +$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; +$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; +$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; +$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; +$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; +$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Email Address: "] = "Je email adres:"; +$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; +$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; +$a->strings["Register"] = "Registreer"; +$a->strings["Import"] = "Importeren"; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["System down for maintenance"] = "Systeem onbeschikbaar wegens onderhoud"; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["Search"] = "Zoeken"; +$a->strings["Items tagged with: %s"] = ""; +$a->strings["Search results for: %s"] = ""; $a->strings["Age: "] = "Leeftijd:"; $a->strings["Gender: "] = "Geslacht:"; -$a->strings["Location:"] = "Plaats:"; -$a->strings["Gender:"] = "Geslacht:"; $a->strings["Status:"] = "Tijdlijn:"; $a->strings["Homepage:"] = "Website:"; -$a->strings["About:"] = "Over:"; +$a->strings["Global Directory"] = "Globale gids"; +$a->strings["Find on this site"] = "Op deze website zoeken"; +$a->strings["Finding:"] = ""; +$a->strings["Site Directory"] = "Websitegids"; $a->strings["No entries (some entries may be hidden)."] = "Geen gegevens (sommige gegevens kunnen verborgen zijn)."; -$a->strings["People Search - %s"] = ""; -$a->strings["No matches"] = "Geen resultaten"; -$a->strings["Access to this profile has been restricted."] = "Toegang tot dit profiel is beperkt."; -$a->strings["Item has been removed."] = "Item is verwijderd."; -$a->strings["Item not found"] = "Item niet gevonden"; -$a->strings["Edit post"] = "Bericht bewerken"; -$a->strings["upload photo"] = "Foto uploaden"; -$a->strings["Attach file"] = "Bestand bijvoegen"; -$a->strings["attach file"] = "bestand bijvoegen"; -$a->strings["web link"] = "webadres"; -$a->strings["Insert video link"] = "Voeg video toe"; -$a->strings["video link"] = "video adres"; -$a->strings["Insert audio link"] = "Voeg audio adres toe"; -$a->strings["audio link"] = "audio adres"; -$a->strings["Set your location"] = "Stel uw locatie in"; -$a->strings["set location"] = "Stel uw locatie in"; -$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser"; -$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser"; -$a->strings["Permission settings"] = "Instellingen van rechten"; -$a->strings["CC: email addresses"] = "CC: e-mailadressen"; -$a->strings["Public post"] = "Openbare post"; -$a->strings["Set title"] = "Titel plaatsen"; -$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; -$a->strings["Event can not end before it has started."] = ""; -$a->strings["Event title and start time are required."] = "Titel en begintijd van de gebeurtenis zijn vereist."; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Gebeurtenis bewerken"; -$a->strings["link to source"] = "Verwijzing naar bron"; -$a->strings["Create New Event"] = "Maak een nieuwe gebeurtenis"; -$a->strings["Previous"] = "Vorige"; -$a->strings["Next"] = "Volgende"; -$a->strings["Event details"] = "Gebeurtenis details"; -$a->strings["Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Gebeurtenis begint:"; -$a->strings["Required"] = "Vereist"; -$a->strings["Finish date/time is not known or not relevant"] = "Einddatum/tijd is niet gekend of niet relevant"; -$a->strings["Event Finishes:"] = "Gebeurtenis eindigt:"; -$a->strings["Adjust for viewer timezone"] = "Pas aan aan de tijdzone van de gebruiker"; -$a->strings["Description:"] = "Beschrijving:"; -$a->strings["Title:"] = "Titel:"; -$a->strings["Share this event"] = "Deel deze gebeurtenis"; -$a->strings["You already added this contact."] = ""; -$a->strings["Contact added"] = "Contact toegevoegd"; -$a->strings["Group created."] = "Groep aangemaakt."; -$a->strings["Could not create group."] = "Kon de groep niet aanmaken."; -$a->strings["Group not found."] = "Groep niet gevonden."; -$a->strings["Group name changed."] = "Groepsnaam gewijzigd."; -$a->strings["Permission denied"] = "Toegang geweigerd"; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = "Maak een groep contacten/vrienden aan."; -$a->strings["Group Name: "] = "Groepsnaam:"; -$a->strings["Group removed."] = "Groep verwijderd."; -$a->strings["Unable to remove group."] = "Niet in staat om groep te verwijderen."; -$a->strings["Group Editor"] = "Groepsbewerker"; -$a->strings["Members"] = "Leden"; -$a->strings["Click on a contact to add or remove."] = "Klik op een contact om het toe te voegen of te verwijderen."; -$a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = "Kon geen toegang krijgen tot de database."; -$a->strings["Could not create table."] = "Kon tabel niet aanmaken."; -$a->strings["Your Friendica site database has been installed."] = "De database van je Friendica-website is geïnstalleerd."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Zie het bestand \"INSTALL.txt\"."; -$a->strings["Database already in use."] = ""; -$a->strings["System check"] = "Systeemcontrole"; -$a->strings["Check again"] = "Controleer opnieuw"; -$a->strings["Database connection"] = "Verbinding met database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."; -$a->strings["Database Server Name"] = "Servernaam database"; -$a->strings["Database Login Name"] = "Gebruikersnaam database"; -$a->strings["Database Login Password"] = "Wachtwoord database"; -$a->strings["Database Name"] = "Naam database"; -$a->strings["Site administrator email address"] = "E-mailadres van de websitebeheerder"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."; -$a->strings["Please select a default timezone for your website"] = "Selecteer een standaard tijdzone voor uw website"; -$a->strings["Site settings"] = "Website-instellingen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Kan geen command-line-versie van PHP vinden in het PATH van de webserver."; -$a->strings["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. See 'Activating scheduled tasks'"] = "Als je geen command-line versie van PHP geïnstalleerd hebt op je server, kun je geen polling op de achtergrond gebruiken via cron. Zie 'Activeren van geplande taken'"; -$a->strings["PHP executable path"] = "PATH van het PHP commando"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Vul het volledige path in naar het php programma. Je kunt dit blanco laten om de installatie verder te zetten."; -$a->strings["Command line PHP"] = "PHP-opdrachtregel"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = "Gevonden PHP versie:"; -$a->strings["PHP cli binary"] = ""; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd."; -$a->strings["This is required for message delivery to work."] = "Dit is nodig om het verzenden van berichten mogelijk te maken."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait."; -$a->strings["Generate encryption keys"] = ""; -$a->strings["libCurl PHP module"] = "libCurl PHP module"; -$a->strings["GD graphics PHP module"] = "GD graphics PHP module"; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -$a->strings["mysqli PHP module"] = "mysqli PHP module"; -$a->strings["mb_string PHP module"] = "mb_string PHP module"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fout: PHP-module mysqli is vereist, maar niet geïnstalleerd."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Het installatieprogramma moet een bestand \".htconfig.php\" in de bovenste map van je webserver aanmaken, maar kan dit niet doen."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand .htconfig.php in je hoogste Friendica map."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Je kunt ook deze procedure overslaan, en een manuele installatie uitvoeren. Lees het bestand \"INSTALL.txt\" voor instructies."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php is schrijfbaar"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 is schrijfbaar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -$a->strings["Url rewrite is working"] = ""; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Het databaseconfiguratiebestand \".htconfig.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver."; -$a->strings["

    What next

    "] = "

    Wat nu

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "BELANGRIJK: Je zult [manueel] een geplande taak moeten aanmaken voor de poller."; -$a->strings["Unable to locate original post."] = "Ik kan de originele post niet meer vinden."; -$a->strings["Empty post discarded."] = "Lege post weggegooid."; -$a->strings["Wall Photos"] = ""; -$a->strings["System error. Post not saved."] = "Systeemfout. Post niet bewaard."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk."; -$a->strings["You may visit them online at %s"] = "Je kunt ze online bezoeken op %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen."; -$a->strings["%s posted an update."] = "%s heeft een wijziging geplaatst."; -$a->strings["Profile Match"] = "Profielmatch"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Geen sleutelwoorden om te zoeken. Voeg sleutelwoorden toe aan je standaard profiel."; -$a->strings["is interested in:"] = "Is geïnteresseerd in:"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Search Results For: %s"] = ""; -$a->strings["add"] = "toevoegen"; -$a->strings["Commented Order"] = "Nieuwe reacties bovenaan"; -$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -$a->strings["Posted Order"] = "Nieuwe berichten bovenaan"; -$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of op jou betrekking hebben"; -$a->strings["New"] = "Nieuw"; -$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -$a->strings["Shared Links"] = "Gedeelde links"; -$a->strings["Interesting Links"] = "Interessante links"; -$a->strings["Starred"] = "Met ster"; -$a->strings["Favourite Posts"] = "Favoriete berichten"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Waarschuwing: Deze groep bevat %s lid van een onveilig netwerk.", - 1 => "Waarschuwing: Deze groep bevat %s leden van een onveilig netwerk.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Privéberichten naar deze groep kunnen openbaar gemaakt worden."; -$a->strings["Contact: %s"] = ""; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Privéberichten naar deze persoon kunnen openbaar gemaakt worden."; -$a->strings["Invalid contact."] = "Ongeldig contact."; -$a->strings["Personal Notes"] = "Persoonlijke Nota's"; -$a->strings["Not Extended"] = ""; -$a->strings["Photo Albums"] = "Fotoalbums"; -$a->strings["Recent Photos"] = "Recente foto's"; -$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -$a->strings["everybody"] = "iedereen"; -$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; -$a->strings["Album not found."] = "Album niet gevonden"; -$a->strings["Delete Album"] = "Verwijder album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; -$a->strings["Delete Photo"] = "Verwijder foto"; -$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; -$a->strings["a photo"] = "een foto"; -$a->strings["Image exceeds size limit of %s"] = ""; -$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; -$a->strings["Unable to process image."] = "Niet in staat om de afbeelding te verwerken"; -$a->strings["Image upload failed."] = "Uploaden van afbeelding mislukt."; -$a->strings["No photos selected"] = "Geen foto's geselecteerd"; -$a->strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; -$a->strings["Upload Photos"] = "Upload foto's"; -$a->strings["New album name: "] = "Nieuwe albumnaam: "; -$a->strings["or existing album name: "] = "of bestaande albumnaam: "; -$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; -$a->strings["Permissions"] = "Rechten"; -$a->strings["Show to Groups"] = "Tonen aan groepen"; -$a->strings["Show to Contacts"] = "Tonen aan contacten"; -$a->strings["Private Photo"] = "Privé foto"; -$a->strings["Public Photo"] = "Publieke foto"; -$a->strings["Edit Album"] = "Album wijzigen"; -$a->strings["Show Newest First"] = "Toon niewste eerst"; -$a->strings["Show Oldest First"] = "Toon oudste eerst"; -$a->strings["View Photo"] = "Bekijk foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; -$a->strings["Photo not available"] = "Foto is niet beschikbaar"; -$a->strings["View photo"] = "Bekijk foto"; -$a->strings["Edit photo"] = "Bewerk foto"; -$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; -$a->strings["View Full Size"] = "Bekijk in volledig formaat"; -$a->strings["Tags: "] = "Labels: "; -$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; -$a->strings["New album name"] = "Nieuwe albumnaam"; -$a->strings["Caption"] = "Onderschrift"; -$a->strings["Add a Tag"] = "Een label toevoegen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; -$a->strings["Do not rotate"] = ""; -$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; -$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; -$a->strings["Private photo"] = "Privé foto"; -$a->strings["Public photo"] = "Publieke foto"; -$a->strings["Share"] = "Delen"; -$a->strings["View Album"] = "Album bekijken"; -$a->strings["{0} wants to be your friend"] = "{0} wilt je vriend worden"; -$a->strings["{0} sent you a message"] = "{0} stuurde jou een bericht"; -$a->strings["{0} requested registration"] = "{0} vroeg om zich te registreren"; -$a->strings["Requested profile is not available."] = "Gevraagde profiel is niet beschikbaar."; -$a->strings["Tips for New Members"] = "Tips voor nieuwe leden"; -$a->strings["Image uploaded but image cropping failed."] = "Afbeelding opgeladen, maar bijsnijden mislukt."; -$a->strings["Image size reduction [%s] failed."] = "Verkleining van de afbeelding [%s] mislukt."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen."; -$a->strings["Unable to process image"] = "Ik kan de afbeelding niet verwerken"; -$a->strings["Upload File:"] = "Upload bestand:"; -$a->strings["Select a profile:"] = "Kies een profiel:"; -$a->strings["Upload"] = "Uploaden"; -$a->strings["or"] = "of"; -$a->strings["skip this step"] = "Deze stap overslaan"; -$a->strings["select a photo from your photo albums"] = "Kies een foto uit je fotoalbums"; -$a->strings["Crop Image"] = "Afbeelding bijsnijden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Pas het afsnijden van de afbeelding aan voor het beste resultaat."; -$a->strings["Done Editing"] = "Wijzigingen compleet"; -$a->strings["Image uploaded successfully."] = "Uploaden van afbeelding gelukt."; +$a->strings["No potential page delegates located."] = "Niemand gevonden waar het paginabeheer mogelijk aan uitbesteed kan worden."; +$a->strings["Delegate Page Management"] = "Paginabeheer uitbesteden"; +$a->strings["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."] = "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwd."; +$a->strings["Existing Page Managers"] = "Bestaande paginabeheerders"; +$a->strings["Existing Page Delegates"] = "Bestaande personen waaraan het paginabeheer is uitbesteed"; +$a->strings["Potential Delegates"] = "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "; +$a->strings["Add"] = "Toevoegen"; +$a->strings["No entries."] = "Geen gegevens."; +$a->strings["No contacts in common."] = "Geen gedeelde contacten."; +$a->strings["Common Friends"] = "Gedeelde Vrienden"; +$a->strings["Export account"] = "Account exporteren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server."; +$a->strings["Export all"] = "Alles exporteren"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Je account info, contacten en al je items in json formaat exporteren. Dit kan een heel groot bestand worden, en kan lang duren. Gebruik dit om een volledige backup van je account te maken (foto's worden niet geexporteerd)"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s is op dit moment %2\$s"; +$a->strings["Mood"] = "Stemming"; +$a->strings["Set your current mood and tell your friends"] = "Stel je huidige stemming in, en vertel het je vrienden"; +$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; +$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; +$a->strings["Friend Suggestions"] = "Vriendschapsvoorstellen"; $a->strings["Profile deleted."] = "Profiel verwijderd"; $a->strings["Profile-"] = "Profiel-"; $a->strings["New profile created."] = "Nieuw profiel aangemaakt."; @@ -1080,6 +1208,7 @@ $a->strings[" - Visit %1\$s's %2\$s"] = " - Bezoek %2\$s van %1\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepast %2\$s, %3\$s veranderd."; $a->strings["Hide contacts and friends:"] = ""; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Je vrienden/contacten verbergen voor bezoekers van dit profiel?"; +$a->strings["Show more profile fields:"] = ""; $a->strings["Edit Profile Details"] = "Profieldetails bewerken"; $a->strings["Change Profile Photo"] = "Profielfoto wijzigen"; $a->strings["View this profile"] = "Dit profiel bekijken"; @@ -1134,199 +1263,26 @@ $a->strings["Create New Profile"] = "Maak nieuw profiel"; $a->strings["Profile Image"] = "Profiel afbeelding"; $a->strings["visible to everybody"] = "zichtbaar voor iedereen"; $a->strings["Edit visibility"] = "Pas zichtbaarheid aan"; -$a->strings["Invalid profile identifier."] = "Ongeldige profiel-identificatie."; -$a->strings["Profile Visibility Editor"] = ""; -$a->strings["Visible To"] = "Zichtbaar voor"; -$a->strings["All Contacts (with secure profile access)"] = "Alle contacten (met veilige profieltoegang)"; -$a->strings["Items tagged with: %s"] = ""; -$a->strings["Search results for: %s"] = ""; -$a->strings["link"] = "link"; -$a->strings["Do you really want to delete this suggestion?"] = "Wil je echt dit voorstel verwijderen?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen."; -$a->strings["Ignore/Hide"] = "Negeren/Verbergen"; -$a->strings["Do you really want to delete this video?"] = ""; -$a->strings["Delete Video"] = ""; -$a->strings["No videos selected"] = "Geen video's geselecteerd"; -$a->strings["View Video"] = "Bekijk Video"; -$a->strings["Recent Videos"] = "Recente video's"; -$a->strings["Upload New Videos"] = "Nieuwe video's uploaden"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; -$a->strings["Or - did you try to upload an empty file?"] = ""; -$a->strings["File exceeds size limit of %s"] = ""; -$a->strings["File upload failed."] = "Uploaden van bestand mislukt."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = ""; -$a->strings["Your registration can not be processed."] = "Je registratie kan niet verwerkt worden."; -$a->strings["Your registration is pending approval by the site owner."] = "Jouw registratie wacht op goedkeuring van de beheerder."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Je kunt (optioneel) dit formulier invullen via OpenID door je OpenID in te geven en op 'Registreren' te klikken."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."; -$a->strings["Your OpenID (optional): "] = "Je OpenID (optioneel):"; -$a->strings["Include your profile in member directory?"] = "Je profiel in de ledengids opnemen?"; -$a->strings["Membership on this site is by invitation only."] = "Lidmaatschap van deze website is uitsluitend op uitnodiging."; -$a->strings["Your invitation ID: "] = "Je uitnodigingsid:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Je volledige naam (bijv. Jan Jansens):"; -$a->strings["Your Email Address: "] = "Je email adres:"; -$a->strings["New Password:"] = "Nieuw Wachtwoord:"; -$a->strings["Leave empty for an auto generated password."] = ""; -$a->strings["Confirm:"] = "Bevestig:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Kies een bijnaam voor je profiel. Deze moet met een letter beginnen. Je profieladres op deze website zal dan 'bijnaam@\$sitename' zijn."; -$a->strings["Choose a nickname: "] = "Kies een bijnaam:"; -$a->strings["Register"] = "Registreer"; -$a->strings["Import your profile to this friendica instance"] = ""; -$a->strings["Additional features"] = "Extra functies"; -$a->strings["Display"] = "Weergave"; -$a->strings["Social Networks"] = "Sociale netwerken"; -$a->strings["Delegations"] = ""; -$a->strings["Connected apps"] = "Verbonden applicaties"; -$a->strings["Remove account"] = "Account verwijderen"; -$a->strings["Missing some important data!"] = "Een belangrijk gegeven ontbreekt!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen."; -$a->strings["Email settings updated."] = "E-mail instellingen bijgewerkt.."; -$a->strings["Features updated"] = "Functies bijgewerkt"; -$a->strings["Relocate message has been send to your contacts"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegelaten. Wachtwoord niet gewijzigd."; -$a->strings["Wrong password."] = "Verkeerd wachtwoord."; -$a->strings["Password changed."] = "Wachtwoord gewijzigd."; -$a->strings["Password update failed. Please try again."] = "Wachtwoord-)wijziging mislukt. Probeer opnieuw."; -$a->strings[" Please use a shorter name."] = "Gebruik een kortere naam."; -$a->strings[" Name too short."] = "Naam te kort."; -$a->strings["Wrong Password"] = "Verkeerd wachtwoord"; -$a->strings[" Not valid email."] = "Geen geldig e-mailadres."; -$a->strings[" Cannot change to that email."] = "Kan niet veranderen naar die e-mail."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privéforum/-groep heeft geen privacyrechten. De standaard privacygroep wordt gebruikt."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privéforum/-groep heeft geen privacyrechten en geen standaard privacygroep."; -$a->strings["Settings updated."] = "Instellingen bijgewerkt."; -$a->strings["Add application"] = "Toepassing toevoegen"; -$a->strings["Consumer Key"] = "Gebruikerssleutel"; -$a->strings["Consumer Secret"] = "Gebruikersgeheim"; -$a->strings["Redirect"] = "Doorverwijzing"; -$a->strings["Icon url"] = "URL pictogram"; -$a->strings["You can't edit this application."] = "Je kunt deze toepassing niet wijzigen."; -$a->strings["Connected Apps"] = "Verbonden applicaties"; -$a->strings["Client key starts with"] = ""; -$a->strings["No name"] = "Geen naam"; -$a->strings["Remove authorization"] = "Verwijder authorisatie"; -$a->strings["No Plugin settings configured"] = ""; -$a->strings["Plugin Settings"] = "Plugin Instellingen"; -$a->strings["Off"] = "Uit"; -$a->strings["On"] = "Aan"; -$a->strings["Additional Features"] = "Extra functies"; -$a->strings["General Social Media Settings"] = ""; -$a->strings["Disable intelligent shortening"] = ""; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = "Ingebouwde ondersteuning voor connectiviteit met %s is %s"; -$a->strings["enabled"] = "ingeschakeld"; -$a->strings["disabled"] = "uitgeschakeld"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "E-mailtoegang is op deze website uitgeschakeld."; -$a->strings["Email/Mailbox Setup"] = "E-mail Instellen"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken."; -$a->strings["Last successful email check:"] = "Laatste succesvolle e-mail controle:"; -$a->strings["IMAP server name:"] = "IMAP server naam:"; -$a->strings["IMAP port:"] = "IMAP poort:"; -$a->strings["Security:"] = "Beveiliging:"; -$a->strings["None"] = "Geen"; -$a->strings["Email login name:"] = "E-mail login naam:"; -$a->strings["Email password:"] = "E-mail wachtwoord:"; -$a->strings["Reply-to address:"] = "Antwoord adres:"; -$a->strings["Send public posts to all email contacts:"] = "Openbare posts naar alle e-mail contacten versturen:"; -$a->strings["Action after import:"] = "Actie na importeren:"; -$a->strings["Mark as seen"] = "Als 'gelezen' markeren"; -$a->strings["Move to folder"] = "Naar map verplaatsen"; -$a->strings["Move to folder:"] = "Verplaatsen naar map:"; -$a->strings["Display Settings"] = "Scherminstellingen"; -$a->strings["Display Theme:"] = "Schermthema:"; -$a->strings["Mobile Theme:"] = "Mobiel thema:"; -$a->strings["Update browser every xx seconds"] = "Browser elke xx seconden verversen"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 seconden, geen maximum"; -$a->strings["Number of items to display per page:"] = "Aantal items te tonen per pagina:"; -$a->strings["Maximum of 100 items"] = "Maximum 100 items"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Aantal items per pagina als je een mobiel toestel gebruikt:"; -$a->strings["Don't show emoticons"] = "Emoticons niet tonen"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = "Oneindig scrollen"; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = "Gebruikerstypes"; -$a->strings["Community Types"] = "Forum/groepstypes"; -$a->strings["Normal Account Page"] = "Normale accountpagina"; -$a->strings["This account is a normal personal profile"] = "Deze account is een normaal persoonlijk profiel"; -$a->strings["Soapbox Page"] = "Zeepkist-pagina"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met alleen recht tot lezen."; -$a->strings["Community Forum/Celebrity Account"] = "Forum/groeps- of beroemdheid-account"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als fans met recht tot lezen en schrijven."; -$a->strings["Automatic Friend Page"] = "Automatisch Vriendschapspagina"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Keur automatisch alle vriendschaps-/connectieverzoeken goed als vrienden."; -$a->strings["Private Forum [Experimental]"] = "Privé-forum [experimenteel]"; -$a->strings["Private forum - approved members only"] = "Privé-forum - enkel voor goedgekeurde leden"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optioneel) Laat dit OpenID toe om in te loggen op deze account."; -$a->strings["Publish your default profile in your local site directory?"] = "Je standaardprofiel in je lokale gids publiceren?"; -$a->strings["Publish your default profile in the global social directory?"] = "Je standaardprofiel in de globale sociale gids publiceren?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Je vrienden/contacten verbergen voor bezoekers van je standaard profiel?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Je profieldetails verbergen voor onbekende bezoekers?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; -$a->strings["Allow friends to post to your profile page?"] = "Vrienden toestaan om op jou profielpagina te posten?"; -$a->strings["Allow friends to tag your posts?"] = "Sta vrienden toe om jouw berichten te labelen?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Sta je mij toe om jou als mogelijke vriend voor te stellen aan nieuwe leden?"; -$a->strings["Permit unknown people to send you private mail?"] = "Mogen onbekende personen jou privé berichten sturen?"; -$a->strings["Profile is not published."] = "Profiel is niet gepubliceerd."; -$a->strings["Your Identity Address is"] = "Jouw Identiteitsadres is"; -$a->strings["Automatically expire posts after this many days:"] = "Laat berichten automatisch vervallen na zo veel dagen:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd."; -$a->strings["Advanced expiration settings"] = "Geavanceerde instellingen voor vervallen"; -$a->strings["Advanced Expiration"] = "Geavanceerd Verval:"; -$a->strings["Expire posts:"] = "Laat berichten vervallen:"; -$a->strings["Expire personal notes:"] = "Laat persoonlijke aantekeningen verlopen:"; -$a->strings["Expire starred posts:"] = "Laat berichten met ster verlopen"; -$a->strings["Expire photos:"] = "Laat foto's vervallen:"; -$a->strings["Only expire posts by others:"] = "Laat alleen berichten door anderen vervallen:"; -$a->strings["Account Settings"] = "Account Instellingen"; -$a->strings["Password Settings"] = "Wachtwoord Instellingen"; -$a->strings["Leave password fields blank unless changing"] = "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen"; -$a->strings["Current Password:"] = "Huidig wachtwoord:"; -$a->strings["Your current password to confirm the changes"] = "Je huidig wachtwoord om de wijzigingen te bevestigen"; -$a->strings["Password:"] = "Wachtwoord:"; -$a->strings["Basic Settings"] = "Basis Instellingen"; -$a->strings["Full Name:"] = "Volledige Naam:"; -$a->strings["Email Address:"] = "E-mailadres:"; -$a->strings["Your Timezone:"] = "Je Tijdzone:"; -$a->strings["Default Post Location:"] = "Standaard locatie:"; -$a->strings["Use Browser Location:"] = "Gebruik Webbrowser Locatie:"; -$a->strings["Security and Privacy Settings"] = "Instellingen voor Beveiliging en Privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximum aantal vriendschapsverzoeken per dag:"; -$a->strings["(to prevent spam abuse)"] = "(om spam misbruik te voorkomen)"; -$a->strings["Default Post Permissions"] = "Standaard rechten voor nieuwe berichten"; -$a->strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -$a->strings["Default Private Post"] = "Standaard Privé Post"; -$a->strings["Default Public Post"] = "Standaard Publieke Post"; -$a->strings["Default Permissions for New Posts"] = "Standaard rechten voor nieuwe berichten"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -$a->strings["Notification Settings"] = "Notificatie Instellingen"; -$a->strings["By default post a status message when:"] = "Post automatisch een bericht op je tijdlijn wanneer:"; -$a->strings["accepting a friend request"] = "Een vriendschapsverzoek accepteren"; -$a->strings["joining a forum/community"] = "Lid worden van een groep/forum"; -$a->strings["making an interesting profile change"] = "Een interessante verandering aan je profiel"; -$a->strings["Send a notification email when:"] = "Stuur een notificatie e-mail wanneer:"; -$a->strings["You receive an introduction"] = "Je ontvangt een vriendschaps- of connectieverzoek"; -$a->strings["Your introductions are confirmed"] = "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"; -$a->strings["Someone writes on your profile wall"] = "Iemand iets op je tijdlijn schrijft"; -$a->strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -$a->strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -$a->strings["You receive a friend suggestion"] = "Je een suggestie voor een vriendschap ontvangt"; -$a->strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -$a->strings["You are poked/prodded/etc. in a post"] = "Je in een bericht bent aangestoten/gepord/etc."; -$a->strings["Activate desktop notifications"] = ""; -$a->strings["Show desktop popup on new notifications"] = ""; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Relocate"] = ""; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; -$a->strings["Resend relocate message to contacts"] = ""; -$a->strings["Login"] = "Login"; -$a->strings["The post was created"] = ""; +$a->strings["Item not found"] = "Item niet gevonden"; +$a->strings["Edit post"] = "Bericht bewerken"; +$a->strings["upload photo"] = "Foto uploaden"; +$a->strings["Attach file"] = "Bestand bijvoegen"; +$a->strings["attach file"] = "bestand bijvoegen"; +$a->strings["web link"] = "webadres"; +$a->strings["Insert video link"] = "Voeg video toe"; +$a->strings["video link"] = "video adres"; +$a->strings["Insert audio link"] = "Voeg audio adres toe"; +$a->strings["audio link"] = "audio adres"; +$a->strings["Set your location"] = "Stel uw locatie in"; +$a->strings["set location"] = "Stel uw locatie in"; +$a->strings["Clear browser location"] = "Verwijder locatie uit uw webbrowser"; +$a->strings["clear location"] = "Verwijder locatie uit uw webbrowser"; +$a->strings["Permission settings"] = "Instellingen van rechten"; +$a->strings["CC: email addresses"] = "CC: e-mailadressen"; +$a->strings["Public post"] = "Openbare post"; +$a->strings["Set title"] = "Titel plaatsen"; +$a->strings["Categories (comma-separated list)"] = "Categorieën (komma-gescheiden lijst)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be"; $a->strings["This is Friendica, version"] = "Dit is Friendica, versie"; $a->strings["running at web location"] = "draaiend op web-adres"; $a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bezoek Friendica.com om meer te leren over het Friendica project."; @@ -1335,6 +1291,140 @@ $a->strings["the bugtracker at github"] = ""; $a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggesties, lof, donaties, enzovoort - stuur een e-mail naar \"info\" op Friendica - dot com"; $a->strings["Installed plugins/addons/apps:"] = "Geïnstalleerde plugins/toepassingen:"; $a->strings["No installed plugins/addons/apps"] = "Geen plugins of toepassingen geïnstalleerd"; +$a->strings["Authorize application connection"] = ""; +$a->strings["Return to your app and insert this Securty Code:"] = ""; +$a->strings["Please login to continue."] = "Log in om verder te gaan."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"; +$a->strings["Remote privacy information not available."] = "Privacyinformatie op afstand niet beschikbaar."; +$a->strings["Visible to:"] = "Zichtbaar voor:"; +$a->strings["Personal Notes"] = "Persoonlijke Nota's"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Tijdsconversie"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones."; +$a->strings["UTC time: %s"] = "UTC tijd: %s"; +$a->strings["Current timezone: %s"] = "Huidige Tijdzone: %s"; +$a->strings["Converted localtime: %s"] = "Omgerekende lokale tijd: %s"; +$a->strings["Please select your timezone:"] = "Selecteer je tijdzone:"; +$a->strings["Poke/Prod"] = "Aanstoten/porren"; +$a->strings["poke, prod or do other things to somebody"] = "aanstoten, porren of andere dingen met iemand doen"; +$a->strings["Recipient"] = "Ontvanger"; +$a->strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +$a->strings["Make this post private"] = "Dit bericht privé maken"; +$a->strings["Resubsribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Total invitation limit exceeded."] = "Totale uitnodigingslimiet overschreden."; +$a->strings["%s : Not a valid email address."] = "%s: Geen geldig e-mailadres."; +$a->strings["Please join us on Friendica"] = "Kom bij ons op Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website."; +$a->strings["%s : Message delivery failed."] = "%s : Aflevering van bericht mislukt."; +$a->strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +$a->strings["You have no more invitations available"] = "Je kunt geen uitnodigingen meer sturen"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen."; +$a->strings["Send invitations"] = "Verstuur uitnodigingen"; +$a->strings["Enter email addresses, one per line:"] = "Vul e-mailadressen in, één per lijn:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Je zult deze uitnodigingscode moeten invullen: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendica.com/ bezoeken"; +$a->strings["Photo Albums"] = "Fotoalbums"; +$a->strings["Recent Photos"] = "Recente foto's"; +$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["Contact information unavailable"] = "Contactinformatie niet beschikbaar"; +$a->strings["Album not found."] = "Album niet gevonden"; +$a->strings["Delete Album"] = "Verwijder album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Wil je echt dit fotoalbum en alle foto's erin verwijderen?"; +$a->strings["Delete Photo"] = "Verwijder foto"; +$a->strings["Do you really want to delete this photo?"] = "Wil je echt deze foto verwijderen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s is gelabeld in %2\$s door %3\$s"; +$a->strings["a photo"] = "een foto"; +$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg."; +$a->strings["No photos selected"] = "Geen foto's geselecteerd"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Je hebt %1$.2f Mbytes van %2$.2f Mbytes foto-opslagruimte gebruikt."; +$a->strings["Upload Photos"] = "Upload foto's"; +$a->strings["New album name: "] = "Nieuwe albumnaam: "; +$a->strings["or existing album name: "] = "of bestaande albumnaam: "; +$a->strings["Do not show a status post for this upload"] = "Toon geen bericht op je tijdlijn van deze upload"; +$a->strings["Permissions"] = "Rechten"; +$a->strings["Private Photo"] = "Privé foto"; +$a->strings["Public Photo"] = "Publieke foto"; +$a->strings["Edit Album"] = "Album wijzigen"; +$a->strings["Show Newest First"] = "Toon niewste eerst"; +$a->strings["Show Oldest First"] = "Toon oudste eerst"; +$a->strings["View Photo"] = "Bekijk foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."; +$a->strings["Photo not available"] = "Foto is niet beschikbaar"; +$a->strings["View photo"] = "Bekijk foto"; +$a->strings["Edit photo"] = "Bewerk foto"; +$a->strings["Use as profile photo"] = "Gebruik als profielfoto"; +$a->strings["View Full Size"] = "Bekijk in volledig formaat"; +$a->strings["Tags: "] = "Labels: "; +$a->strings["[Remove any tag]"] = "[Alle labels verwijderen]"; +$a->strings["New album name"] = "Nieuwe albumnaam"; +$a->strings["Caption"] = "Onderschrift"; +$a->strings["Add a Tag"] = "Een label toevoegen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "; +$a->strings["Do not rotate"] = ""; +$a->strings["Rotate CW (right)"] = "Roteren met de klok mee (rechts)"; +$a->strings["Rotate CCW (left)"] = "Roteren tegen de klok in (links)"; +$a->strings["Private photo"] = "Privé foto"; +$a->strings["Public photo"] = "Publieke foto"; +$a->strings["Share"] = "Delen"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Map"] = ""; +$a->strings["Not Extended"] = ""; +$a->strings["Account approved."] = "Account goedgekeurd."; +$a->strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +$a->strings["Please login."] = "Inloggen."; +$a->strings["Move account"] = "Account verplaatsen"; +$a->strings["You can import an account from another Friendica server."] = "Je kunt een account van een andere Friendica server importeren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; +$a->strings["Account file"] = "Account bestand"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Item not available."] = "Item niet beschikbaar"; +$a->strings["Item was not found."] = "Item niet gevonden"; +$a->strings["Delete this item?"] = "Dit item verwijderen?"; +$a->strings["show fewer"] = "Minder tonen"; +$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; +$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; +$a->strings["Logout"] = "Uitloggen"; +$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; +$a->strings["Password: "] = "Wachtwoord:"; +$a->strings["Remember me"] = "Onthou me"; +$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; +$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; +$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; +$a->strings["terms of service"] = "servicevoorwaarden"; +$a->strings["Website Privacy Policy"] = "Privacybeleid website"; +$a->strings["privacy policy"] = "privacybeleid"; +$a->strings["This entry was edited"] = ""; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["Categories:"] = "Categorieën:"; +$a->strings["Filed under:"] = "Bewaard onder:"; +$a->strings["via"] = "via"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = ""; +$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["Logged out."] = "Uitgelogd."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = "De foutboodschap was:"; $a->strings["Add New Contact"] = "Nieuw Contact toevoegen"; $a->strings["Enter address or web location"] = "Voeg een webadres of -locatie in:"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara"; @@ -1344,56 +1434,20 @@ $a->strings["%d invitation available"] = array( ); $a->strings["Find People"] = "Zoek mensen"; $a->strings["Enter name or interest"] = "Vul naam of interesse in"; -$a->strings["Connect/Follow"] = "Verbind/Volg"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeelden: Jan Peeters, Vissen"; +$a->strings["Similar Interests"] = "Dezelfde interesses"; $a->strings["Random Profile"] = "Willekeurig Profiel"; +$a->strings["Invite Friends"] = "Vrienden uitnodigen"; $a->strings["Networks"] = "Netwerken"; $a->strings["All Networks"] = "Alle netwerken"; $a->strings["Saved Folders"] = "Bewaarde Mappen"; $a->strings["Everything"] = "Alles"; $a->strings["Categories"] = "Categorieën"; -$a->strings["Click here to upgrade."] = ""; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = ""; -$a->strings["Logged out."] = "Uitgelogd."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -$a->strings["The error message was:"] = "De foutboodschap was:"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; -$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; -$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contact werd niet geïmporteerd", - 1 => "%d contacten werden niet geïmporteerd", -); -$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; -$a->strings["[no subject]"] = "[geen onderwerp]"; -$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; -$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; -$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor"; -$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; -$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; -$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; -$a->strings["Weekly"] = "wekelijks"; -$a->strings["Monthly"] = "maandelijks"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "Linkedln"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "Myspace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora-connector"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = ""; $a->strings["General Features"] = "Algemene functies"; $a->strings["Multiple Profiles"] = "Meerdere profielen"; $a->strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; $a->strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; $a->strings["Richtext Editor"] = "Tekstverwerker met opmaak"; $a->strings["Enable richtext editor"] = "Gebruik een tekstverwerker met eenvoudige opmaakfuncties"; @@ -1432,6 +1486,311 @@ $a->strings["Star Posts"] = "Geef berichten een ster"; $a->strings["Ability to mark special posts with a star indicator"] = ""; $a->strings["Mute Post Notifications"] = ""; $a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Connect URL missing."] = ""; +$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; +$a->strings["The profile address specified does not provide adequate information."] = ""; +$a->strings["An author or name was not found."] = ""; +$a->strings["No browser URL could be matched to this address."] = ""; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; +$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; +$a->strings["Unable to retrieve contact information."] = ""; +$a->strings["following"] = "volgend"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Iedereen"; +$a->strings["edit"] = "verander"; +$a->strings["Edit group"] = "Verander groep"; +$a->strings["Create a new group"] = "Maak nieuwe groep"; +$a->strings["Contacts not in any group"] = ""; +$a->strings["Miscellaneous"] = "Diversen"; +$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["never"] = "nooit"; +$a->strings["less than a second ago"] = "minder dan een seconde geleden"; +$a->strings["year"] = "jaar"; +$a->strings["years"] = "jaren"; +$a->strings["months"] = "maanden"; +$a->strings["weeks"] = "weken"; +$a->strings["days"] = "dagen"; +$a->strings["hour"] = "uur"; +$a->strings["hours"] = "uren"; +$a->strings["minute"] = "minuut"; +$a->strings["minutes"] = "minuten"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "secondes"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +$a->strings["%s's birthday"] = "%s's verjaardag"; +$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; +$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; +$a->strings["Edit profile"] = "Bewerk profiel"; +$a->strings["Message"] = "Bericht"; +$a->strings["Profiles"] = "Profielen"; +$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = "G l j F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[vandaag]"; +$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; +$a->strings["[No description]"] = "[Geen omschrijving]"; +$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; +$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; +$a->strings["j F, Y"] = "F j Y"; +$a->strings["j F"] = "F j"; +$a->strings["Birthday:"] = "Verjaardag:"; +$a->strings["Age:"] = "Leeftijd:"; +$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["Hobbies/Interests:"] = "Hobby:"; +$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +$a->strings["Musical interests:"] = "Muzikale interesse "; +$a->strings["Books, literature:"] = "Boeken, literatuur:"; +$a->strings["Television:"] = "Televisie"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; +$a->strings["Love/Romance:"] = "Liefde/romance:"; +$a->strings["Work/employment:"] = "Werk/beroep:"; +$a->strings["School/education:"] = "School/opleiding:"; +$a->strings["Status"] = "Tijdlijn"; +$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; +$a->strings["Profile Details"] = "Profieldetails"; +$a->strings["Videos"] = "Video's"; +$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; +$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; +$a->strings["Post to Email"] = "Verzenden per e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["show"] = "tonen"; +$a->strings["don't show"] = "niet tonen"; +$a->strings["[no subject]"] = "[geen onderwerp]"; +$a->strings["stopped following"] = ""; +$a->strings["View Status"] = "Bekijk status"; +$a->strings["View Photos"] = "Bekijk foto's"; +$a->strings["Network Posts"] = "Netwerkberichten"; +$a->strings["Edit Contact"] = "Bewerk contact"; +$a->strings["Drop Contact"] = "Verwijder contact"; +$a->strings["Send PM"] = "Stuur een privébericht"; +$a->strings["Poke"] = "Aanstoten"; +$a->strings["Welcome "] = "Welkom"; +$a->strings["Please upload a profile photo."] = "Upload een profielfoto."; +$a->strings["Welcome back "] = "Welkom terug "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; +$a->strings["post/item"] = "bericht/item"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; +$a->strings["remove"] = "verwijder"; +$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; +$a->strings["Follow Thread"] = "Conversatie volgen"; +$a->strings["%s likes this."] = "%s vindt dit leuk."; +$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; +$a->strings["and"] = "en"; +$a->strings[", and %d other people"] = ", en %d andere mensen"; +$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people anttend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; +$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; +$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +$a->strings["Tag term:"] = "Label:"; +$a->strings["Where are you right now?"] = "Waar ben je nu?"; +$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; +$a->strings["permissions"] = "rechten"; +$a->strings["Post to Groups"] = "Verzenden naar Groepen"; +$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; +$a->strings["Private post"] = "Privé verzending"; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", +); +$a->strings["view full size"] = "Volledig formaat"; +$a->strings["newer"] = "nieuwere berichten"; +$a->strings["older"] = "oudere berichten"; +$a->strings["prev"] = "vorige"; +$a->strings["first"] = "eerste"; +$a->strings["last"] = "laatste"; +$a->strings["next"] = "volgende"; +$a->strings["Loading more entries..."] = ""; +$a->strings["The end"] = ""; +$a->strings["No contacts"] = "Geen contacten"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacten", +); +$a->strings["Full Text"] = ""; +$a->strings["Tags"] = ""; +$a->strings["Forums"] = ""; +$a->strings["poke"] = "aanstoten"; +$a->strings["poked"] = "aangestoten"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "gepingd"; +$a->strings["prod"] = "porren"; +$a->strings["prodded"] = "gepord"; +$a->strings["slap"] = "slaan"; +$a->strings["slapped"] = "geslagen"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "gerfingerd"; +$a->strings["rebuff"] = "afpoeieren"; +$a->strings["rebuffed"] = "afgepoeierd"; +$a->strings["happy"] = "Blij"; +$a->strings["sad"] = "Verdrietig"; +$a->strings["mellow"] = "mellow"; +$a->strings["tired"] = "vermoeid"; +$a->strings["perky"] = "parmantig"; +$a->strings["angry"] = "boos"; +$a->strings["stupified"] = "verbijsterd"; +$a->strings["puzzled"] = "onzeker"; +$a->strings["interested"] = "Geïnteresseerd"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "vrolijk"; +$a->strings["alive"] = "levend"; +$a->strings["annoyed"] = "verveeld"; +$a->strings["anxious"] = "bezorgd"; +$a->strings["cranky"] = "humeurig "; +$a->strings["disturbed"] = "verontrust"; +$a->strings["frustrated"] = "gefrustreerd"; +$a->strings["motivated"] = "gemotiveerd"; +$a->strings["relaxed"] = "ontspannen"; +$a->strings["surprised"] = "verbaasd"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "klik om te openen/sluiten"; +$a->strings["View on separate page"] = ""; +$a->strings["view on separate page"] = ""; +$a->strings["activity"] = "activiteit"; +$a->strings["post"] = "bericht"; +$a->strings["Item filed"] = "Item bewaard"; +$a->strings["Image/photo"] = "Afbeelding/foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 schreef:"; +$a->strings["Encrypted content"] = "Versleutelde inhoud"; +$a->strings["(no subject)"] = "(geen onderwerp)"; +$a->strings["noreply"] = "geen reactie"; +$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$a->strings["Unknown | Not categorised"] = "Onbekend | Niet "; +$a->strings["Block immediately"] = "Onmiddellijk blokkeren"; +$a->strings["Shady, spammer, self-marketer"] = "Onbetrouwbaar, spammer, zelfpromotor"; +$a->strings["Known to me, but no opinion"] = "Bekend, maar geen mening"; +$a->strings["OK, probably harmless"] = "OK, waarschijnlijk onschadelijk"; +$a->strings["Reputable, has my trust"] = "Gerenommeerd, heeft mijn vertrouwen"; +$a->strings["Weekly"] = "wekelijks"; +$a->strings["Monthly"] = "maandelijks"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "Linkedln"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "Myspace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora-connector"; +$a->strings["GNU Social"] = ""; +$a->strings["App.net"] = ""; +$a->strings["Redmatrix"] = ""; +$a->strings[" on Last.fm"] = " op Last.fm"; +$a->strings["Starts:"] = "Begint:"; +$a->strings["Finishes:"] = "Eindigt:"; +$a->strings["Click here to upgrade."] = ""; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["End this session"] = "Deze sessie beëindigen"; +$a->strings["Your posts and conversations"] = "Jouw berichten en conversaties"; +$a->strings["Your profile page"] = "Jouw profiel pagina"; +$a->strings["Your photos"] = "Jouw foto's"; +$a->strings["Your videos"] = ""; +$a->strings["Your events"] = "Jouw gebeurtenissen"; +$a->strings["Personal notes"] = "Persoonlijke nota's"; +$a->strings["Your personal notes"] = ""; +$a->strings["Sign in"] = "Inloggen"; +$a->strings["Home Page"] = "Jouw tijdlijn"; +$a->strings["Create an account"] = "Maak een accoount"; +$a->strings["Help and documentation"] = "Hulp en documentatie"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; +$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; +$a->strings["Conversations on this site"] = "Conversaties op deze website"; +$a->strings["Conversations on the network"] = ""; +$a->strings["Directory"] = "Gids"; +$a->strings["People directory"] = "Personengids"; +$a->strings["Information"] = "Informatie"; +$a->strings["Information about this friendica instance"] = ""; +$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; +$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; +$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; +$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; +$a->strings["See all notifications"] = "Toon alle notificaties"; +$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; +$a->strings["Private mail"] = "Privéberichten"; +$a->strings["Inbox"] = "Inbox"; +$a->strings["Outbox"] = "Verzonden berichten"; +$a->strings["Manage"] = "Beheren"; +$a->strings["Manage other pages"] = "Andere pagina's beheren"; +$a->strings["Account settings"] = "Account instellingen"; +$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; +$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; +$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; +$a->strings["Navigation"] = "Navigatie"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["User not found."] = "Gebruiker niet gevonden"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk"; +$a->strings["There is no conversation with this id."] = ""; +$a->strings["Invalid item."] = ""; +$a->strings["Invalid action. "] = ""; +$a->strings["DB error"] = ""; +$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; +$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; +$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; +$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; +$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; +$a->strings["Name too short."] = "Naam te kort"; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; +$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; +$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; +$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; +$a->strings["An error occurred during registration. Please try again."] = ""; +$a->strings["default"] = "standaard"; +$a->strings["An error occurred creating your default profile. Please try again."] = ""; +$a->strings["Friends"] = "Vrienden"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["Sharing notification from Diaspora network"] = ""; +$a->strings["Attachments:"] = "Bijlagen:"; +$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; +$a->strings["Archives"] = "Archieven"; $a->strings["Male"] = "Man"; $a->strings["Female"] = "Vrouw"; $a->strings["Currently Male"] = "Momenteel mannelijk"; @@ -1445,7 +1804,6 @@ $a->strings["Hermaphrodite"] = "Hermafrodiet"; $a->strings["Neuter"] = "Genderneutraal"; $a->strings["Non-specific"] = "Niet-specifiek"; $a->strings["Other"] = "Anders"; -$a->strings["Undecided"] = "Onbeslist"; $a->strings["Males"] = "Mannen"; $a->strings["Females"] = "Vrouwen"; $a->strings["Gay"] = "Homo"; @@ -1468,7 +1826,6 @@ $a->strings["Infatuated"] = "Smoorverliefd"; $a->strings["Dating"] = "Aan het daten"; $a->strings["Unfaithful"] = "Ontrouw"; $a->strings["Sex Addict"] = "Seksverslaafd"; -$a->strings["Friends"] = "Vrienden"; $a->strings["Friends/Benefits"] = "Vriendschap plus"; $a->strings["Casual"] = "Ongebonden/vluchtig"; $a->strings["Engaged"] = "Verloofd"; @@ -1490,92 +1847,10 @@ $a->strings["Uncertain"] = "Onzeker"; $a->strings["It's complicated"] = "Het is gecompliceerd"; $a->strings["Don't care"] = "Kan me niet schelen"; $a->strings["Ask me"] = "Vraag me"; -$a->strings["stopped following"] = ""; -$a->strings["Poke"] = "Aanstoten"; -$a->strings["View Status"] = "Bekijk status"; -$a->strings["View Profile"] = "Bekijk profiel"; -$a->strings["View Photos"] = "Bekijk foto's"; -$a->strings["Network Posts"] = "Netwerkberichten"; -$a->strings["Edit Contact"] = "Bewerk contact"; -$a->strings["Drop Contact"] = "Verwijder contact"; -$a->strings["Send PM"] = "Stuur een privébericht"; -$a->strings[" on Last.fm"] = " op Last.fm"; -$a->strings["Post to Email"] = "Verzenden per e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["User not found."] = "Gebruiker niet gevonden"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; -$a->strings["There is no status with this id."] = "Er is geen status met dit kenmerk"; -$a->strings["There is no conversation with this id."] = ""; -$a->strings["Invalid request."] = ""; -$a->strings["Invalid item."] = ""; -$a->strings["Invalid action. "] = ""; -$a->strings["DB error"] = ""; -$a->strings["Starts:"] = "Begint:"; -$a->strings["Finishes:"] = "Eindigt:"; -$a->strings["Image/photo"] = "Afbeelding/foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 schreef:"; -$a->strings["Encrypted content"] = "Versleutelde inhoud"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stootte %2\$s aan"; -$a->strings["post/item"] = "bericht/item"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markeerde %2\$s's %3\$s als favoriet"; -$a->strings["remove"] = "verwijder"; -$a->strings["Delete Selected Items"] = "Geselecteerde items verwijderen"; -$a->strings["Follow Thread"] = "Conversatie volgen"; -$a->strings["%s likes this."] = "%s vindt dit leuk."; -$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -$a->strings["%2\$d people like this"] = "%2\$d mensen vinden dit leuk"; -$a->strings["%2\$d people don't like this"] = "%2\$d people vinden dit niet leuk"; -$a->strings["and"] = "en"; -$a->strings[", and %d other people"] = ", en %d andere mensen"; -$a->strings["%s like this."] = "%s vindt dit leuk."; -$a->strings["%s don't like this."] = "%s vindt dit niet leuk."; -$a->strings["Visible to everybody"] = "Zichtbaar voor iedereen"; -$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -$a->strings["Tag term:"] = "Label:"; -$a->strings["Where are you right now?"] = "Waar ben je nu?"; -$a->strings["Delete item(s)?"] = "Item(s) verwijderen?"; -$a->strings["permissions"] = "rechten"; -$a->strings["Post to Groups"] = "Verzenden naar Groepen"; -$a->strings["Post to Contacts"] = "Verzenden naar Contacten"; -$a->strings["Private post"] = "Privé verzending"; -$a->strings["Miscellaneous"] = "Diversen"; -$a->strings["YYYY-MM-DD or MM-DD"] = ""; -$a->strings["never"] = "nooit"; -$a->strings["less than a second ago"] = "minder dan een seconde geleden"; -$a->strings["year"] = "jaar"; -$a->strings["years"] = "jaren"; -$a->strings["month"] = "maand"; -$a->strings["months"] = "maanden"; -$a->strings["week"] = "week"; -$a->strings["weeks"] = "weken"; -$a->strings["day"] = "dag"; -$a->strings["days"] = "dagen"; -$a->strings["hour"] = "uur"; -$a->strings["hours"] = "uren"; -$a->strings["minute"] = "minuut"; -$a->strings["minutes"] = "minuten"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "secondes"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -$a->strings["%s's birthday"] = "%s's verjaardag"; -$a->strings["Happy Birthday %s"] = "Gefeliciteerd %s"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = ""; -$a->strings["Errors encountered creating database tables."] = "Tijdens het aanmaken van databasetabellen zijn fouten vastgesteld."; -$a->strings["Errors encountered performing database changes."] = ""; -$a->strings["(no subject)"] = "(geen onderwerp)"; -$a->strings["noreply"] = "geen reactie"; -$a->strings["Sharing notification from Diaspora network"] = ""; -$a->strings["Attachments:"] = "Bijlagen:"; $a->strings["Friendica Notification"] = "Friendica Notificatie"; $a->strings["Thank You,"] = "Bedankt"; $a->strings["%s Administrator"] = "%s Beheerder"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificatie] Nieuw bericht ontvangen op %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s."; @@ -1630,203 +1905,58 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "" $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; $a->strings["Please visit %s to approve or reject the request."] = ""; -$a->strings["Connect URL missing."] = ""; -$a->strings["This site is not configured to allow communications with other networks."] = "Deze website is niet geconfigureerd voor communicatie met andere netwerken."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Er werden geen compatibele communicatieprotocols of feeds ontdekt."; -$a->strings["The profile address specified does not provide adequate information."] = ""; -$a->strings["An author or name was not found."] = ""; -$a->strings["No browser URL could be matched to this address."] = ""; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact."; -$a->strings["Use mailto: in front of address to force email check."] = "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = ""; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = ""; -$a->strings["Unable to retrieve contact information."] = ""; -$a->strings["following"] = "volgend"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde groep met deze naam is weer tot leven gewekt. Bestaande itemrechten kunnen voor deze groep en toekomstige leden gelden. Wanneer je niet zo had bedoeld kan je een andere groep met een andere naam creëren. "; -$a->strings["Default privacy group for new contacts"] = ""; -$a->strings["Everybody"] = "Iedereen"; -$a->strings["edit"] = "verander"; -$a->strings["Edit group"] = "Verander groep"; -$a->strings["Create a new group"] = "Maak nieuwe groep"; -$a->strings["Contacts not in any group"] = ""; -$a->strings["Requested account is not available."] = "Gevraagde account is niet beschikbaar."; -$a->strings["Edit profile"] = "Bewerk profiel"; -$a->strings["Message"] = "Bericht"; -$a->strings["Profiles"] = "Profielen"; -$a->strings["Manage/edit profiles"] = "Beheer/wijzig profielen"; -$a->strings["Network:"] = ""; -$a->strings["g A l F d"] = "G l j F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[vandaag]"; -$a->strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -$a->strings["Birthdays this week:"] = "Verjaardagen deze week:"; -$a->strings["[No description]"] = "[Geen omschrijving]"; -$a->strings["Event Reminders"] = "Gebeurtenisherinneringen"; -$a->strings["Events this week:"] = "Gebeurtenissen deze week:"; -$a->strings["j F, Y"] = "F j Y"; -$a->strings["j F"] = "F j"; -$a->strings["Birthday:"] = "Verjaardag:"; -$a->strings["Age:"] = "Leeftijd:"; -$a->strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -$a->strings["Tags:"] = "Labels:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["Hobbies/Interests:"] = "Hobby:"; -$a->strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -$a->strings["Musical interests:"] = "Muzikale interesse "; -$a->strings["Books, literature:"] = "Boeken, literatuur:"; -$a->strings["Television:"] = "Televisie"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultuur/ontspanning:"; -$a->strings["Love/Romance:"] = "Liefde/romance:"; -$a->strings["Work/employment:"] = "Werk/beroep:"; -$a->strings["School/education:"] = "School/opleiding:"; -$a->strings["Status"] = "Tijdlijn"; -$a->strings["Status Messages and Posts"] = "Berichten op jouw tijdlijn"; -$a->strings["Profile Details"] = "Profieldetails"; -$a->strings["Videos"] = "Video's"; -$a->strings["Events and Calendar"] = "Gebeurtenissen en kalender"; -$a->strings["Only You Can See This"] = "Alleen jij kunt dit zien"; -$a->strings["Do you really want to delete this item?"] = "Wil je echt dit item verwijderen?"; -$a->strings["Archives"] = "Archieven"; -$a->strings["Logout"] = "Uitloggen"; -$a->strings["End this session"] = "Deze sessie beëindigen"; -$a->strings["Your videos"] = ""; -$a->strings["Your personal notes"] = ""; -$a->strings["Sign in"] = "Inloggen"; -$a->strings["Home Page"] = "Jouw tijdlijn"; -$a->strings["Create an account"] = "Maak een accoount"; -$a->strings["Help and documentation"] = "Hulp en documentatie"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Extra toepassingen, hulpmiddelen of spelletjes"; -$a->strings["Search site content"] = "Doorzoek de inhoud van de website"; -$a->strings["Conversations on this site"] = "Conversaties op deze website"; -$a->strings["Conversations on the network"] = ""; -$a->strings["Directory"] = "Gids"; -$a->strings["People directory"] = "Personengids"; -$a->strings["Information"] = "Informatie"; -$a->strings["Information about this friendica instance"] = ""; -$a->strings["Conversations from your friends"] = "Conversaties van je vrienden"; -$a->strings["Network Reset"] = "Netwerkpagina opnieuw instellen"; -$a->strings["Load Network page with no filters"] = "Laad de netwerkpagina zonder filters"; -$a->strings["Friend Requests"] = "Vriendschapsverzoeken"; -$a->strings["See all notifications"] = "Toon alle notificaties"; -$a->strings["Mark all system notifications seen"] = "Alle systeemnotificaties als gelezen markeren"; -$a->strings["Private mail"] = "Privéberichten"; -$a->strings["Inbox"] = "Inbox"; -$a->strings["Outbox"] = "Verzonden berichten"; -$a->strings["Manage"] = "Beheren"; -$a->strings["Manage other pages"] = "Andere pagina's beheren"; -$a->strings["Account settings"] = "Account instellingen"; -$a->strings["Manage/Edit Profiles"] = "Beheer/Wijzig Profielen"; -$a->strings["Manage/edit friends and contacts"] = "Beheer/Wijzig vrienden en contacten"; -$a->strings["Site setup and configuration"] = "Website opzetten en configureren"; -$a->strings["Navigation"] = "Navigatie"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["view full size"] = "Volledig formaat"; $a->strings["Embedded content"] = "Ingebedde inhoud"; $a->strings["Embedding disabled"] = "Inbedden uitgeschakeld"; -$a->strings["Welcome "] = "Welkom"; -$a->strings["Please upload a profile photo."] = "Upload een profielfoto."; -$a->strings["Welcome back "] = "Welkom terug "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; -$a->strings["newer"] = "nieuwere berichten"; -$a->strings["older"] = "oudere berichten"; -$a->strings["prev"] = "vorige"; -$a->strings["first"] = "eerste"; -$a->strings["last"] = "laatste"; -$a->strings["next"] = "volgende"; -$a->strings["Loading more entries..."] = ""; -$a->strings["The end"] = ""; -$a->strings["No contacts"] = "Geen contacten"; -$a->strings["%d Contact"] = array( - 0 => "%d contact", - 1 => "%d contacten", +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = "Gebruiker '%s' bestaat al op deze server!"; +$a->strings["User creation error"] = "Fout bij het aanmaken van de gebruiker"; +$a->strings["User profile creation error"] = "Fout bij het aanmaken van het gebruikersprofiel"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact werd niet geïmporteerd", + 1 => "%d contacten werden niet geïmporteerd", ); -$a->strings["poke"] = "aanstoten"; -$a->strings["poked"] = "aangestoten"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "gepingd"; -$a->strings["prod"] = "porren"; -$a->strings["prodded"] = "gepord"; -$a->strings["slap"] = "slaan"; -$a->strings["slapped"] = "geslagen"; -$a->strings["finger"] = "finger"; -$a->strings["fingered"] = "gerfingerd"; -$a->strings["rebuff"] = "afpoeieren"; -$a->strings["rebuffed"] = "afgepoeierd"; -$a->strings["happy"] = "Blij"; -$a->strings["sad"] = "Verdrietig"; -$a->strings["mellow"] = "mellow"; -$a->strings["tired"] = "vermoeid"; -$a->strings["perky"] = "parmantig"; -$a->strings["angry"] = "boos"; -$a->strings["stupified"] = "verbijsterd"; -$a->strings["puzzled"] = "onzeker"; -$a->strings["interested"] = "Geïnteresseerd"; -$a->strings["bitter"] = "bitter"; -$a->strings["cheerful"] = "vrolijk"; -$a->strings["alive"] = "levend"; -$a->strings["annoyed"] = "verveeld"; -$a->strings["anxious"] = "bezorgd"; -$a->strings["cranky"] = "humeurig "; -$a->strings["disturbed"] = "verontrust"; -$a->strings["frustrated"] = "gefrustreerd"; -$a->strings["motivated"] = "gemotiveerd"; -$a->strings["relaxed"] = "ontspannen"; -$a->strings["surprised"] = "verbaasd"; -$a->strings["Monday"] = "Maandag"; -$a->strings["Tuesday"] = "Dinsdag"; -$a->strings["Wednesday"] = "Woensdag"; -$a->strings["Thursday"] = "Donderdag"; -$a->strings["Friday"] = "Vrijdag"; -$a->strings["Saturday"] = "Zaterdag"; -$a->strings["Sunday"] = "Zondag"; -$a->strings["January"] = "Januari"; -$a->strings["February"] = "Februari"; -$a->strings["March"] = "Maart"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mei"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "Augustus"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "December"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "klik om te openen/sluiten"; -$a->strings["Select an alternate language"] = "Kies een andere taal"; -$a->strings["activity"] = "activiteit"; -$a->strings["post"] = "bericht"; -$a->strings["Item filed"] = "Item bewaard"; -$a->strings["An invitation is required."] = "Een uitnodiging is vereist."; -$a->strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden."; -$a->strings["Invalid OpenID url"] = "Ongeldige OpenID url"; -$a->strings["Please enter the required information."] = "Vul de vereiste informatie in."; -$a->strings["Please use a shorter name."] = "gebruik een kortere naam"; -$a->strings["Name too short."] = "Naam te kort"; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."; -$a->strings["Your email domain is not among those allowed on this site."] = "Je e-maildomein is op deze website niet toegestaan."; -$a->strings["Not a valid email address."] = "Geen geldig e-mailadres."; -$a->strings["Cannot use that email."] = "Ik kan die e-mail niet gebruiken."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Je \"bijnaam\" kan alleen \"a-z\", \"0-9\", \"-\", en \"_\" bevatten, en moet ook met een letter beginnen."; -$a->strings["Nickname is already registered. Please choose another."] = "Bijnaam is al geregistreerd. Kies een andere."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Bijnaam was ooit hier geregistreerd en kan niet herbruikt worden. Kies een andere."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."; -$a->strings["An error occurred during registration. Please try again."] = ""; -$a->strings["An error occurred creating your default profile. Please try again."] = ""; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["Done. You can now login with your username and password"] = "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord"; $a->strings["toggle mobile"] = "mobiel thema omwisselen"; -$a->strings["Delete this item?"] = "Dit item verwijderen?"; -$a->strings["show fewer"] = "Minder tonen"; -$a->strings["Update %s failed. See error logs."] = "Wijziging %s mislukt. Lees de error logbestanden."; -$a->strings["Create a New Account"] = "Nieuwe account aanmaken"; -$a->strings["Nickname or Email address: "] = "Bijnaam of e-mailadres:"; -$a->strings["Password: "] = "Wachtwoord:"; -$a->strings["Remember me"] = "Onthou me"; -$a->strings["Or login using OpenID: "] = "Of log in met OpenID:"; -$a->strings["Forgot your password?"] = "Wachtwoord vergeten?"; -$a->strings["Website Terms of Service"] = "Gebruikersvoorwaarden website"; -$a->strings["terms of service"] = "servicevoorwaarden"; -$a->strings["Website Privacy Policy"] = "Privacybeleid website"; -$a->strings["privacy policy"] = "privacybeleid"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set font-size for posts and comments"] = "Stel lettergrootte voor berichten en reacties in"; +$a->strings["Set theme width"] = "Stel breedte van het thema in"; +$a->strings["Color scheme"] = "Kleurschema"; +$a->strings["Set line-height for posts and comments"] = "Stel lijnhoogte voor berichten en reacties in"; +$a->strings["Set colour scheme"] = "Stel kleurschema in"; +$a->strings["Alignment"] = "Uitlijning"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Gecentreerd"; +$a->strings["Posts font size"] = "Lettergrootte berichten"; +$a->strings["Textareas font size"] = "Lettergrootte tekstgebieden"; +$a->strings["Set resolution for middle column"] = "Stel resolutie in voor de middelste kolom. "; +$a->strings["Set color scheme"] = "Stel kleurenschema in"; +$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = ""; +$a->strings["Set latitude (Y) for Earth Layers"] = ""; +$a->strings["Community Pages"] = "Forum/groepspagina's"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Forum/groepsprofielen"; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Connect Services"] = "Diensten verbinden"; +$a->strings["Find Friends"] = "Zoek vrienden"; +$a->strings["Last users"] = "Laatste gebruikers"; +$a->strings["Last photos"] = "Laatste foto's"; +$a->strings["Last likes"] = "Recent leuk gevonden"; +$a->strings["Your contacts"] = "Jouw contacten"; +$a->strings["Your personal photos"] = "Jouw persoonlijke foto's"; +$a->strings["Local Directory"] = "Lokale gids"; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Show/hide boxes at right-hand column:"] = ""; +$a->strings["Comma separated list of helper forums"] = ""; +$a->strings["Set style"] = ""; +$a->strings["External link to forum"] = ""; +$a->strings["Quick Start"] = ""; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; diff --git a/view/templates/admin_plugins.tpl b/view/templates/admin_plugins.tpl index 6577ab8eb0..6caa04a3a4 100644 --- a/view/templates/admin_plugins.tpl +++ b/view/templates/admin_plugins.tpl @@ -1,7 +1,7 @@

    {{$title}} - {{$page}}

    - {{"Reload active plugins"|t}} + {{$reload}}
      {{foreach $plugins as $p}}
    • diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index b60c4f0558..13270e2eba 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -83,9 +83,25 @@ {{include file="field_checkbox.tpl" field=$force_publish}} {{include file="field_select.tpl" field=$community_page_style}} {{include file="field_input.tpl" field=$max_author_posts_community_page}} - {{include file="field_checkbox.tpl" field=$ostatus_disabled}} - {{include file="field_select.tpl" field=$ostatus_poll_interval}} - {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + + {{if $thread_allow.2}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{else}} +
      + + {{$ostatus_not_able}} +
      + {{/if}} + + {{if $diaspora_able}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{else}} +
      + + {{$diaspora_not_able}} +
      + {{/if}} {{include file="field_checkbox.tpl" field=$dfrn_only}} {{include file="field_input.tpl" field=$global_directory}} {{include file="field_checkbox.tpl" field=$thread_allow}} diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index 56653c6550..d6abde0306 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -1,5 +1,3 @@ - -

      {{$header}}

      {{if $myaddr == ""}} @@ -30,6 +28,11 @@ {{/if}} +{{if $url}}
      {{$url_label}}
      {{$url}}
      {{/if}} +{{if $location}}
      {{$location_label}}
      {{$location}}
      {{/if}} +{{if $keywords}}
      {{$keywords_label}}
      {{$keywords}}
      {{/if}} +{{if $about}}
      {{$about_label}}
      {{$about}}
      {{/if}} +
      {{if $myaddr}} @@ -50,7 +53,9 @@
      - + {{if $submit}} + + {{/if}}
      diff --git a/view/templates/common_friends.tpl b/view/templates/common_friends.tpl deleted file mode 100644 index 6502dd6ed7..0000000000 --- a/view/templates/common_friends.tpl +++ /dev/null @@ -1,13 +0,0 @@ - -
      -
      - - {{$name}} - -
      -
      -
      - {{$name}} -
      -
      -
      \ No newline at end of file diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index 06141081cb..95e8e5d29a 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -51,6 +51,9 @@ {{if $lblsuggest}}
    • {{$lblsuggest}}
    • {{/if}} + {{if $follow}} +
    • + {{/if}}
    diff --git a/view/templates/contact_template.tpl b/view/templates/contact_template.tpl index d4f65f70f9..06918533ca 100644 --- a/view/templates/contact_template.tpl +++ b/view/templates/contact_template.tpl @@ -7,9 +7,10 @@ {{$contact.name}} - {{if !$no_contacts_checkbox}} + {{if $multiselect}} {{/if}} + {{if $contact.photo_menu}} menu
    @@ -27,8 +28,19 @@
    -
    -
    {{$contact.name}}
    + +
    +
    + {{$contact.name}} + {{if $contact.account_type}} ({{$contact.account_type}}){{/if}} +
    + {{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} + {{if $contact.itemurl}}
    {{$contact.itemurl}}
    {{/if}} + {{if $contact.tags}}
    {{$contact.tags}}
    {{/if}} + {{if $contact.details}}
    {{$contact.details}}
    {{/if}} + {{if $contact.network}}
    {{$contact.network}}
    {{/if}} + +
    diff --git a/view/templates/contacts-template.tpl b/view/templates/contacts-template.tpl index 896f9af4c9..bec295924e 100644 --- a/view/templates/contacts-template.tpl +++ b/view/templates/contacts-template.tpl @@ -1,5 +1,5 @@ -

    {{$header}}{{if $total}} ({{$total}}){{/if}}

    +

    {{$header}}{{if $total}} ({{$total}}){{/if}}

    {{if $finding}}

    {{$finding}}

    {{/if}} diff --git a/view/templates/contacts-widget-sidebar.tpl b/view/templates/contacts-widget-sidebar.tpl index 5c52f4329a..5b0610fcbd 100644 --- a/view/templates/contacts-widget-sidebar.tpl +++ b/view/templates/contacts-widget-sidebar.tpl @@ -1,7 +1,7 @@ {{$vcard_widget}} +{{$findpeople_widget}} {{$follow_widget}} {{$groups_widget}} -{{$findpeople_widget}} {{$networks_widget}} diff --git a/view/templates/credits.tpl b/view/templates/credits.tpl new file mode 100644 index 0000000000..2441358024 --- /dev/null +++ b/view/templates/credits.tpl @@ -0,0 +1,8 @@ +{{include file="section_title.tpl"}} +

    {{$thanks}}

    + +
      +{{foreach $names as $name}} +
    • {{$name}}
    • +{{/foreach}} +
    diff --git a/view/templates/crepair.tpl b/view/templates/crepair.tpl index 5b3a6281eb..d500f04720 100644 --- a/view/templates/crepair.tpl +++ b/view/templates/crepair.tpl @@ -1,3 +1,13 @@ + +{{include file="section_title.tpl"}} + +
    {{$warning}}

    +
    + {{$info}}
    + {{$return}} +
    +
    +

    {{$contact_name}}

    diff --git a/view/templates/dfrn_request.tpl b/view/templates/dfrn_request.tpl index 6c63c53315..3b96d3eefd 100644 --- a/view/templates/dfrn_request.tpl +++ b/view/templates/dfrn_request.tpl @@ -27,6 +27,11 @@ {{/if}} +{{if $url}}
    {{$url_label}}
    {{$url}}
    {{/if}} +{{if $location}}
    {{$location_label}}
    {{$location}}
    {{/if}} +{{if $keywords}}
    {{$keywords_label}}
    {{$keywords}}
    {{/if}} +{{if $about}}
    {{$about_label}}
    {{$about}}
    {{/if}} +
    {{if $myaddr}} @@ -78,7 +83,9 @@
    - + {{if $submit}} + + {{/if}}
    diff --git a/view/templates/directory_header.tpl b/view/templates/directory_header.tpl index 2274f2e1f8..46f17de40e 100644 --- a/view/templates/directory_header.tpl +++ b/view/templates/directory_header.tpl @@ -1,17 +1,31 @@ -

    {{$sitedir}}

    +{{include file="section_title.tpl"}} -{{$globaldir}} -{{$admin}} +{{if $gdirpath}} + +{{/if}} -{{$finding}}
    -
    -{{$desc}} - - -
    +
    + {{$desc}} + + +
    + +{{if $findterm}} +

    {{$finding}} '{{$findterm}}'

    +{{/if}} +
    +{{foreach $contacts as $contact}} + {{include file="contact_template.tpl"}} +{{/foreach}} + +
    + +{{$paginate}} diff --git a/view/templates/directory_item.tpl b/view/templates/directory_item.tpl index b43fcd28cf..4dbe8a951f 100644 --- a/view/templates/directory_item.tpl +++ b/view/templates/directory_item.tpl @@ -1,12 +1,14 @@ -
    -
    -
    - {{$alt_text}} +
    +
    +
    -
    {{$name}}
    -
    {{$details}}
    +
    {{$entry.name}}
    +
    {{$entry.details}}
    diff --git a/view/templates/event_head.tpl b/view/templates/event_head.tpl index a96e5aff31..ceb251a9e2 100644 --- a/view/templates/event_head.tpl +++ b/view/templates/event_head.tpl @@ -1,7 +1,7 @@ + src="{{$baseurl}}/library/fullcalendar/fullcalendar.min.js"> + src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"> + + \ No newline at end of file diff --git a/view/templates/profile_advanced.tpl b/view/templates/profile_advanced.tpl index 40b3f24f72..084fdf3b77 100644 --- a/view/templates/profile_advanced.tpl +++ b/view/templates/profile_advanced.tpl @@ -167,5 +167,11 @@ {{/if}} +{{if $profile.forumlist}} +
    +
    {{$profile.forumlist.0}}
    +
    {{$profile.forumlist.1}}
    +
    +{{/if}} diff --git a/view/templates/profile_edit.tpl b/view/templates/profile_edit.tpl index 480add4404..76445685d5 100644 --- a/view/templates/profile_edit.tpl +++ b/view/templates/profile_edit.tpl @@ -21,6 +21,8 @@
    +{{if $detailled_profile}} +{{include file="field_yesno.tpl" field=$details}}
    *
    @@ -318,7 +320,129 @@
    +{{else}} +{{if $personal_account}} +{{include file="field_yesno.tpl" field=$details}} +{{/if}} +
    + +
    *
    +
    +
    +
    + + +
    +
    + +{{if $personal_account}} +
    + +{{$gender}} +
    +
    + +
    + +
    +{{$dob}} {{$age}} +
    +
    +
    +{{/if}} + +
    + + +
    +
    + +{{$hide_friends}} + +
    + + +
    +
    + +
    + + +
    +
    + + +
    + + +
    +
    + +
    + + +
    +
    + +
    + + +
    +
    + +
    + + +
    {{$lbl_pubdsc}}
    +
    + +
    + + +
    {{$lbl_prvdsc}}
    +
    + +
    +

    +{{$lbl_about}} +

    + + + +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + +{{/if}}
    diff --git a/view/templates/settings.tpl b/view/templates/settings.tpl index 26c44f91c3..c385284570 100644 --- a/view/templates/settings.tpl +++ b/view/templates/settings.tpl @@ -27,6 +27,7 @@ {{include file="field_input.tpl" field=$email}} {{include file="field_password.tpl" field=$password4}} {{include file="field_custom.tpl" field=$timezone}} +{{include file="field_select.tpl" field=$language}} {{include file="field_input.tpl" field=$defloc}} {{include file="field_checkbox.tpl" field=$allowloc}} @@ -147,7 +148,7 @@ (function(){ var elm = $("#id_{{$desktop_notifications.0}}_onoff"); var ckbox = $("#id_{{$desktop_notifications.0}}"); - + if (getNotificationPermission() === 'granted') { ckbox.val(1); elm.find(".off").addClass("hidden"); @@ -156,18 +157,18 @@ if (getNotificationPermission() === null) { elm.parent(".field.yesno").hide(); } - + $("#id_{{$desktop_notifications.0}}_onoff").on("click", function(e){ - + if (Notification.permission === 'granted') { localStorage.setItem('notification-permissions', ckbox.val()==1 ? 'granted' : 'denied'); } else if (Notification.permission === 'denied') { localStorage.setItem('notification-permissions', 'denied'); - + ckbox.val(0); elm.find(".on").addClass("hidden"); elm.find(".off").removeClass("hidden"); - + } else if (Notification.permission === 'default') { Notification.requestPermission(function(choice) { if (choice === 'granted') { @@ -181,10 +182,10 @@ } }); } - + //console.log(getNotificationPermission()); - - + + }) })(); diff --git a/view/templates/settings_display.tpl b/view/templates/settings_display.tpl index ac41c1c27c..8b15563bda 100644 --- a/view/templates/settings_display.tpl +++ b/view/templates/settings_display.tpl @@ -13,6 +13,8 @@ {{include file="field_checkbox.tpl" field=$nosmile}} {{include file="field_checkbox.tpl" field=$noinfo}} {{include file="field_checkbox.tpl" field=$infinite_scroll}} +

    {{$calendar_title}}

    +{{include file="field_select.tpl" field=$first_day_of_week}}
    diff --git a/view/templates/suggest_friends.tpl b/view/templates/suggest_friends.tpl deleted file mode 100644 index a64c05dd83..0000000000 --- a/view/templates/suggest_friends.tpl +++ /dev/null @@ -1,17 +0,0 @@ - -
    - -
    - - {{$name}} - -
    -
    -
    - {{$name}} -
    -
    - {{if $connlnk}} - - {{/if}} -
    \ No newline at end of file diff --git a/view/templates/theme_admin_settings.tpl b/view/templates/theme_admin_settings.tpl new file mode 100644 index 0000000000..fa04612b23 --- /dev/null +++ b/view/templates/theme_admin_settings.tpl @@ -0,0 +1 @@ +{{* Dummy file to avoid errors when installing themes *}} diff --git a/view/templates/viewcontact_template.tpl b/view/templates/viewcontact_template.tpl index ff33d65213..455551c680 100644 --- a/view/templates/viewcontact_template.tpl +++ b/view/templates/viewcontact_template.tpl @@ -1,5 +1,5 @@ -

    {{$title}}

    +{{include file="section_title.tpl"}} {{foreach $contacts as $contact}} {{include file="contact_template.tpl"}} diff --git a/view/templates/wall_thread.tpl b/view/templates/wall_thread.tpl index 2eb741c597..ae360adff2 100644 --- a/view/templates/wall_thread.tpl +++ b/view/templates/wall_thread.tpl @@ -17,7 +17,7 @@
    {{$item.wall}}
    {{/if}} -
    {{$item.name}}{{if $item.owner_url}} {{$item.to}} {{$item.owner_name}} {{$item.vwall}}{{/if}}
    -
    {{$item.ago}}
    -
    +
    {{$item.ago}}
    +
    {{$item.title}}
    @@ -76,7 +76,7 @@ {{if $item.edpost}} {{/if}} - + {{if $item.star}} {{/if}} @@ -85,19 +85,27 @@ {{/if}} {{if $item.filer}} - {{/if}} - + {{/if}} + {{if $item.isevent }} +
    + + + +
    + {{/if}}
    {{if $item.drop.dropping}}{{/if}}
    {{if $item.drop.pagedrop}}{{/if}}
    -
    +
    - -
    {{$item.dislike}}
    - + {{if $item.responses}} + {{foreach $item.responses as $verb=>$response}} +
    {{$response.output}}
    + {{/foreach}} + {{/if}} {{if $item.threaded}} {{if $item.comment}}
    diff --git a/view/templates/widget_forumlist.tpl b/view/templates/widget_forumlist.tpl new file mode 100644 index 0000000000..44dcd8f1e8 --- /dev/null +++ b/view/templates/widget_forumlist.tpl @@ -0,0 +1,45 @@ + + +
    +

    {{$title}}

    + + {{foreach $forums as $forum}} + {{if $forum.id <= $visible_forums}} + + {{/if}} + + {{if $forum.id > $visible_forums}} + + {{/if}} + {{/foreach}} + + {{if $total > $visible_forums }} + + {{/if}} + +
    diff --git a/view/theme/decaf-mobile/style.css b/view/theme/decaf-mobile/style.css index b32523fdb8..97743e943e 100644 --- a/view/theme/decaf-mobile/style.css +++ b/view/theme/decaf-mobile/style.css @@ -44,7 +44,7 @@ input { border: 1px solid #666666; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; padding: 3px; } @@ -74,7 +74,7 @@ img { border :0px; } background: #EEE; color: #444; padding: 10px; - margin-top: 20px; + margin-top: 20px; } blockquote { @@ -96,7 +96,7 @@ code { background: #EEE; color: #444; padding: 10px; - margin-top: 20px; + margin-top: 20px; } blockquote { @@ -200,10 +200,10 @@ nav #banner #logo-text a:hover { text-decoration: none; } border: 1px solid #babdb6; border-bottom: 0px; background-color: #aec0d3; - color: #565854; + color: #565854; -moz-border-radius: 3px 3px 0px 0px; -webkit-border-radius: 3px 3px 0px 0px; - border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; } .nav-commlink.selected { @@ -376,7 +376,7 @@ section { background-repeat: no-repeat; min-height: 112px; - border-top: 1px solid #babdb6; + border-top: 1px solid #babdb6; overflow-x:hidden; } @@ -388,7 +388,7 @@ footer { .tabs { /*background-image: url(head.jpg); - background-repeat: repeat-x; + background-repeat: repeat-x; background-position: 0px -20px;*/ border-bottom: 1px solid #babdb6; padding:0px; @@ -416,7 +416,7 @@ footer { } .tab.active { font-weight: bold; - + } #events-tab { display: none; @@ -465,14 +465,14 @@ navigation-messages-wrapper, } /* from default */ -#jot-perms-icon, +#jot-perms-icon, #profile-location, #profile-nolocation, -#profile-youtube, -#profile-video, +#profile-youtube, +#profile-video, #profile-audio, #profile-link, -#profile-title, +#profile-title, #wall-image-upload, #wall-file-upload, #profile-upload-wrapper, @@ -502,12 +502,12 @@ navigation-messages-wrapper, #jot-category:-moz-placeholder{font-weight: normal;}*/ #profile-jot-text::-webkit-input-placeholder{font-weight: bold;} #profile-jot-text:-moz-placeholder{font-weight: bold; font-size:18px; color: graytext} - + #jot-title:hover, #jot-title:focus, #jot-category:hover, #jot-category:focus { - border: 1px solid #cccccc; + border: 1px solid #cccccc; } /*.jothidden { display:none; }*/ @@ -532,7 +532,7 @@ navigation-messages-wrapper, padding: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC; background: #F8F8F8; font-weight: bold; @@ -542,7 +542,7 @@ navigation-messages-wrapper, /* padding: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC;*/ background: #F8F8F8; font-weight: bold; @@ -630,7 +630,7 @@ navigation-messages-wrapper, } #login-submit-button { - margin-top: 10px; + margin-top: 10px; margin-left: 200px; }*/ @@ -1041,7 +1041,7 @@ input#dfrn-url { clear: left; color: #666666; display: block; - margin-bottom: 20px + margin-bottom: 20px } #profile-edit-profile-name-end, @@ -1126,7 +1126,7 @@ input#dfrn-url { /* width: 120px; height: 120px;*/ padding-left: 15px; - padding-right: 15px; + padding-right: 15px; width: 95px; height: 200px; } @@ -1264,7 +1264,7 @@ input#dfrn-url { display: block; position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -1273,7 +1273,7 @@ input#dfrn-url { overflow: hidden; text-indent: 40px; display: none; - + } .wall-item-photo-menu { width: auto; @@ -1318,7 +1318,7 @@ input#dfrn-url { margin-top: 1em; left: 105px; position: absolute; - top: 1px; + top: 1px; } .comment .wall-item-lock { margin-top: 0px; @@ -1370,11 +1370,11 @@ input#dfrn-url { } .star-item { margin-left: 10px; - float: left; + float: left; } .tag-item { margin-left: 10px; - float: left; + float: left; } .filer-item { @@ -1412,7 +1412,7 @@ input#dfrn-url { border-radius: 7px; } .comment .wall-item-photo { - width: 50px !important; + width: 50px !important; height: 50px !important; } .wall-item-content { @@ -1433,7 +1433,7 @@ input#dfrn-url { .wall-item-title { /*float: left;*/ font-weight: bold; - font-size: 1.6em; + font-size: 1.6em; /*width: 450px;*/ } @@ -1522,7 +1522,7 @@ input#dfrn-url { background-repeat: repeat-x;*/ border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; -} +} .comment-edit-wrapper { @@ -1566,7 +1566,7 @@ input#dfrn-url { /* float: left;*/ -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #cccccc; padding: 3px 1px 1px 3px; } @@ -1624,7 +1624,7 @@ input#dfrn-url { padding-top: 0.5em; margin-top: 1em; margin-bottom: 1em; - + } .shared_header img { float: left; @@ -2149,7 +2149,7 @@ input#profile-jot-email { .contact-photo-menu-button { /* position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -2158,7 +2158,7 @@ input#profile-jot-email { overflow: hidden; text-indent: 40px; display: none;*/ - + } .contact-photo-menu { width: 130px; @@ -2217,7 +2217,7 @@ input#profile-jot-email { padding: 3px 0px 0px 5px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; } @@ -2351,7 +2351,7 @@ input#profile-jot-email { margin: 4px; } .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { +.acl-list-item a { font-size: 8px; display: block; width: 40px; @@ -2670,15 +2670,15 @@ aside input[type='text'] { margin-top: 15px; margin-right: 15px; margin-left: 15px; -/* width: 200px; height: 200px; - overflow: hidden; +/* width: 200px; height: 200px; + overflow: hidden; position: relative; */ } .photo-album-image-wrapper .caption { - display: none; + display: none; width: 100%; /* position: absolute; */ - bottom: 0px; + bottom: 0px; padding: 0.5em 0.5em 0px 0.5em; background-color: rgba(245, 245, 255, 0.8); border-bottom: 2px solid #CCC; @@ -2694,7 +2694,7 @@ aside input[type='text'] { } .photo-top-image-wrapper { -/* position: relative; +/* position: relative; float: left;*/ display: inline-block; vertical-align: top; @@ -2702,7 +2702,7 @@ aside input[type='text'] { margin-right: 15px; margin-left: 15px; margin-bottom: 15px; -/* width: 200px; height: 200px; +/* width: 200px; height: 200px; overflow: hidden; */ } .photo-top-image-wrapper img { @@ -2715,7 +2715,7 @@ aside input[type='text'] { width: 100%; min-height: 2em; /* position: absolute; */ - bottom: 0px; + bottom: 0px; padding: 0px 3px; padding-top: 0.5em; background-color: rgb(255, 255, 255); @@ -2794,7 +2794,7 @@ aside input[type='text'] { } #profile-jot-banner-end { - /* clear: both; */ + /* clear: both; */ } #photos-upload-select-files-text { @@ -3135,7 +3135,7 @@ aside input[type='text'] { } /* end from default */ - + .fn { padding: 1em 0px 5px 12px; @@ -3154,7 +3154,7 @@ aside input[type='text'] { #birthday-title { float: left; - font-weight: bold; + font-weight: bold; } #birthday-adjust { @@ -3281,7 +3281,7 @@ aside input[type='text'] { clear: both; } - + .calendar { font-family: Courier, monospace; } @@ -3394,11 +3394,6 @@ aside input[type='text'] { margin-bottom: 15px; } -#language-selector { - position: absolute; - top: 0px; - left: 16px; -} #group-members { margin-top: 20px; @@ -3496,7 +3491,7 @@ aside input[type='text'] { #netsearch-box { - margin-top: 20px; + margin-top: 20px; } #netsearch-box #search-submit { @@ -3576,20 +3571,6 @@ aside input[type='text'] { text-decoration: underline; } -#lang-select-icon { - cursor: pointer; - position: fixed; - left: 0px; - top: 0px; - opacity: 0.2; - filter:alpha(opacity=20); -} - -#lang-select-icon:hover { - opacity: 1; - filter:alpha(opacity=100); -} - .notif-image { height: 80px; width: 80px; @@ -3601,7 +3582,6 @@ aside input[type='text'] { } - /** * Plugins settings */ @@ -3610,7 +3590,7 @@ aside input[type='text'] { .settings-heading { border-bottom: 1px solid #babdb6; } - + /** @@ -3691,7 +3671,7 @@ aside input[type='text'] { font-weight: bold; background-color: #FF0000; padding: 0em 0.3em; - + } #adminpage dl { clear: left; @@ -3751,7 +3731,7 @@ aside input[type='text'] { /* * UPDATE */ -.popup { +.popup { width: 100%; height: 100%; top:0px; left:0px; position: absolute; @@ -3772,7 +3752,7 @@ aside input[type='text'] { border: 4px solid #000000; background-color: #FFFFFF; } -.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } +.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } .popup .panel .panel_in { width: 100%; height: 100%; position: relative; } .popup .panel .panel_actions { width: 100%; bottom: 4px; left: 0px; position: absolute; } .panel_text .progress { width: 50%; overflow: hidden; height: auto; border: 1px solid #cccccc; margin-bottom: 5px} @@ -3785,7 +3765,7 @@ aside input[type='text'] { height: auto; overflow: auto; border-bottom: 2px solid #cccccc; padding-bottom: 1em; - margin-bottom: 1em; + margin-bottom: 1em; } .oauthapp img { float: left; @@ -4277,7 +4257,7 @@ ul.notifications-menu-popup { } #recip { - + } .autocomplete-w1 { background: #ffffff; no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } .autocomplete { color:#000; border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } diff --git a/view/theme/decaf-mobile/templates/lang_selector.tpl b/view/theme/decaf-mobile/templates/lang_selector.tpl deleted file mode 100644 index d9a90e7b83..0000000000 --- a/view/theme/decaf-mobile/templates/lang_selector.tpl +++ /dev/null @@ -1,11 +0,0 @@ - -
    - diff --git a/view/theme/decaf-mobile/templates/settings.tpl b/view/theme/decaf-mobile/templates/settings.tpl index 6196f80a3c..94a8d55422 100644 --- a/view/theme/decaf-mobile/templates/settings.tpl +++ b/view/theme/decaf-mobile/templates/settings.tpl @@ -27,6 +27,7 @@ {{include file="field_input.tpl" field=$email}} {{include file="field_password.tpl" field=$password4}} {{include file="field_custom.tpl" field=$timezone}} +{{include file="field_select.tpl" field=$language}} {{include file="field_input.tpl" field=$defloc}} {{include file="field_checkbox.tpl" field=$allowloc}} diff --git a/view/theme/dispy/dark/style.css b/view/theme/dispy/dark/style.css index 4af085d895..dad55a325d 100644 --- a/view/theme/dispy/dark/style.css +++ b/view/theme/dispy/dark/style.css @@ -125,8 +125,6 @@ nav #nav-notifications-linkmenu.on .icon.s22.notify,nav #nav-notifications-linkm #notify-update{background-position:-60px 0px;} #home-update{background-position:-90px 0px;} #intro-update{background-position:-120px 0px;} -#lang-select-icon{cursor:pointer;position:fixed;left:28px;bottom:6px;z-index:10;} -#language-selector{position:fixed;bottom:2px;left:52px;z-index:10;} .menu-popup{position:absolute;display:none;background:white;color:#2e2f2e;margin:0px;padding:0px;font-size:small;line-height:1.2;border:3px solid #88a9d2;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;z-index:100000;-moz-box-shadow:5px 5px 5px 0px #111111;-o-box-shadow:5px 5px 5px 0px #111111;-webkit-box-shadow:5px 5px 5px 0px #111111;-ms-box-shadow:5px 5px 5px 0px #111111;box-shadow:5px 5px 5px 0px #111111;}.menu-popup a{display:block;color:#2e2f2e;padding:5px 10px;text-decoration:none;}.menu-popup a:hover{color:#eeeecc;background-color:#88a9d2;} .menu-popup .menu-sep{border-top:1px solid #4e4f4e;} .menu-popup li{float:none;overflow:auto;height:auto;display:block;}.menu-popup li img{float:left;width:16px;height:16px;padding-right:5px;} diff --git a/view/theme/dispy/dark/style.less b/view/theme/dispy/dark/style.less index c107219a2d..647804b6bc 100644 --- a/view/theme/dispy/dark/style.less +++ b/view/theme/dispy/dark/style.less @@ -2,7 +2,7 @@ * dispy dark * Description: Dispy Dark: dark, sleek, functional * author, maintainer: simon - * + * * Author's notes: * A few things of note here. The less file is our working copy, * and the CSS is *generated* from it. The CSS is the one that's @@ -798,19 +798,7 @@ nav #nav-notifications-linkmenu { #intro-update { background-position: -120px 0px; } -#lang-select-icon { - cursor: pointer; - position: fixed; - left: 28px; - bottom: 6px; - z-index: 10; -} -#language-selector { - position: fixed; - bottom: 2px; - left: 52px; - z-index: 10; -} + .menu-popup { position: absolute; display: none; @@ -1696,7 +1684,7 @@ div { margin: 0 6px 0 -3px; } .profile-match-photo { - + } [id$="-end"], [class$="-end"] { clear: both; @@ -2100,7 +2088,7 @@ div { #register-form label, #profile-edit-form label { width: 23em; -} +} #register-form span, #profile-edit-form span { color: @menu_bg_colour; diff --git a/view/theme/dispy/light/style.css b/view/theme/dispy/light/style.css index a3929b0ed0..7f8a924602 100644 --- a/view/theme/dispy/light/style.css +++ b/view/theme/dispy/light/style.css @@ -125,8 +125,6 @@ nav #nav-notifications-linkmenu.on .icon.s22.notify,nav #nav-notifications-linkm #notify-update{background-position:-60px 0px;} #home-update{background-position:-90px 0px;} #intro-update{background-position:-120px 0px;} -#lang-select-icon{cursor:pointer;position:fixed;left:28px;bottom:6px;z-index:10;} -#language-selector{position:fixed;bottom:2px;left:52px;z-index:10;} .menu-popup{position:absolute;display:none;background:white;color:#111111;margin:0px;padding:0px;font-size:small;line-height:1.2;border:3px solid #3465a4;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;z-index:100000;-moz-box-shadow:5px 5px 5px 0px #111111;-o-box-shadow:5px 5px 5px 0px #111111;-webkit-box-shadow:5px 5px 5px 0px #111111;-ms-box-shadow:5px 5px 5px 0px #111111;box-shadow:5px 5px 5px 0px #111111;}.menu-popup a{display:block;color:#111111;padding:5px 10px;text-decoration:none;}.menu-popup a:hover{color:#eeeeec;background-color:#3465a4;} .menu-popup .menu-sep{border-top:1px solid #4e4f4e;} .menu-popup li{float:none;overflow:auto;height:auto;display:block;}.menu-popup li img{float:left;width:16px;height:16px;padding-right:5px;} diff --git a/view/theme/dispy/light/style.less b/view/theme/dispy/light/style.less index 8ed02ec72a..949a9abcaa 100644 --- a/view/theme/dispy/light/style.less +++ b/view/theme/dispy/light/style.less @@ -799,19 +799,7 @@ nav #nav-notifications-linkmenu { #intro-update { background-position: -120px 0px; } -#lang-select-icon { - cursor: pointer; - position: fixed; - left: 28px; - bottom: 6px; - z-index: 10; -} -#language-selector { - position: fixed; - bottom: 2px; - left: 52px; - z-index: 10; -} + .menu-popup { position: absolute; display: none; @@ -1697,7 +1685,7 @@ div { margin: 0 6px 0 -3px; } .profile-match-photo { - + } [id$="-end"], [class$="-end"] { clear: both; @@ -2101,7 +2089,7 @@ div { #register-form label, #profile-edit-form label { width: 23em; -} +} #register-form span, #profile-edit-form span { color: @menu_bg_colour; diff --git a/view/theme/dispy/templates/lang_selector.tpl b/view/theme/dispy/templates/lang_selector.tpl deleted file mode 100644 index d9a90e7b83..0000000000 --- a/view/theme/dispy/templates/lang_selector.tpl +++ /dev/null @@ -1,11 +0,0 @@ - -
    - diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index ff108a8631..0198431919 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -876,8 +876,14 @@ input#dfrn-url { .contact-entry-wrapper { float: left; - width: 120px; - height: 120px; + min-width: 363px; + height: 90px; + padding-right: 10px; + margin: 0 10px 10px 0px; +} +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; } #contacts-search-end { margin-bottom: 10px; @@ -891,15 +897,22 @@ input#dfrn-url { .contact-entry-photo img { border: none; } +.contact-entry-photo a img { + width: 80px; + height: 80px; +} .contact-entry-photo-end { clear: both; } .contact-entry-name { - float: left; - margin-left: 0px; - margin-right: 10px; - width: 120px; + font-weight: bold; +} +.contact-entry-details { + font-size: 13px; + color: #999999; + white-space: nowrap; overflow: hidden; + text-overflow: ellipsis; } .contact-entry-edit-links { margin-top: 6px; @@ -959,7 +972,7 @@ input#dfrn-url { } .wall-item-content-wrapper.comment { -# margin-left: 50px; + /*margin-left: 50px;*/ background: #EEEEEE; } @@ -1128,6 +1141,16 @@ input#dfrn-url { border: none; } +.wall-item-attend-wrapper { + float:left; + padding-left: 10px; +} + +.wall-item-attend-wrapper > a { + display: inline-block; + margin-right: 10px; +} + .wall-item-wrapper-end { clear: both; @@ -2016,6 +2039,17 @@ a.mail-list-link { #sidebar-group-list ul { list-style-type: none; } +.sidebar-group-li .notify { + display: none; + font-size: 9px; + border: 1px solid rgb(221, 221, 221); + padding: 2px; + float: right; + background-color: #BABDB6; +} +.sidebar-group-li .notify.show { + display: block; +} #sidebar-group-list .icon, #sidebar-group-list .iconspacer { display: inline-block; @@ -2690,12 +2724,6 @@ aside input[type='text'] { margin-bottom: 15px; } -#language-selector { - position: absolute; - top: 0px; - left: 16px; -} - #group-members { margin-top: 20px; padding: 10px; @@ -2865,19 +2893,6 @@ aside input[type='text'] { text-decoration: underline; } -#lang-select-icon { - cursor: pointer; - position: absolute; - left: 0px; - top: 0px; - opacity: 0.2; - filter:alpha(opacity=20); -} - -#lang-select-icon:hover { - opacity: 1; - filter:alpha(opacity=100); -} .notif-image { height: 80px; @@ -3128,6 +3143,9 @@ aside input[type='text'] { .tagged { background-position: -48px -48px; } .yellow { background-position: -64px -48px; } +.attendyes { background-position: -80px -48px; } +.attendno { background-position: -96px -48px; } +.attendmaybe { background-position: -112px -48px; } .filer-icon { display: block; width: 16px; height: 16px; @@ -3469,5 +3487,9 @@ ul.menu-popup { .videos .video-top-wrapper:hover .video-delete { opacity: 1; } - - +#message-preview .mail-list-sender-url, #message-preview .mail-list-delete { + display: none; +} +#message-preview .mail-list-outside-wrapper { + margin-top: 20px; +} diff --git a/view/theme/duepuntozero/templates/lang_selector.tpl b/view/theme/duepuntozero/templates/lang_selector.tpl deleted file mode 100644 index d9a90e7b83..0000000000 --- a/view/theme/duepuntozero/templates/lang_selector.tpl +++ /dev/null @@ -1,11 +0,0 @@ - -
    - diff --git a/view/theme/facepark/style.css b/view/theme/facepark/style.css index d1ce000b41..7bbb416f83 100644 --- a/view/theme/facepark/style.css +++ b/view/theme/facepark/style.css @@ -22,7 +22,7 @@ a:hover {text-decoration: underline; } input { /*border: 1px solid #666666;*/ /*-moz-border-radius: 3px;*/ - border-radius: 3px; + border-radius: 3px; padding: 3px; background-color: #0B4E7A; color: #ffffff; @@ -54,7 +54,7 @@ code { background: #EEE; color: #444; padding: 10px; - margin-top: 20px; + margin-top: 20px; } blockquote { @@ -148,9 +148,9 @@ nav #banner #logo-text a:hover { text-decoration: none; } border-bottom: 0px; background-color: #FFFFFF; /*font-weight: bold;*/ - color: #FFFFFF; + color: #FFFFFF; -moz-border-radius: 3px 3px 0px 0px; - border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; } nav .nav-link { float: right; @@ -172,7 +172,7 @@ nav .nav-link { font-size:12px ; font-weight: bold; float: left; - margin-top: 62px; + margin-top: 62px; } @@ -217,12 +217,12 @@ section { background-position: top right; background-repeat: no-repeat; min-height: 112px; - + } .tabs { height: 27px; background-image: url(head.jpg); - background-repeat: repeat-x; + background-repeat: repeat-x; background-position: 0px -20px; border-bottom: 1px solid #babdb6; padding:0px; @@ -260,14 +260,14 @@ div.wall-item-content-wrapper.shiny { } /* from default */ -#jot-perms-icon, +#jot-perms-icon, #profile-location, #profile-nolocation, -#profile-youtube, -#profile-video, +#profile-youtube, +#profile-video, #profile-audio, #profile-link, -#profile-title, +#profile-title, #wall-image-upload, #wall-file-upload, #profile-upload-wrapper, @@ -294,11 +294,11 @@ div.wall-item-content-wrapper.shiny { #jot-title::-webkit-input-placeholder{font-weight: normal;} #jot-title:-moz-placeholder{font-weight: normal;} - - + + #jot-title:hover, #jot-title:focus { - border: 1px solid #cccccc; + border: 1px solid #cccccc; } .jothidden { display:none; } @@ -322,7 +322,7 @@ div.wall-item-content-wrapper.shiny { .group-selected, .nets-selected { padding: 3px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC; background: #F8F8F8; font-weight: bold; @@ -778,7 +778,7 @@ input#dfrn-url { clear: left; color: #666666; display: block; - margin-bottom: 20px + margin-bottom: 20px } #profile-edit-profile-name-end, @@ -901,7 +901,7 @@ input#dfrn-url { /*border: 1px solid #CCC;*/ position: relative; -moz-border-radius: 3px; - /*border-radius: 3px; */ + /*border-radius: 3px; */ } @@ -930,7 +930,7 @@ input#dfrn-url { display: block; position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -939,7 +939,7 @@ input#dfrn-url { overflow: hidden; text-indent: 40px; display: none; - + } .wall-item-photo-menu { width: auto; @@ -991,7 +991,7 @@ input#dfrn-url { /*margin-top: 10px;*/ left: 105px; position: absolute; - top: 1px; + top: 1px; } .comment .wall-item-lock { left: 65px; @@ -1044,11 +1044,11 @@ input#dfrn-url { } .star-item { margin-left: 10px; - float: left; + float: left; } .tag-item { margin-left: 10px; - float: left; + float: left; } @@ -1081,7 +1081,7 @@ input#dfrn-url { border: none; } .comment .wall-item-photo { - width: 50px !important; + width: 50px !important; height: 50px !important; } .wall-item-content { @@ -1123,7 +1123,7 @@ input#dfrn-url { .comment .wall-item-tools { background:none; -} +} .comment-edit-wrapper { margin-top: 15px; @@ -1151,7 +1151,7 @@ input#dfrn-url { float: left; margin-top: 10px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #cccccc; padding: 3px 1px 1px 3px; } @@ -1549,7 +1549,7 @@ input#dfrn-url { .contact-photo-menu-button { position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -1558,7 +1558,7 @@ input#dfrn-url { overflow: hidden; text-indent: 40px; display: none; - + } .contact-photo-menu { width: auto; @@ -1595,7 +1595,7 @@ input#dfrn-url { border: 1px solid #cccccc; padding: 3px 0px 0px 5px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; } @@ -1646,7 +1646,7 @@ input#dfrn-url { overflow: auto; } #acl-list-content { - + } .acl-list-item { display: block; @@ -1663,7 +1663,7 @@ input#dfrn-url { margin: 4px; } .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { +.acl-list-item a { font-size: 8px; display: block; width: 40px; @@ -1962,15 +1962,15 @@ aside input[type='text'] { float: left; margin-top: 15px; margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; + width: 200px; height: 200px; + overflow: hidden; position: relative; } .photo-album-image-wrapper .caption { - display: none; + display: none; width: 100%; - position: absolute; - bottom: 0px; + position: absolute; + bottom: 0px; padding: 0.5em 0.5em 0px 0.5em; background-color: rgba(245, 245, 255, 0.8); border-bottom: 2px solid #CCC; @@ -1989,14 +1989,14 @@ aside input[type='text'] { float: left; margin-top: 15px; margin-right: 15px; - width: 200px; height: 200px; - overflow: hidden; + width: 200px; height: 200px; + overflow: hidden; } .photo-top-album-name { width: 100%; min-height: 2em; - position: absolute; - bottom: 0px; + position: absolute; + bottom: 0px; padding: 0px 3px; padding-top: 0.5em; background-color: rgb(255, 255, 255); @@ -2075,7 +2075,7 @@ aside input[type='text'] { } #profile-jot-banner-end { - /* clear: both; */ + /* clear: both; */ } #photos-upload-select-files-text { @@ -2299,7 +2299,7 @@ aside input[type='text'] { } /* end from default */ - + .fn { padding: 0px 0px 5px 12px; @@ -2318,7 +2318,7 @@ aside input[type='text'] { #birthday-title { float: left; - font-weight: bold; + font-weight: bold; } #birthday-adjust { @@ -2411,7 +2411,7 @@ aside input[type='text'] { clear: both; } - + .calendar { font-family: Courier, monospace; } @@ -2493,11 +2493,6 @@ aside input[type='text'] { margin-bottom: 15px; } -#language-selector { - position: absolute; - top: 0px; - left: 16px; -} #group-members { margin-top: 20px; @@ -2595,7 +2590,7 @@ aside input[type='text'] { #netsearch-box { - margin-top: 20px; + margin-top: 20px; } #netsearch-box #search-submit { @@ -2668,19 +2663,6 @@ aside input[type='text'] { text-decoration: underline; } -#lang-select-icon { - cursor: pointer; - position: absolute; - left: 0px; - top: 0px; - opacity: 0.2; - filter:alpha(opacity=20); -} - -#lang-select-icon:hover { - opacity: 1; - filter:alpha(opacity=100); -} .notif-image { height: 80px; @@ -2702,7 +2684,7 @@ aside input[type='text'] { .settings-heading { border-bottom: 1px solid #babdb6; } - + /** * Form fields @@ -2728,7 +2710,7 @@ aside input[type='text'] { display: block; margin-left: 200px; color: #666666; - + } @@ -2774,7 +2756,7 @@ aside input[type='text'] { font-weight: bold; background-color: #FF0000; padding: 0em 0.3em; - + } #adminpage dl { clear: left; @@ -2829,7 +2811,7 @@ aside input[type='text'] { /* * UPDATE */ -.popup { +.popup { width: 100%; height: 100%; top:0px; left:0px; position: absolute; @@ -2850,7 +2832,7 @@ aside input[type='text'] { border: 4px solid #000000; background-color: #FFFFFF; } -.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } +.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } .popup .panel .panel_in { width: 100%; height: 100%; position: relative; } .popup .panel .panel_actions { width: 100%; bottom: 4px; left: 0px; position: absolute; } .panel_text .progress { width: 50%; overflow: hidden; height: auto; border: 1px solid #cccccc; margin-bottom: 5px} @@ -2863,7 +2845,7 @@ aside input[type='text'] { height: auto; overflow: auto; border-bottom: 2px solid #cccccc; padding-bottom: 1em; - margin-bottom: 1em; + margin-bottom: 1em; } .oauthapp img { float: left; diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index f4b46fed84..f8b49df7c5 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -44,7 +44,7 @@ input { border: 1px solid #666666; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; padding: 3px; } @@ -74,7 +74,7 @@ img { border :0px; } background: #EEE; color: #444; padding: 10px; - margin-top: 20px; + margin-top: 20px; } blockquote { @@ -96,7 +96,7 @@ code { background: #EEE; color: #444; padding: 10px; - margin-top: 20px; + margin-top: 20px; } blockquote { @@ -205,10 +205,10 @@ nav #banner #logo-text a:hover { text-decoration: none; } border: 1px solid #babdb6; border-bottom: 0px; background-color: #aec0d3; - color: #565854; + color: #565854; -moz-border-radius: 3px 3px 0px 0px; -webkit-border-radius: 3px 3px 0px 0px; - border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; } .nav-commlink.selected { @@ -377,13 +377,13 @@ section { background-repeat: no-repeat; min-height: 112px; - border-top: 1px solid #babdb6; + border-top: 1px solid #babdb6; overflow-x:hidden; } .tabs { /*background-image: url(head.jpg); - background-repeat: repeat-x; + background-repeat: repeat-x; background-position: 0px -20px;*/ border-bottom: 1px solid #babdb6; padding:0px; @@ -411,7 +411,7 @@ section { } .tab.active { font-weight: bold; - + } #events-tab { display: none; @@ -449,14 +449,14 @@ footer { } /* from default */ -#jot-perms-icon, +#jot-perms-icon, #profile-location, #profile-nolocation, -#profile-youtube, -#profile-video, +#profile-youtube, +#profile-video, #profile-audio, #profile-link, -#profile-title, +#profile-title, #wall-image-upload, #wall-file-upload, #profile-upload-wrapper, @@ -484,13 +484,13 @@ footer { #jot-category::-webkit-input-placeholder{font-weight: normal;} #jot-title:-moz-placeholder{font-weight: normal;} #jot-category:-moz-placeholder{font-weight: normal;}*/ - - + + #jot-title:hover, #jot-title:focus, #jot-category:hover, #jot-category:focus { - border: 1px solid #cccccc; + border: 1px solid #cccccc; } .jothidden { display:none; } @@ -515,7 +515,7 @@ footer { padding: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC; background: #F8F8F8; font-weight: bold; @@ -525,7 +525,7 @@ footer { /* padding: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC;*/ background: #F8F8F8; font-weight: bold; @@ -613,7 +613,7 @@ footer { } #login-submit-button { - margin-top: 10px; + margin-top: 10px; margin-left: 200px; }*/ @@ -1024,7 +1024,7 @@ input#dfrn-url { clear: left; color: #666666; display: block; - margin-bottom: 20px + margin-bottom: 20px } #profile-edit-profile-name-end, @@ -1109,9 +1109,14 @@ input#dfrn-url { /* width: 120px; height: 120px;*/ padding-left: 15px; - padding-right: 15px; - width: 95px; - height: 200px; + padding-right: 15px; + max-width: 262px; + height: 90px; + margin: 0 10px 10px 0px; +} +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; } #contacts-search-end { margin-bottom: 10px; @@ -1124,12 +1129,16 @@ input#dfrn-url { .contact-entry-photo img { border: none; + width: 80px; + height: 80px; } .contact-entry-photo-end { clear: both; } +.contact-entry-desc { + overflow: hidden; +} .contact-entry-name { - float: left; margin-left: 0px; margin-right: 10px; padding-bottom: 5px; @@ -1141,6 +1150,9 @@ input#dfrn-url { font-style: italic; font-size: 10px; font-weight: 500; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .contact-entry-network { font-size: 10px; @@ -1238,7 +1250,7 @@ input#dfrn-url { display: block; position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -1247,7 +1259,7 @@ input#dfrn-url { overflow: hidden; text-indent: 40px; display: none; - + } .wall-item-photo-menu { width: auto; @@ -1345,11 +1357,11 @@ input#dfrn-url { } .star-item { margin-left: 10px; - float: left; + float: left; } .tag-item { margin-left: 10px; - float: left; + float: left; } .filer-item { @@ -1387,7 +1399,7 @@ input#dfrn-url { border-radius: 7px; } .comment .wall-item-photo { - width: 50px !important; + width: 50px !important; height: 50px !important; } .wall-item-content { @@ -1408,7 +1420,7 @@ input#dfrn-url { .wall-item-title { /*float: left;*/ font-weight: bold; - font-size: 1.6em; + font-size: 1.6em; /*width: 450px;*/ } @@ -1497,7 +1509,7 @@ input#dfrn-url { background-repeat: repeat-x;*/ border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; -} +} .comment-edit-wrapper { @@ -1541,7 +1553,7 @@ input#dfrn-url { /* float: left;*/ -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #cccccc; padding: 3px 1px 1px 3px; } @@ -1600,7 +1612,7 @@ input#dfrn-url { padding-top: 0.5em; margin-top: 1em; margin-bottom: 1em; - + } .shared_header img { float: left; @@ -2119,7 +2131,7 @@ input#profile-jot-email { .contact-photo-menu-button { /* position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -2128,14 +2140,14 @@ input#profile-jot-email { overflow: hidden; text-indent: 40px; display: none;*/ - + } .contact-photo-menu { width: 130px; border: 1px solid #AAA; background: #FFFFFF; position: absolute; - left: -30px; top: 80px; + /*left: -30px;*/ top: 80px; display: none; z-index: 101; -moz-box-shadow: 3px 3px 5px #555; @@ -2187,7 +2199,7 @@ input#profile-jot-email { padding: 3px 0px 0px 5px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; } @@ -2260,7 +2272,7 @@ input#profile-jot-email { overflow: visible; } #acl-list-content { - + } .acl-list-item { display: inline-block; @@ -2284,7 +2296,7 @@ input#profile-jot-email { margin: 4px; } .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { +.acl-list-item a { font-size: 10px; display: block; width: 55px; @@ -2500,6 +2512,22 @@ a.mail-list-link { clear: both; } +#poke-desc { + margin: 5px 0 10px; +} + +#poke-wrapper { + padding: 10px 0 0px; +} + +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} + +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 10px; +} + #sidebar-group-list ul { list-style-type: none; } @@ -2606,15 +2634,15 @@ aside input[type='text'] { margin-top: 15px; margin-right: 15px; margin-left: 15px; -/* width: 200px; height: 200px; - overflow: hidden; +/* width: 200px; height: 200px; + overflow: hidden; position: relative; */ } .photo-album-image-wrapper .caption { - display: none; + display: none; width: 100%; /* position: absolute; */ - bottom: 0px; + bottom: 0px; padding: 0.5em 0.5em 0px 0.5em; background-color: rgba(245, 245, 255, 0.8); border-bottom: 2px solid #CCC; @@ -2630,7 +2658,7 @@ aside input[type='text'] { } .photo-top-image-wrapper { -/* position: relative; +/* position: relative; float: left;*/ display: inline-block; vertical-align: top; @@ -2638,7 +2666,7 @@ aside input[type='text'] { margin-right: 15px; margin-left: 15px; margin-bottom: 15px; -/* width: 200px; height: 200px; +/* width: 200px; height: 200px; overflow: hidden; */ } .photo-top-image-wrapper img { @@ -2651,7 +2679,7 @@ aside input[type='text'] { width: 100%; min-height: 2em; /* position: absolute; */ - bottom: 0px; + bottom: 0px; padding: 0px 3px; padding-top: 0.5em; background-color: rgb(255, 255, 255); @@ -2731,7 +2759,7 @@ aside input[type='text'] { } #profile-jot-banner-end { - /* clear: both; */ + /* clear: both; */ } #photos-upload-select-files-text { @@ -3069,7 +3097,7 @@ aside input[type='text'] { } /* end from default */ - + .fn { padding: 1em 0px 5px 12px; @@ -3088,7 +3116,7 @@ aside input[type='text'] { #birthday-title { float: left; - font-weight: bold; + font-weight: bold; } #birthday-adjust { @@ -3215,7 +3243,7 @@ aside input[type='text'] { clear: both; } - + .calendar { font-family: Courier, monospace; } @@ -3234,17 +3262,49 @@ aside input[type='text'] { margin: 10px; } -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; +.itentity-match-wrapper { + float: left; + padding: 10px; + width: 120px; + height: 140px; + margin-bottom: 20px; } -#identity-manage-choose { - margin-bottom: 15px; +.identity-match-photo { + float: left; + text-align: center; + width: 120px; } -#identity-submit { - margin-top: 20px; +.identity-match-name { + text-align: center; +} + +.identity-match-details { + float: left; + text-align: center; + width: 120px; + overflow: hidden; + font-size: 10px; + font-weight: 500; + color: #999999; +} + +.identity-match-break, .identity-match-end { + clear: both; +} + +.identity-match-photo button { + border: none; + padding: 0; + margin: 0; + background: none; + height: 80px; + width: 80px; +} + +.selected-identity img { + border: 2px solid #ff0000; } #photo-nav { @@ -3329,11 +3389,6 @@ aside input[type='text'] { margin-bottom: 15px; } -#language-selector { - position: absolute; - top: 0px; - left: 16px; -} #group-members { margin-top: 20px; @@ -3431,7 +3486,7 @@ aside input[type='text'] { #netsearch-box { - margin-top: 20px; + margin-top: 20px; } #netsearch-box #search-submit { @@ -3510,20 +3565,6 @@ aside input[type='text'] { text-decoration: underline; } -#lang-select-icon { - cursor: pointer; - position: fixed; - left: 0px; - top: 0px; - opacity: 0.2; - filter:alpha(opacity=20); -} - -#lang-select-icon:hover { - opacity: 1; - filter:alpha(opacity=100); -} - .notif-image { height: 80px; width: 80px; @@ -3544,7 +3585,7 @@ aside input[type='text'] { .settings-heading { border-bottom: 1px solid #babdb6; } - + /** @@ -3625,7 +3666,7 @@ aside input[type='text'] { font-weight: bold; background-color: #FF0000; padding: 0em 0.3em; - + } #adminpage dl { clear: left; @@ -3685,7 +3726,7 @@ aside input[type='text'] { /* * UPDATE */ -.popup { +.popup { width: 100%; height: 100%; top:0px; left:0px; position: absolute; @@ -3706,7 +3747,7 @@ aside input[type='text'] { border: 4px solid #000000; background-color: #FFFFFF; } -.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } +.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } .popup .panel .panel_in { width: 100%; height: 100%; position: relative; } .popup .panel .panel_actions { width: 100%; bottom: 4px; left: 0px; position: absolute; } .panel_text .progress { width: 50%; overflow: hidden; height: auto; border: 1px solid #cccccc; margin-bottom: 5px} @@ -3719,7 +3760,7 @@ aside input[type='text'] { height: auto; overflow: auto; border-bottom: 2px solid #cccccc; padding-bottom: 1em; - margin-bottom: 1em; + margin-bottom: 1em; } .oauthapp img { float: left; @@ -4215,9 +4256,9 @@ ul.notifications-menu-popup { } #recip { - + } -.autocomplete-w1 { background: #ffffff; no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } +.autocomplete-w1 { background: #ffffff no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } .autocomplete { color:#000; border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } .autocomplete .selected { background:#F0F0F0; } .autocomplete div { padding:2px 5px; white-space:nowrap; overflow:hidden; } diff --git a/view/theme/frost-mobile/templates/contact_template.tpl b/view/theme/frost-mobile/templates/contact_template.tpl index a2506fc17e..3395c9dadf 100644 --- a/view/theme/frost-mobile/templates/contact_template.tpl +++ b/view/theme/frost-mobile/templates/contact_template.tpl @@ -13,25 +13,33 @@ {{if $contact.photo_menu}} {{**}} -
    -
      - {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -
    • {{$c.0}}
    • - {{else}} -
    • {{$c.0}}
    • - {{/if}} - {{/foreach}} -
    -
    +
    +
      + {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +
    • {{$c.0}}
    • + {{else}} +
    • {{$c.0}}
    • + {{/if}} + {{/foreach}} +
    +
    {{/if}}
    -
    -
    {{$contact.name}}

    -{{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} -
    {{$contact.network}}
    + +
    +
    + {{$contact.name}} + {{if $contact.account_type}} ({{$contact.account_type}}){{/if}} +
    + {{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} + {{if $contact.itemurl}}
    {{$contact.itemurl}}
    {{/if}} + {{if $contact.tags}}
    {{$contact.tags}}
    {{/if}} + {{if $contact.details}}
    {{$contact.details}}
    {{/if}} + {{if $contact.network}}
    {{$contact.network}}
    {{/if}} +
    diff --git a/view/theme/frost-mobile/templates/contacts-template.tpl b/view/theme/frost-mobile/templates/contacts-template.tpl index 94e9afbe56..f776222f32 100644 --- a/view/theme/frost-mobile/templates/contacts-template.tpl +++ b/view/theme/frost-mobile/templates/contacts-template.tpl @@ -15,11 +15,10 @@ {{$tabs}} -
    + {{foreach $contacts as $contact}} {{include file="contact_template.tpl"}} {{/foreach}} -
    {{$paginate}} diff --git a/view/theme/frost-mobile/templates/lang_selector.tpl b/view/theme/frost-mobile/templates/lang_selector.tpl deleted file mode 100644 index d9a90e7b83..0000000000 --- a/view/theme/frost-mobile/templates/lang_selector.tpl +++ /dev/null @@ -1,11 +0,0 @@ - -
    - diff --git a/view/theme/frost-mobile/templates/settings.tpl b/view/theme/frost-mobile/templates/settings.tpl index cd9e1d3161..e3a636a840 100644 --- a/view/theme/frost-mobile/templates/settings.tpl +++ b/view/theme/frost-mobile/templates/settings.tpl @@ -27,6 +27,7 @@ {{include file="field_input.tpl" field=$email}} {{include file="field_password.tpl" field=$password4}} {{include file="field_custom.tpl" field=$timezone}} +{{include file="field_select.tpl" field=$language}} {{include file="field_input.tpl" field=$defloc}} {{include file="field_checkbox.tpl" field=$allowloc}} diff --git a/view/theme/frost-mobile/templates/suggest_friends.tpl b/view/theme/frost-mobile/templates/suggest_friends.tpl deleted file mode 100644 index e39cca6e59..0000000000 --- a/view/theme/frost-mobile/templates/suggest_friends.tpl +++ /dev/null @@ -1,17 +0,0 @@ - -
    -
    - - {{$name}} - -
    -
    -
    - {{$name}} -
    -
    - {{if $connlnk}} - - {{/if}} - -
    diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 8b87c3bd42..35abed3c5d 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -35,7 +35,7 @@ input { border: 1px solid #666666; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; padding: 3px; } @@ -63,7 +63,7 @@ code { background: #EEE; color: #444; padding: 10px; - margin-top: 20px; + margin-top: 20px; } blockquote { @@ -176,10 +176,10 @@ nav #banner #logo-text a:hover { text-decoration: none; } border: 1px solid #babdb6; border-bottom: 0px; background-color: #aec0d3; - color: #565854; + color: #565854; -moz-border-radius: 3px 3px 0px 0px; -webkit-border-radius: 3px 3px 0px 0px; - border-radius: 3px 3px 0px 0px; + border-radius: 3px 3px 0px 0px; } .nav-commlink.selected { @@ -337,7 +337,7 @@ section { .tabs { height: 27px; /*background-image: url(head.jpg); - background-repeat: repeat-x; + background-repeat: repeat-x; background-position: 0px -20px; border-bottom: 1px solid #babdb6;*/ padding:0px; @@ -345,7 +345,7 @@ section { .tabs li { margin: 0px; list-style: none; } .tabs a { /* background-image: url(head.jpg); - background-repeat: repeat-x; + background-repeat: repeat-x; background-position: 0px 0px; background-size: auto 45px;*/ @@ -423,14 +423,14 @@ div.wall-item-content-wrapper.shiny { } /* from default */ -#jot-perms-icon, +#jot-perms-icon, #profile-location, #profile-nolocation, -#profile-youtube, -#profile-video, +#profile-youtube, +#profile-video, #profile-audio, #profile-link, -#profile-title, +#profile-title, #wall-image-upload, #wall-file-upload, #profile-upload-wrapper, @@ -462,13 +462,13 @@ div.wall-item-content-wrapper.shiny { #jot-category::-webkit-input-placeholder{font-weight: normal;} #jot-title:-moz-placeholder{font-weight: normal;} #jot-category:-moz-placeholder{font-weight: normal;} - - + + #jot-title:hover, #jot-title:focus, #jot-category:hover, #jot-category:focus { - border: 1px solid #cccccc; + border: 1px solid #cccccc; } .jothidden { display:none; } @@ -493,7 +493,7 @@ div.wall-item-content-wrapper.shiny { padding: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC; background: #F8F8F8; font-weight: bold; @@ -503,7 +503,7 @@ div.wall-item-content-wrapper.shiny { padding: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #CCCCCC; background: #F8F8F8; font-weight: bold; @@ -593,7 +593,7 @@ div.wall-item-content-wrapper.shiny { } #login-submit-button { - margin-top: 10px; + margin-top: 10px; margin-left: 200px; }*/ @@ -995,7 +995,7 @@ input#dfrn-url { clear: left; color: #666666; display: block; - margin-bottom: 20px + margin-bottom: 20px } #profile-edit-profile-name-end, @@ -1074,12 +1074,14 @@ input#dfrn-url { .contact-entry-wrapper { float: left; -/* width: 120px; - height: 120px;*/ - padding-left: 8px; - padding-right: 8px; - width: 95px; - height: 170px; + width: 262px; + height: 90px; + padding-right: 10px; + margin: 0 10px 10px 0px; +} +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; } #contacts-search-end { margin-bottom: 10px; @@ -1093,15 +1095,22 @@ input#dfrn-url { .contact-entry-photo img { border: none; } +.contact-entry-photo a img { + width: 80px; + height: 80px; +} .contact-entry-photo-end { clear: both; } +.contact-entry-desc { + overflow: hidden; +} .contact-entry-name { - float: left; + /*float: left;*/ margin-left: 0px; margin-right: 10px; padding-bottom: 5px; - width: 120px; + /*width: 120px;*/ font-weight: 600; overflow: hidden; } @@ -1109,6 +1118,9 @@ input#dfrn-url { font-style: italic; font-size: 10px; font-weight: 500; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .contact-entry-network { font-size: 10px; @@ -1208,7 +1220,7 @@ input#dfrn-url { display: block; position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -1217,7 +1229,7 @@ input#dfrn-url { overflow: hidden; text-indent: 40px; display: none; - + } .wall-item-photo-menu { width: auto; @@ -1263,7 +1275,7 @@ input#dfrn-url { margin-top: 1em; /* needs to match .wall-item-content-wrapper padding-top */ left: 105px; position: absolute; - top: 1px; + top: 1px; } .comment .wall-item-lock { left: 65px; @@ -1317,11 +1329,11 @@ input#dfrn-url { } .star-item { margin-left: 10px; - float: left; + float: left; } .tag-item { margin-left: 10px; - float: left; + float: left; } .filer-item { @@ -1361,7 +1373,7 @@ input#dfrn-url { -webkit-border-radius: 7px; } .comment .wall-item-photo { - width: 50px !important; + width: 50px !important; height: 50px !important; border-radius: 5px; -moz-border-radius: 5px; @@ -1419,7 +1431,7 @@ input#dfrn-url { .wall-item-title { float: left; font-weight: bold; - font-size: 1.6em; + font-size: 1.6em; /*width: 450px;*/ } @@ -1463,7 +1475,7 @@ input#dfrn-url { margin-left: 0px; margin-top: 5px; padding-top: 0px; -} +} .comment-edit-wrapper { margin-top: 15px; @@ -1502,7 +1514,7 @@ input#dfrn-url { margin-top: 10px; -moz-border-radius: 3px; -webkit-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; border: 1px solid #cccccc; padding: 3px 1px 1px 3px; } @@ -1551,7 +1563,7 @@ input#dfrn-url { padding-top: 0.5em; margin-top: 1em; margin-bottom: 1em; - + } .shared_header img { float: left; @@ -1998,7 +2010,7 @@ input#dfrn-url { .contact-photo-menu-button { position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -2007,7 +2019,7 @@ input#dfrn-url { overflow: hidden; text-indent: 40px; display: none; - + } .contact-photo-menu { width: auto; @@ -2044,7 +2056,7 @@ input#dfrn-url { border: 1px solid #cccccc; padding: 3px 0px 0px 5px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; } @@ -2098,7 +2110,7 @@ input#dfrn-url { overflow: auto; } #acl-list-content { - + } .acl-list-item { display: block; @@ -2115,7 +2127,7 @@ input#dfrn-url { margin: 4px; } .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;} -.acl-list-item a { +.acl-list-item a { font-size: 10px; /* 8px; */ display: block; width: 50px; @@ -2315,6 +2327,22 @@ a.mail-list-link { clear: both; } +#poke-desc { + margin: 5px 0 10px; +} + +#poke-wrapper { + padding: 10px 0 20px; +} + +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} + +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 10px; +} + #sidebar-group-list ul { list-style-type: none; } @@ -2414,15 +2442,15 @@ aside input[type='text'] { margin-top: 15px; margin-right: 15px; margin-left: 15px; -/* width: 200px; height: 200px; - overflow: hidden; +/* width: 200px; height: 200px; + overflow: hidden; position: relative; */ } .photo-album-image-wrapper .caption { - display: none; + display: none; width: 100%; /* position: absolute; */ - bottom: 0px; + bottom: 0px; padding: 0.5em 0.5em 0px 0.5em; background-color: rgba(245, 245, 255, 0.8); border-bottom: 2px solid #CCC; @@ -2438,7 +2466,7 @@ aside input[type='text'] { } .photo-top-image-wrapper { -/* position: relative; +/* position: relative; float: left;*/ display: inline-block; vertical-align: top; @@ -2446,7 +2474,7 @@ aside input[type='text'] { margin-right: 15px; margin-left: 15px; margin-bottom: 15px; -/* width: 200px; height: 200px; +/* width: 200px; height: 200px; overflow: hidden; */ } .photo-album-image-wrapper img, .photo-top-image-wrapper img { @@ -2461,7 +2489,7 @@ aside input[type='text'] { width: 100%; min-height: 2em; /* position: absolute; */ - bottom: 0px; + bottom: 0px; padding: 0px 3px; padding-top: 0.5em; background-color: rgb(255, 255, 255); @@ -2557,7 +2585,7 @@ aside input[type='text'] { } #profile-jot-banner-end { - /* clear: both; */ + /* clear: both; */ } #photos-upload-select-files-text { @@ -2844,7 +2872,7 @@ aside input[type='text'] { } /* end from default */ - + .fn { padding: 0px 0px 5px 12px; @@ -2863,7 +2891,7 @@ aside input[type='text'] { #birthday-title { float: left; - font-weight: bold; + font-weight: bold; } #birthday-adjust { @@ -2987,7 +3015,7 @@ aside input[type='text'] { clear: both; } - + .calendar { font-family: Courier, monospace; } @@ -3006,17 +3034,49 @@ aside input[type='text'] { margin: 10px; } -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; +.itentity-match-wrapper { + float: left; + padding: 10px; + width: 120px; + height: 140px; + margin-bottom: 20px; } -#identity-manage-choose { - margin-bottom: 15px; +.identity-match-photo { + float: left; + text-align: center; + width: 120px; } -#identity-submit { - margin-top: 20px; +.identity-match-name { + text-align: center; +} + +.identity-match-details { + float: left; + text-align: center; + width: 120px; + overflow: hidden; + font-size: 10px; + font-weight: 500; + color: #999999; +} + +.identity-match-break, .identity-match-end { + clear: both; +} + +.identity-match-photo button { + border: none; + padding: 0; + margin: 0; + background: none; + height: 80px; + width: 80px; +} + +.selected-identity img { + border: 2px solid #ff0000; } #photo-prev-link, #photo-next-link { @@ -3099,12 +3159,6 @@ aside input[type='text'] { margin-bottom: 15px; } -#language-selector { - position: absolute; - top: 0px; - left: 16px; -} - #group-members { margin-top: 20px; padding: 10px; @@ -3201,7 +3255,7 @@ aside input[type='text'] { #netsearch-box { - margin-top: 20px; + margin-top: 20px; } #netsearch-box #search-submit { @@ -3291,19 +3345,6 @@ aside input[type='text'] { text-decoration: underline; } -#lang-select-icon { - cursor: pointer; - position: absolute; - left: 0px; - top: 0px; - opacity: 0.2; - filter:alpha(opacity=20); -} - -#lang-select-icon:hover { - opacity: 1; - filter:alpha(opacity=100); -} .notif-image { height: 80px; @@ -3325,7 +3366,7 @@ aside input[type='text'] { .settings-heading { border-bottom: 1px solid #babdb6; } - + /** * Form fields @@ -3408,7 +3449,7 @@ aside input[type='text'] { font-weight: bold; background-color: #FF0000; padding: 0em 0.3em; - + } #adminpage dl { clear: left; @@ -3467,7 +3508,7 @@ aside input[type='text'] { /* * UPDATE */ -.popup { +.popup { width: 100%; height: 100%; top:0px; left:0px; position: absolute; @@ -3488,7 +3529,7 @@ aside input[type='text'] { border: 4px solid #000000; background-color: #FFFFFF; } -.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } +.popup .panel .panel_text { display: block; overflow: auto; height: 80%; } .popup .panel .panel_in { width: 100%; height: 100%; position: relative; } .popup .panel .panel_actions { width: 100%; bottom: 4px; left: 0px; position: absolute; } .panel_text .progress { width: 50%; overflow: hidden; height: auto; border: 1px solid #cccccc; margin-bottom: 5px} @@ -3501,7 +3542,7 @@ aside input[type='text'] { height: auto; overflow: auto; border-bottom: 2px solid #cccccc; padding-bottom: 1em; - margin-bottom: 1em; + margin-bottom: 1em; } .oauthapp img { float: left; @@ -4094,7 +4135,7 @@ ul.notifications-menu-popup { } #recip { - + } .autocomplete-w1 { background: #ffffff no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } .autocomplete { color:#000; border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } @@ -4105,5 +4146,9 @@ ul.notifications-menu-popup { margin-left: 40px; width: 130px; } - - +#message-preview .mail-list-sender, #message-preview .mail-list-delete { + display:none; +} +#message-preview .mail-list-outside-wrapper { + margin-top: 20px; +} diff --git a/view/theme/frost/templates/contact_template.tpl b/view/theme/frost/templates/contact_template.tpl index 7a29bd0455..fe491fd83a 100644 --- a/view/theme/frost/templates/contact_template.tpl +++ b/view/theme/frost/templates/contact_template.tpl @@ -10,8 +10,8 @@ {{if $contact.photo_menu}} menu -
    -
      +
      +
        {{foreach $contact.photo_menu as $c}} {{if $c.2}}
      • {{$c.0}}
      • @@ -19,16 +19,24 @@
      • {{$c.0}}
      • {{/if}} {{/foreach}} -
      -
      +
    +
    {{/if}} -
    -
    {{$contact.name}}

    -{{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} -
    {{$contact.network}}
    + +
    +
    + {{$contact.name}} + {{if $contact.account_type}} ({{$contact.account_type}}){{/if}} +
    + {{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} + {{if $contact.itemurl}}
    {{$contact.itemurl}}
    {{/if}} + {{if $contact.tags}}
    {{$contact.tags}}
    {{/if}} + {{if $contact.details}}
    {{$contact.details}}
    {{/if}} + {{if $contact.network}}
    {{$contact.network}}
    {{/if}} +
    diff --git a/view/theme/frost/templates/lang_selector.tpl b/view/theme/frost/templates/lang_selector.tpl deleted file mode 100644 index d9a90e7b83..0000000000 --- a/view/theme/frost/templates/lang_selector.tpl +++ /dev/null @@ -1,11 +0,0 @@ - -
    - diff --git a/view/theme/frost/templates/suggest_friends.tpl b/view/theme/frost/templates/suggest_friends.tpl deleted file mode 100644 index e39cca6e59..0000000000 --- a/view/theme/frost/templates/suggest_friends.tpl +++ /dev/null @@ -1,17 +0,0 @@ - -
    -
    - - {{$name}} - -
    -
    -
    - {{$name}} -
    -
    - {{if $connlnk}} - - {{/if}} - -
    diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 89f3649abf..93ee1ccd58 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #ffffff; + background: #FFFFFF; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -877,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -959,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1016,6 +1013,21 @@ aside .posted-date-selector-months { .widget .tool.selected { background: url('../../../images/selected.png') no-repeat left center; } +.widget .notify { + display: none; + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + float: right; + color: #ffffff; + margin-right: 10px; +} +.widget .notify.on { + display: block; +} /* widget: search */ #add-search-popup { width: 200px; @@ -1126,6 +1138,13 @@ section { width: 20em; margin-top: 0.5em; } +.wall-item-container .wall-item-actions-events { + float: left; + margin-top: 0.5em; +} +.wall-item-container .wall-item-actions-events a { + margin-right: 3em; +} .wall-item-container .wall-item-actions-social { float: left; margin-top: 0.5em; @@ -1241,7 +1260,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1540,6 +1558,31 @@ span[id^="showmore-wrap"] { left: 0px; top: 63px; } +.contact-wrapper .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + opacity: 0.3; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .contact-entry-connect { + padding-top: 5px; + font-weight: bold; +} .directory-item { float: left; width: 200px; @@ -1555,7 +1598,7 @@ span[id^="showmore-wrap"] { } .contact-name { font-weight: bold; - padding-top: 15px; + /* padding-top: 15px; */ } .contact-details { color: #999999; @@ -2111,7 +2154,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index e49a0b16cb..ab50d93ae1 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #ffffff; + background: #FFFFFF; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -877,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -959,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1016,6 +1013,21 @@ aside .posted-date-selector-months { .widget .tool.selected { background: url('../../../images/selected.png') no-repeat left center; } +.widget .notify { + display: none; + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + float: right; + color: #ffffff; + margin-right: 10px; +} +.widget .notify.on { + display: block; +} /* widget: search */ #add-search-popup { width: 200px; @@ -1126,6 +1138,13 @@ section { width: 20em; margin-top: 0.5em; } +.wall-item-container .wall-item-actions-events { + float: left; + margin-top: 0.5em; +} +.wall-item-container .wall-item-actions-events a { + margin-right: 3em; +} .wall-item-container .wall-item-actions-social { float: left; margin-top: 0.5em; @@ -1241,7 +1260,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1540,6 +1558,31 @@ span[id^="showmore-wrap"] { left: 0px; top: 63px; } +.contact-wrapper .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + opacity: 0.3; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .contact-entry-connect { + padding-top: 5px; + font-weight: bold; +} .directory-item { float: left; width: 200px; @@ -1555,7 +1598,7 @@ span[id^="showmore-wrap"] { } .contact-name { font-weight: bold; - padding-top: 15px; + /* padding-top: 15px; */ } .contact-details { color: #999999; @@ -2111,7 +2154,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; diff --git a/view/theme/quattro/js/quattro.js b/view/theme/quattro/js/quattro.js new file mode 100644 index 0000000000..c2573ebd1d --- /dev/null +++ b/view/theme/quattro/js/quattro.js @@ -0,0 +1,143 @@ +$(document).ready(function(){ + $('nav').bind('nav-update', function(e,data){ + var notifCount = $(data).find('notif').attr('count'); + var intro = $(data).find('intro').text(); + var mail = $(data).find('mail').text(); + + $(".tool .notify").removeClass("on"); + $(data).find("group").each(function() { + var gid = this.id; + var gcount = this.innerHTML; + $(".group-"+gid+" .notify").addClass("on").text(gcount); + }); + + console.log(intro,mail); + + if (notifCount > 0 ) { + Tinycon.setBubble(notifCount); + } else { + Tinycon.setBubble(''); + } + + if (intro>0){ + $("#nav-introductions-link").addClass("on"); + } else { + $("#nav-introductions-link").removeClass("on"); + } + + if (mail>0){ + $("#nav-messages-link").addClass("on"); + } else { + $("#nav-messages-link").removeClass("on"); + } + + }); + + /* + * show and hide contact action buttons in + * contacts page on contacts' checkbox selection + */ + $('.contact-select').bind('click', function(e) { + var y = e.clientY; + var elm = $("#contacts-actions"); + y=y-40; + if (y<0) y=0; + if (y+elm.height() > $("html").height()) y=$("html").height()-elm.height(); + elm.css('top', y+"px"); + if ($(".contact-select:checked").length > 0) { + elm.show(); + } else { + elm.hide(); + } + }); +}); + +function insertFormatting(comment,BBcode,id) { + + var tmpStr = $("#comment-edit-text-" + id).val(); + if(tmpStr == comment) { + tmpStr = ""; + $("#comment-edit-text-" + id).addClass("comment-edit-text-full"); + $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty"); + openMenu("comment-edit-submit-wrapper-" + id); + $("#comment-edit-text-" + id).val(tmpStr); + } + + textarea = document.getElementById("comment-edit-text-" +id); + if (document.selection) { + textarea.focus(); + selected = document.selection.createRange(); + if (BBcode == "url"){ + selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]"; + } else + selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]"; + } else if (textarea.selectionStart || textarea.selectionStart == "0") { + var start = textarea.selectionStart; + var end = textarea.selectionEnd; + if (BBcode == "url"){ + textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); + } else + textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length); + } + return true; +} + +function showThread(id) { + $("#collapsed-comments-" + id).show() + $("#collapsed-comments-" + id + " .collapsed-comments").show() +} +function hideThread(id) { + $("#collapsed-comments-" + id).hide() + $("#collapsed-comments-" + id + " .collapsed-comments").hide() +} + + +function cmtBbOpen(id) { + $("#comment-edit-bb-" + id).show(); +} +function cmtBbClose(id) { + $("#comment-edit-bb-" + id).hide(); +} + +$(document).ready(function() { + + $('html').click(function() { $("#nav-notifications-menu" ).hide(); }); + + $('.group-edit-icon').hover( + function() { + $(this).addClass('icon'); $(this).removeClass('iconspacer');}, + function() { + $(this).removeClass('icon'); $(this).addClass('iconspacer');} + ); + + $('.sidebar-group-element').hover( + function() { + id = $(this).attr('id'); + $('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');}, + + function() { + id = $(this).attr('id'); + $('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');} + ); + + + $('.savedsearchdrop').hover( + function() { + $(this).addClass('drop'); $(this).addClass('icon'); $(this).removeClass('iconspacer');}, + function() { + $(this).removeClass('drop'); $(this).removeClass('icon'); $(this).addClass('iconspacer');} + ); + + $('.savedsearchterm').hover( + function() { + id = $(this).attr('id'); + $('#drop-' + id).addClass('icon'); $('#drop-' + id).addClass('drophide'); $('#drop-' + id).removeClass('iconspacer');}, + + function() { + id = $(this).attr('id'); + $('#drop-' + id).removeClass('icon');$('#drop-' + id).removeClass('drophide'); $('#drop-' + id).addClass('iconspacer');} + ); + +}); + + diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 5ea6b40c3b..510b2f7c8c 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -420,7 +420,7 @@ body { font-family: Liberation Sans, helvetica, arial, clean, sans-serif; font-size: 11px; - background-color: #f6ecf9; + background-color: #F6ECF9; color: #2d2d2d; margin: 50px 0px 0px 0px; display: table; @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #ffffff; + background: #FFFFFF; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -877,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -959,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1016,6 +1013,21 @@ aside .posted-date-selector-months { .widget .tool.selected { background: url('../../../images/selected.png') no-repeat left center; } +.widget .notify { + display: none; + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + float: right; + color: #ffffff; + margin-right: 10px; +} +.widget .notify.on { + display: block; +} /* widget: search */ #add-search-popup { width: 200px; @@ -1126,6 +1138,13 @@ section { width: 20em; margin-top: 0.5em; } +.wall-item-container .wall-item-actions-events { + float: left; + margin-top: 0.5em; +} +.wall-item-container .wall-item-actions-events a { + margin-right: 3em; +} .wall-item-container .wall-item-actions-social { float: left; margin-top: 0.5em; @@ -1241,7 +1260,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1540,6 +1558,31 @@ span[id^="showmore-wrap"] { left: 0px; top: 63px; } +.contact-wrapper .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + opacity: 0.3; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .contact-entry-connect { + padding-top: 5px; + font-weight: bold; +} .directory-item { float: left; width: 200px; @@ -1555,7 +1598,7 @@ span[id^="showmore-wrap"] { } .contact-name { font-weight: bold; - padding-top: 15px; + /* padding-top: 15px; */ } .contact-details { color: #999999; @@ -1661,7 +1704,7 @@ span[id^="showmore-wrap"] { height: 20px; width: 500px; font-weight: bold; - border: 1px solid #f6ecf9; + border: 1px solid #F6ECF9; } #jot #jot-title:-webkit-input-placeholder { font-weight: normal; @@ -1688,7 +1731,7 @@ span[id^="showmore-wrap"] { margin: 0px; height: 20px; width: 200px; - border: 1px solid #f6ecf9; + border: 1px solid #F6ECF9; } #jot #jot-category:hover { border: 1px solid #999999; @@ -2111,7 +2154,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 368e26c3a2..2faa7966f0 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -442,6 +442,20 @@ aside { /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ + .notify { + display: none; + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + float: right; + color: rgb(255, 255, 255); + margin-right: 10px; + + &.on { display: block; } + } } /* widget: search */ @@ -519,6 +533,9 @@ section { .wall-item-name { font-weight: bold; } .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; } + .wall-item-actions-events { float: left; margin-top: 0.5em; + a { margin-right: 3em; } + } .wall-item-actions-social { float: left; margin-top: 0.5em; a { margin-right: 3em; } } @@ -874,6 +891,27 @@ span[id^="showmore-wrap"] { left: 0px; top: 63px; } + .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; width: 22px; height: 22px; + position: relative; + top: 10px; + left: -10px; + z-index: 99; + } + .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; width: 22px; height: 22px; + opacity: 0.3; + position: relative; + top: 10px; + left: -10px; + z-index: 99; + } + .contact-entry-connect { + padding-top: 5px; + font-weight: bold; + } } .directory-item { float: left; @@ -884,7 +922,7 @@ span[id^="showmore-wrap"] { img { width: 175px; height: 175px; } } } -.contact-name { font-weight: bold; padding-top: 15px; } +.contact-name { font-weight: bold; /* padding-top: 15px; */} .contact-details { color: @Grey3; white-space: nowrap; overflow: hidden; diff --git a/view/theme/quattro/templates/contact_template.tpl b/view/theme/quattro/templates/contact_template.tpl index 0f0207b2bf..2d59a8a256 100644 --- a/view/theme/quattro/templates/contact_template.tpl +++ b/view/theme/quattro/templates/contact_template.tpl @@ -1,5 +1,6 @@
    + {{if $contact.ignlnk}}{{/if}}
    {{$contact.name}} - {{if !$no_contacts_checkbox}} + {{if $multiselect}} {{/if}} {{if $contact.photo_menu}} @@ -25,10 +26,19 @@
    -
    {{$contact.name}}
    +
    + {{$contact.name}} + {{if $contact.account_type}} ({{$contact.account_type}}){{/if}} +
    {{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} -
    {{$contact.itemurl}}
    -
    {{$contact.network}}
    + {{if $contact.itemurl}}
    {{$contact.itemurl}}
    {{/if}} + {{if $contact.tags}}
    {{$contact.tags}}
    {{/if}} + {{if $contact.details}}
    {{$contact.details}}
    {{/if}} + {{if $contact.network}}
    {{$contact.network}}
    {{/if}} + + {{if $contact.connlnk}} +
    {{$contact.conntxt}}
    + {{/if}}
    diff --git a/view/theme/quattro/templates/generic_links_widget.tpl b/view/theme/quattro/templates/generic_links_widget.tpl index 6f7a082c1e..1a26c9741d 100644 --- a/view/theme/quattro/templates/generic_links_widget.tpl +++ b/view/theme/quattro/templates/generic_links_widget.tpl @@ -1,11 +1,11 @@
    {{if $title}}

    {{$title}}

    {{/if}} {{if $desc}}
    {{$desc}}
    {{/if}} - + - +
    diff --git a/view/theme/quattro/templates/group_side.tpl b/view/theme/quattro/templates/group_side.tpl index d0fb5d62b6..620d2de75a 100644 --- a/view/theme/quattro/templates/group_side.tpl +++ b/view/theme/quattro/templates/group_side.tpl @@ -7,7 +7,7 @@ - + diff --git a/view/theme/quattro/templates/wall_thread.tpl b/view/theme/quattro/templates/wall_thread.tpl index 64e3794ccb..a5baff6e40 100644 --- a/view/theme/quattro/templates/wall_thread.tpl +++ b/view/theme/quattro/templates/wall_thread.tpl @@ -114,6 +114,14 @@ {{$item.vote.share.1}} {{/if}} {{/if}} + {{if $item.isevent}} +
    + + {{/if}} @@ -134,8 +142,11 @@
    - -
    {{$item.dislike}}
    + {{if $item.responses}} + {{foreach $item.responses as $verb=>$response}} +
    {{$response.output}}
    + {{/foreach}} + {{/if}}
    {{if $item.threaded}}{{if $item.comment}}{{if $item.indent==comment}} diff --git a/view/theme/quattro/theme.php b/view/theme/quattro/theme.php index 1be5c02678..a1cd29ee72 100644 --- a/view/theme/quattro/theme.php +++ b/view/theme/quattro/theme.php @@ -6,151 +6,10 @@ * Maintainer: Fabio * Maintainer: Tobias */ - + function quattro_init(&$a) { -$a->theme_info = array(); -set_template_engine($a, 'smarty3'); + $a->theme_info = array(); - -$a->page['htmlhead'] .= ''; -$a->page['htmlhead'] .= <<< EOT - -EOT; + $a->page['htmlhead'] .= ''; + $a->page['htmlhead'] .= '';; } diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index 46d8902aeb..ba0c4bff6e 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -4,7 +4,7 @@ Maintainer: Nomen Nominandum last change: 2013-05-08 -** Colors ** +** Colors ** Blue links - #1873a2 Blue link hover - #6da6c4 Blue Gradients (buttons and other gradients) - #1873a2 and #6da6c4 @@ -19,21 +19,21 @@ Orange - #fec01d @media only screen and (device-width: 768px) { /* For general iPad layouts */ #body { - -moz-background-clip: border; - -moz-background-origin: pdading; - -moz-background-size: auto auto; - background-attachment: scroll; - background-color: transparent; - background-image: url( ); - background-position: center top; + -moz-background-clip: border; + -moz-background-origin: pdading; + -moz-background-size: auto auto; + background-attachment: scroll; + background-color: transparent; + background-image: url( ); + background-position: center top; background-repeat: no-repeat; - } + } } @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { /* For portrait layouts only */ } - + @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) { /* For landscape layouts only */ } @@ -115,6 +115,10 @@ input[type=submit]:active { #search-save { } +#directory-search-end { + clear: both; +} + .dirsearch-desc { } @@ -151,7 +155,7 @@ section { -moz-box-shadow: 3px 3px 6px #959494; -webkit-box-shadow: 3px 3px 6px #959494; background-color: #efefef; - padding: 10px; + padding: 10px; } .mframe { @@ -276,8 +280,8 @@ section { } #login-name-end, -#login-password-end, -#login-extra-end, +#login-password-end, +#login-extra-end, #login-submit-end { height: 50px; } @@ -291,7 +295,7 @@ section { margin: 10px 0 0 230px; } -.login-form, +.login-form { margin-top: 10px; } @@ -392,7 +396,7 @@ nav #banner { position: absolute; margin-left: 3px; /*margin-top: 2px;*/ - padding-bottom: 5px; + padding-bottom: 5px; } nav #banner #logo-text a { @@ -426,7 +430,7 @@ nav #user-menu { -webkit-border-radius: 5px; color: #efefef; text-decoration: none; - text-align: center; + text-align: center; } nav #user-menu:hover { @@ -459,7 +463,7 @@ nav #user-menu-label { .nav-ajax-left { font-size: 0.8em; float: left; - margin-top: 62px; + margin-top: 62px; } nav #nav-link-wrapper .nav-link { @@ -500,7 +504,7 @@ ul#user-menu-popup { border-radius: 0px 0px 5px 5px; -webkit-border-radius: 0px 0px 5px 5px; -moz-border-radius: 0px 0px 5px 5px; - box-shadow: 5px 5px 10px #242424; + box-shadow: 5px 5px 10px #242424; -moz-box-shadow: 5px 5px 10px #242424; -webkit-box-shadow: 5px 5px 10px #242424; z-index: 10000; @@ -542,7 +546,7 @@ ul#user-menu-popup li a.nav-sep { .nav-ajax-update { width: 44px; height: 32px; - background: transparent url('images/notifications.png') 0px 0px no-repeat; + background: transparent url('images/notifications.png') 0px 0px no-repeat; color: #333333; font-weight: bold; font-size: 0.8em; @@ -571,32 +575,20 @@ ul#user-menu-popup li a.nav-sep { background-position: 0px 0px; } -#lang-select-icon { - bottom: 5px; - cursor: pointer; - left: 25px; - position: fixed; - z-index: 10; -} -#language-selector { - position: fixed; - bottom: 2px; - left: 55px; - z-index: 10; -} + /* =================== */ /* = System Messages = */ /* =================== */ -#sysmsg_info, +#sysmsg_info, #sysmsg { - position: fixed; - bottom: 0px; right:20%; + position: fixed; + bottom: 0px; right:20%; box-shadow: 7px 7px 10px #434343; -moz-box-shadow: 7px 7px 12px #434343; -webkit-box-shadow: 7px75px 12px #434343; - padding: 10px; + padding: 10px; background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4'); @@ -606,7 +598,7 @@ ul#user-menu-popup li a.nav-sep { -moz-border-radius: 5px 5px 0px 0px; border: 1px solid #da2c2c; border-bottom: 0px; - padding-bottom: 50px; + padding-bottom: 50px; z-index: 1000; color: #efefef; font-style: bold; @@ -770,7 +762,7 @@ h3 #search:before { background-color: #f3f3f3; border: 1px solid #7C7D7B; margin-bottom: 10px; - border-radius: 5px; + border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } @@ -901,9 +893,9 @@ li.widget-list { top: 1px; } -.group-selected, -.nets-selected, -.fileas-selected, +.group-selected, +.nets-selected, +.fileas-selected, .categories-selected { padding-bottom: 0px; padding-left: 2px; @@ -949,8 +941,8 @@ ul .sidebar-group-li .icon { list-style-type: none; } -.nets-ul li, -.fileas-ul li, +.nets-ul li, +.fileas-ul li, .categories-ul li, .datebrowse-link { } @@ -967,12 +959,12 @@ ul .sidebar-group-li .icon { margin-left: 42px; } -.fileas-link, +.fileas-link, .categories-link { margin-left: 0px; } -.fileas-all, +.fileas-all, .categories-all { margin-left: 0px; } @@ -992,7 +984,7 @@ ul .sidebar-group-li .icon { padding-bottom: 5px; vertical-align: baseline; text-align: center; - text-shadow: -1px 0px 0px #bdbdbd; + text-shadow: -1px 0px 0px #bdbdbd; } #connect-desc { @@ -1018,12 +1010,12 @@ ul .sidebar-group-li .icon { margin-right: 5px; } -.birthday-today, +.birthday-today, .event-today { font-weight: bold; } -#birthday-wrapper, +#birthday-wrapper, #event-wrapper { margin-left: 15px; } @@ -1104,11 +1096,11 @@ ul .sidebar-group-li .icon { width: 99.9% !important; } -#profile-jot-submit-wrapper { +#profile-jot-submit-wrapper { margin-top: 30px; } -#jot-title, +#jot-title, #jot-category { margin: 0px; height: 20px; @@ -1130,7 +1122,7 @@ ul .sidebar-group-li .icon { #jot-category:-moz-placeholder { font-weight: normal; } - + #jot-title:hover, #jot-title:focus, #jot-category:hover, @@ -1146,7 +1138,7 @@ ul .sidebar-group-li .icon { margin: 15px 0 15px 0; } -#profile-jot-perms, +#profile-jot-perms, #profile-jot-submit { width: 60px; font-size: 12px; @@ -1215,8 +1207,8 @@ ul .sidebar-group-li .icon { -webkit-border-radius: 5px; } -#profile-jot-perms:hover, -#profile-jot-submit:hover, +#profile-jot-perms:hover, +#profile-jot-submit:hover, #jot-preview-link:hover { background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); @@ -1231,8 +1223,8 @@ ul .sidebar-group-li .icon { -webkit-border-radius: 5px; } -#profile-jot-perms:active, -#profile-jot-submit:active, +#profile-jot-perms:active, +#profile-jot-submit:active, #jot-preview-link:active { position: relative; top: 1px; @@ -1241,11 +1233,11 @@ ul .sidebar-group-li .icon { #character-counter { position: relative; float: left; - right: 0px; + right: 0px; top: 0px; } #profile-rotator-wrapper { - float: right; + float: right; } .jot-tool { @@ -1274,7 +1266,7 @@ ul .sidebar-group-li .icon { margin: 5px; width: 95%; } - + #profile-jot-networks { margin: 0px 10%; border: 1px solid #eeeeee; @@ -1317,16 +1309,16 @@ ul .sidebar-group-li .icon { } #jot-public { - background-color: #555753; - color: #ff0000; - padding: 5px; + background-color: #555753; + color: #ff0000; + padding: 5px; float: left; } #acl-deny-text { - background-color: #555753; - color: #ccccce; - padding: 5px; + background-color: #555753; + color: #ccccce; + padding: 5px; float: left; } @@ -1396,7 +1388,7 @@ ul .sidebar-group-li .icon { .wall-item-outside-wrapper { max-width: 100%; - border-bottom: 1px solid #dedede; + border-bottom: 1px solid #dedede; margin-top: 10px; margin-bottom: 20px; padding-right: 10px; @@ -1441,7 +1433,7 @@ ul .sidebar-group-li .icon { box-shadow: 0 0 8px #BDBDBD; -moz-box-shadow: 0 0 8px #BDBDBD; -webkit-box-shadow: 0 0 8px #BDBDBD; - border-radius: 0px 0px 5px 5px; + border-radius: 0px 0px 5px 5px; -webkit-border-radius: 0px 0px 5px 5px; -moz-border-radius: 0px 0px 5px 5px; } @@ -1451,8 +1443,8 @@ ul .sidebar-group-li .icon { width: 100px; } -.wall-item-photo-wrapper { - width: 80px; +.wall-item-photo-wrapper { + width: 80px; height: 80px; padding: 0; position: relative; @@ -1465,7 +1457,7 @@ ul .sidebar-group-li .icon { -webkit-box-shadow: 0 0 8px #BDBDBD;*/ } -.wall-item-photo { +.wall-item-photo { border: 0px solid #7C7D7B; border-radius: 2px; -webkit-border-radius: 2px; @@ -1475,7 +1467,7 @@ ul .sidebar-group-li .icon { -webkit-box-shadow: 0 0 8px #BDBDBD;*/ } -.wall-item-tools { +.wall-item-tools { filter: alpha(opacity=60); opacity: 0.7; transition: all 0.25s ease-in-out; @@ -1490,12 +1482,12 @@ ul .sidebar-group-li .icon { .wall-item-tools:hover { filter: alpha(opacity=100); opacity: 1; - transition: all 0.25s ease-in-out; + transition: all 0.25s ease-in-out; -webkit-transition: all 0.25s ease-in-out; -moz-transition: all 0.25s ease-in-out; } -.wall-item-social { +.wall-item-social { filter: alpha(opacity=60); opacity: 0.7; transition: all 0.25s ease-in-out; @@ -1511,7 +1503,7 @@ ul .sidebar-group-li .icon { .wall-item-social:hover { filter: alpha(opacity=100); opacity: 1; - transition: all 0.25s ease-in-out; + transition: all 0.25s ease-in-out; -webkit-transition: all 0.25s ease-in-out; -moz-transition: all 0.25s ease-in-out; } @@ -1553,13 +1545,13 @@ ul .sidebar-group-li .icon { .star-item, .tag-item { - float: left; + float: left; } .wall-item-title { font-size: 1.2em; - font-weight: bold; - padding-top: 5px; + font-weight: bold; + padding-top: 5px; margin-left: 100px; } @@ -1570,8 +1562,8 @@ ul .sidebar-group-li .icon { max-width: 100%; } -.wall-item-body img { - max-width: 100%; +.wall-item-body img { + max-width: 100%; height: auto; border-radius: 0; } @@ -1580,8 +1572,8 @@ ul .sidebar-group-li .icon { font-size: 0.8em; } -.wall-item-lock-wrapper { - float: right; +.wall-item-lock-wrapper { + float: right; } .wall-item-dislike, @@ -1602,14 +1594,14 @@ ul .sidebar-group-li .icon { color: #898989; } -.wall-item-ago { - display: inline; - padding-left: 0px; +.wall-item-ago { + display: inline; + padding-left: 0px; color: #898989; } -.wall-item-wrapper-end { - clear:both; +.wall-item-wrapper-end { + clear:both; } .wall-item-location { @@ -1619,8 +1611,8 @@ ul .sidebar-group-li .icon { -o-text-overflow: ellipsis; } -.wall-item-location .icon { - float: left; +.wall-item-location .icon { + float: left; } .wall-item-location > a { @@ -1632,14 +1624,14 @@ ul .sidebar-group-li .icon { color: #898989; } -.wall-item-location .smalltext { - margin-left: 0px; - font-size: 0.9em; +.wall-item-location .smalltext { + margin-left: 0px; + font-size: 0.9em; display: block; } -.wall-item-location > br { - display: none; +.wall-item-location > br { + display: none; } .wall-item-conv a{ @@ -1655,16 +1647,16 @@ ul .sidebar-group-li .icon { width: 30px; z-index: 900; width: 30px; - height: 30px; + height: 30px; } -.wallwall .wwto img { - width: 30px!important; +.wallwall .wwto img { + width: 30px!important; height: 30px!important; } -.wallwall .wall-item-photo-end { - clear: both; +.wallwall .wall-item-photo-end { + clear: both; } .wall-item-arrowphoto-wrapper { @@ -1684,7 +1676,7 @@ ul .sidebar-group-li .icon { border-left: 1px solid #7C7D7B; border-bottom: 1px solid #7C7D7B; position: absolute; - left: 0px; + left: 0px; top: 101px; display: none; z-index: 10000; @@ -1706,17 +1698,17 @@ ul .sidebar-group-li .icon { -webkit-box-shadow: 0 0 8px #BDBDBD; } -.wall-item-photo-menu ul { - margin: 0px; - padding: 0px; +.wall-item-photo-menu ul { + margin: 0px; + padding: 0px; list-style: none; } -.wall-item-photo-menu li a { - white-space: nowrap; - display: block; - padding: 5px 2px; - color: #2e3436; +.wall-item-photo-menu li a { + white-space: nowrap; + display: block; + padding: 5px 2px; + color: #2e3436; } .wall-item-photo-menu li a:hover { @@ -1724,7 +1716,7 @@ ul .sidebar-group-li .icon { background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4'); - background-color: #1873a2; + background-color: #1873a2; } .wall-item-container .wall-item-content .type-link img, @@ -1781,12 +1773,12 @@ blockquote.shared_content { } .icon.drop, -.icon.drophide { +.icon.drophide { float: left; } #item-delete-selected-end, -#item-delete-selected { +#item-delete-selected { overflow: auto; margin-top: 0px; float: right; @@ -1803,14 +1795,14 @@ code { background: #EEE; color: #444; padding: 10px; - margin-top: 10px; + margin-top: 10px; } /* ============ */ /* = Comments = */ /* ============ */ - + .ccollapse-wrapper { font-size: 0.9em; color: #898989; @@ -1831,7 +1823,7 @@ code { .collapsed-comments, .hide-comments, .hide-comments-outer, -.wall-item-outside-wrapper.comment { +.wall-item-outside-wrapper.comment { margin-left: 30px; margin-bottom: 20px; } @@ -1845,7 +1837,7 @@ code { } .wall-item-outside-wrapper.comment .wall-item-photo-wrapper { - width: 40px; + width: 40px; height: 40px; border-radius: 3px; -webkit-border-radius: 3px; @@ -1856,9 +1848,9 @@ code { top: 42px; background-position: 15px center; } - -.wall-item-outside-wrapper.comment .wall-item-info { - width: 60px; + +.wall-item-outside-wrapper.comment .wall-item-info { + width: 60px; } .wall-item-outside-wrapper.comment .wall-item-body { @@ -1868,8 +1860,8 @@ code { padding-left: 0px; } -.wall-item-outside-wrapper.comment .wall-item-author { - margin-left: 60px; +.wall-item-outside-wrapper.comment .wall-item-author { + margin-left: 60px; } .wall-item-outside-wrapper.comment .wall-item-photo-menu { @@ -1882,28 +1874,28 @@ code { } .comment-wwedit-wrapper, -.comment-edit-wrapper { +.comment-edit-wrapper { margin: 0px 0px 5px 0px; } .comment-wwedit-wrapper img, -.comment-edit-wrapper img { - width: 20px; +.comment-edit-wrapper img { + width: 20px; height: 20px; margin-top: 5px; } -.comment-edit-photo-link { - float: left; +.comment-edit-photo-link { + float: left; width: 30px; } -.comment-edit-text-empty { +.comment-edit-text-empty { width: 98%; max-width: 672px; height: 20px; color: #babdb6; - transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; } @@ -1912,20 +1904,20 @@ code { color: #999999; } -.comment-edit-text-full { +.comment-edit-text-full { width: 98%; max-width: 672px; height: 6em; - transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; } -.comment-edit-submit-wrapper { +.comment-edit-submit-wrapper { width: 98%; max-width: 672px; - margin-left: 20px; - text-align: left; + margin-left: 20px; + text-align: left; } .comment-edit-submit { @@ -1966,7 +1958,7 @@ code { border: 1px solid #cccccc; border-width: 1px 1px 1px 3px; padding-left: 5px; - margin-top: 10px; + margin-top: 10px; } /* =========== */ @@ -1986,16 +1978,16 @@ code { padding-bottom: 5px; font-size: 18px; } - -div[id$="wrapper"] { + +div[id$="wrapper"] { height: 100%; } - -div[id$="wrapper"] br { - clear: left; + +div[id$="wrapper"] br { + clear: left; } -#advanced-profile-with { +#advanced-profile-with { margin-left: 20px; } @@ -2038,15 +2030,15 @@ div[id$="wrapper"] br { } #profile-edit-links li a { - color: #efefef; + color: #efefef; } #profile-edit-links li:hover { - background-color: #1873a2; + background-color: #1873a2; } #profile-edit-links li:active { - background-color: #1873a2; + background-color: #1873a2; } #profile-edit-links-end { @@ -2062,12 +2054,12 @@ div[id$="wrapper"] br { position: absolute; } -#cropimage-wrapper { - float:left; +#cropimage-wrapper { + float:left; } -#crop-image-form { - clear:both; +#crop-image-form { + clear:both; } .profile-match-name { @@ -2184,18 +2176,18 @@ div[id$="wrapper"] br { } #photo-top-links:hover { - background-color: #1873a2; + background-color: #1873a2; } #photo-top-links:active { - background-color: #1873a2; + background-color: #1873a2; } -.photo-album-image-wrapper { +.photo-album-image-wrapper { float: left; margin: 0px 10px 10px 0px; padding-bottom: 30px; - position: relative; + position: relative; } .photo-top-image-wrapper { @@ -2215,25 +2207,25 @@ div[id$="wrapper"] br { overflow: hidden; } -#photo-photo { - max-width: 85%; - height: auto; +#photo-photo { + max-width: 85%; + height: auto; } -#photo-photo img { - max-width: 100% +#photo-photo img { + max-width: 100% } .photo-top-image-wrapper a:hover, #photo-photo a:hover, -.photo-album-image-wrapper a:hover { - border-bottom: 0px; +.photo-album-image-wrapper a:hover { + border-bottom: 0px; } .photo-top-photo { width: 180px; } -.photo-album-photo {} +.photo-album-photo {} .photo-top-album-name { position: absolute; @@ -2241,7 +2233,7 @@ div[id$="wrapper"] br { padding: 0px 5px; font-weight: bold; font-stretch: semi-expanded; -} +} .photo-top-album-name a { text-align: center; @@ -2258,7 +2250,7 @@ div[id$="wrapper"] br { #photo-photo { position: relative; - float: left; + float: left; } #photo-caption { @@ -2267,8 +2259,8 @@ div[id$="wrapper"] br { font-size: 1.1em; } -#photo-photo-end { - clear: both; +#photo-photo-end { + clear: both; } #photo-prev-link, @@ -2282,58 +2274,58 @@ div[id$="wrapper"] br { -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; background-position: center center; - background-repeat: no-repeat; + background-repeat: no-repeat; } -#photo-prev-link { - left: 0px; - top: 0px; - background-image: url('images/prev.png'); +#photo-prev-link { + left: 0px; + top: 0px; + background-image: url('images/prev.png'); } -#photo-next-link { - right: 0px; - top: 0px; +#photo-next-link { + right: 0px; + top: 0px; background-image: url('images/next.png'); } #photo-prev-link a, #photo-next-link a { - display: block; - width: 100%; + display: block; + width: 100%; height: 100%; overflow: hidden; - text-indent: -900000px; + text-indent: -900000px; } #photo-prev-link:hover, #photo-next-link:hover { opacity: 1; - transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; } #photo-next-link .icon, -#photo-prev-link .icon { +#photo-prev-link .icon { display: none; } #photos-upload-spacer, #photos-upload-new-wrapper, -#photos-upload-exist-wrapper { +#photos-upload-exist-wrapper { margin-bottom: 1em; } #photos-upload-existing-album-text, -#photos-upload-newalbum-div { +#photos-upload-newalbum-div { color: #909090; padding: 3px 0px; width: 300px; } #photos-upload-album-select, -#photos-upload-newalbum { +#photos-upload-newalbum { width: 400px; margin-bottom: 10px; } @@ -2361,8 +2353,8 @@ select, input { -webkit-border-radius: 3px; } -select[size], -select[multiple], +select[size], +select[multiple], select[size][multiple] { margin: 5px 0px 10px 0px; } @@ -2371,7 +2363,7 @@ select { -webkit-appearance: menulist; box-sizing: border-box; -webkit-box-align: center; - cursor: default; + cursor: default; } textarea, keygen { @@ -2384,7 +2376,7 @@ textarea, keygen { text-indent: 0px; text-shadow: none; display: inline-block; - text-align: -webkit-auto; + text-align: -webkit-auto; } input { @@ -2463,8 +2455,8 @@ input #photo_edit_form { /* = Messages = */ /* ============ */ -#prvmail-wrapper, -.mail-conv-detail, +#prvmail-wrapper, +.mail-conv-detail, .mail-list-detail { position: relative; width: 550px; @@ -2480,11 +2472,11 @@ input #photo_edit_form { -webkit-border-radius: 5px; } -#prvmail-wrapper:before, -#prvmail-wrapper:after, -.mail-conv-detail:before, -.mail-conv-detail:after, -.mail-list-detail:before, +#prvmail-wrapper:before, +#prvmail-wrapper:after, +.mail-conv-detail:before, +.mail-conv-detail:after, +.mail-list-detail:before, .mail-list-detail:after { position: absolute; width: 40%; @@ -2508,8 +2500,8 @@ input #photo_edit_form { -webkit-border-radius: 5px; } -#prvmail-wrapper:after, -.mail-conv-detail:after, +#prvmail-wrapper:after, +.mail-conv-detail:after, .mail-list-detail:after { left: auto; right: 12px; @@ -2530,10 +2522,10 @@ input #photo_edit_form { #prvmail-form input -#prvmail-subject { - width: 490px; - padding-left: 10px; - font-size: 1.1em; +#prvmail-subject { + width: 490px; + padding-left: 10px; + font-size: 1.1em; font-style: bold; } @@ -2550,11 +2542,11 @@ input #photo_edit_form { #prvmail-to-label {} #prvmail-message-label { - font-size: 1em; + font-size: 1em; } -#prvmail-submit-wrapper { - margin-top: 10px; +#prvmail-submit-wrapper { + margin-top: 10px; } #prvmail-submit { @@ -2564,7 +2556,7 @@ input #photo_edit_form { } #prvmail-upload { -margin-left: 0px; +margin-left: 0px; } #prvmail-submit-wrapper > div { @@ -2597,7 +2589,7 @@ margin-left: 0px; padding-top: 10px; border: 1px solid #7C7D7B; } - + .mail-list-sender-name { font-size: 1.1em; display: inline; @@ -2623,7 +2615,7 @@ margin-left: 0px; color: #626262; } -.mail-list-delete-wrapper { +.mail-list-delete-wrapper { float: right; } @@ -2638,7 +2630,7 @@ margin-left: 0px; .mail-conv-sender { float: left; - margin: 0px 5px 5px 0px; + margin: 0px 5px 5px 0px; } .mail-conv-sender-photo { @@ -2647,18 +2639,18 @@ margin-left: 0px; border-radius: 3px 3px 3px 3px; } -.mail-conv-sender-name { - float: left; - font-style: bold; +.mail-conv-sender-name { + float: left; + font-style: bold; } -.mail-conv-date { - float: right; +.mail-conv-date { + float: right; } -.mail-conv-subject { - clear: right; - font-weight: bold; +.mail-conv-subject { + clear: right; + font-weight: bold; font-size: 1.2em; } @@ -2677,15 +2669,15 @@ margin-left: 0px; border: 1px solid #7C7D7B; } -.mail-conv-break { - display: none; +.mail-conv-break { + display: none; border: none; } -.mail-conv-delete-wrapper { - padding-top: 10px; - width: 510px; - text-align: right; +.mail-conv-delete-wrapper { + padding-top: 10px; + width: 510px; + text-align: right; } #prvmail-subject { @@ -2693,6 +2685,13 @@ margin-left: 0px; border: 1px solid #7C7D7B; } +/* ========== */ +/* = Poke = */ +/* ========== */ +#poke-recip { + float: none; +} + /* ================= */ /* = Notifications = */ /* ================= */ @@ -2753,11 +2752,10 @@ margin-left: 0px; .view-contact-wrapper, .contact-entry-wrapper { float: left; - margin-right: 30px; - margin-bottom: 20px; - width: 88px; + padding-right: 10px; + width: 345px; height: 120px; - position: relative; + margin: 0 10px 10px 0px; } #view-contact-end { @@ -2768,33 +2766,47 @@ margin-left: 0px; margin-top: 15px; } +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; +} .contact-entry-direction-wrapper { position: absolute; top: 20px; } -.contact-entry-edit-links { - position: absolute; - top: 60px; +.contact-entry-edit-links { + position: absolute; + top: 60px; } -#contacts-show-hide-link { - margin-bottom: 20px; - margin-top: 10px; +#contacts-show-hide-link { + margin-bottom: 20px; + margin-top: 10px; font-weight: bold; } -.contact-entry-name { - width: 100px; +.contact-entry-desc { + overflow: hidden; +} + +.contact-entry-name, .contact-entry-connect { overflow: hidden; font: #999; font-size: 12px; - text-align: center; font-weight: bold; margin-top: 5px; } -.contact-entry-photo { +.contact-entry-details { + font-size: 13px; + color: #999999; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.contact-entry-photo-wrapper { position: relative; /*border: 1px solid #7C7D7B; border-radius: 3px; @@ -2805,7 +2817,16 @@ margin-left: 0px; -webkit-box-shadow: 0 0 8px #BDBDBD;*/ } -.contact-entry-edit-links .icon { +.contact-entry-photo { + width: 80px; +} + +.contact-entry-photo a img { + width: 80px; + height: 80px; +} + +.contact-entry-edit-links .icon { border: 1px solid #babdb6; border-radius: 3px; -webkit-border-radius: 3px; @@ -2813,9 +2834,9 @@ margin-left: 0px; background-color: #ffffff; } -#contact-edit-banner-name { - font-size: 1.5em; - margin-left: 30px; +#contact-edit-banner-name { + font-size: 1.5em; + margin-left: 30px; } #contact-edit-update-now { @@ -2883,16 +2904,16 @@ margin-left: 0px; .contact-photo-menu-button { position: absolute; background-image: url("images/photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; - margin: 10px 0 0 0; + margin: 10px 0 0 0; padding: 0px; width: 16px; height: 16px; top: 64px; left:0px; overflow: hidden; text-indent: 40px; - display: none; + display: none; } .contact-photo-menu { @@ -2900,7 +2921,7 @@ margin-left: 0px; border: 1px solid #ddd; background: #f1f1f1; position: absolute; - left: 0px; + left: 0px; top: 90px; display: none; z-index: 10000; @@ -2909,17 +2930,17 @@ margin-left: 0px; -webkit-box-shadow: 3px 3px 5px #888; } -.contact-photo-menu ul { - margin: 0px; - padding: 0px; - list-style: none; +.contact-photo-menu ul { + margin: 0px; + padding: 0px; + list-style: none; } -.contact-photo-menu li a { - display: block; - padding: 3px; - color: #626262; - font-size: 1em; +.contact-photo-menu li a { + display: block; + padding: 3px; + color: #626262; + font-size: 1em; } .contact-photo-menu li a:hover { @@ -2990,7 +3011,7 @@ margin-left: 0px; background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4'); - background-color: #1873a2; + background-color: #1873a2; border: 1px solid #7C7D7B; box-shadow: 0 0 8px #BDBDBD; -moz-box-shadow: 0 0 8px #BDBDBD; @@ -3007,19 +3028,19 @@ margin-left: 0px; #side-match-link:active { background-color: #1873a2; position: relative; - top: 1px; + top: 1px; } #side-invite-link a, #side-random-profile-link a, #side-suggest-link a, #side-match-link a { - color: #efefef; + color: #efefef; } #invite-message, -#invite-recipients, +#invite-recipients, #invite-recipient-text { padding: 10px; } @@ -3039,7 +3060,7 @@ margin-left: 0px; #side-follow-wrapper label{ font-size: 1.1em; - font-variant: normal; + font-variant: normal; } #contact-suggest { @@ -3061,7 +3082,7 @@ margin-left: 0px; padding: 5px 10px 5px 10px; color: #efefef; font-size: 1.2em; - text-align: center; + text-align: center; } #contact-suggest:hover { @@ -3069,13 +3090,13 @@ margin-left: 0px; background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4'); - background-color: #1873a2; + background-color: #1873a2; } #contact-suggest:active { background-color: #1873a2; position: relative; - top: 1px; + top: 1px; } #contact-suggest a { @@ -3098,7 +3119,7 @@ margin-left: 0px; /* = Register, Settings, Profile Forms = */ /* ===================================== */ -#id_openid_url, +#id_openid_url, .openid input { background: url(images/login-bg.gif) no-repeat; background-position: 0 50%; @@ -3202,7 +3223,7 @@ margin-left: 0px; position: relative; top: 1px; } - + #settings-nickname-desc { width: 80%; background-color: #efefef; @@ -3218,7 +3239,7 @@ margin-left: 0px; clear: both; } -#profile-edit-form div { +#profile-edit-form div { margin-bottom: 5px; } @@ -3229,7 +3250,7 @@ margin-left: 0px; #register-form label, #profile-edit-form label { - width: 575px; + width: 575px; float: right; margin-right: 155px; } @@ -3242,20 +3263,20 @@ margin-left: 0px; .settings-submit, .settings-submit-wrapper, -.profile-edit-submit-wrapper { +.profile-edit-submit-wrapper { margin: 30px 0px; } .profile-listing, -.profile-listing-end { - float: left; - clear: both; +.profile-listing-end { + float: left; + clear: both; margin: 20px 20px 0px 0px; } -#register-sitename { - display: inline; +#register-sitename { + display: inline; font-weight: bold; } @@ -3263,17 +3284,17 @@ margin-left: 0px; margin-top: 10px; } -#label-register-name, -#label-register-email, -#label-register-nickname, +#label-register-name, +#label-register-email, +#label-register-nickname, #label-register-openid { float: left; width: 350px; margin-top: 10px; } -#register-name, -#register-email, +#register-name, +#register-email, #register-nickname { float: left; margin-top: 10px; @@ -3290,10 +3311,10 @@ margin-left: 0px; margin-bottom: 25px; } -#register-name-end, -#register-email-end, -#register-nickname-end, -#register-submit-end, +#register-name-end, +#register-email-end, +#register-nickname-end, +#register-submit-end, #register-openid-end { clear: both; } @@ -3343,14 +3364,14 @@ margin-left: 0px; background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4'); - background-color: #1873a2; + background-color: #1873a2; } .group-delete-wrapper:active { background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4'); - background-color: #1873a2; + background-color: #1873a2; } .group-delete-wrapper a { @@ -3358,8 +3379,8 @@ margin-left: 0px; font-size: 0.9em; } -#group-edit-desc { - margin: 10px 0xp; +#group-edit-desc { + margin: 10px 0xp; } #group-new-text { @@ -3369,7 +3390,7 @@ margin-left: 0px; #group-members, #prof-members { width: 83%; - height: 200px; + height: 200px; overflow: auto; border: none; background-color: #f0edf0; @@ -3380,10 +3401,10 @@ margin-left: 0px; } #group-all-contacts, -#prof-all-contacts { +#prof-all-contacts { width: 83%; height: 200px; - overflow: auto; + overflow: auto; border: 1px solid #ccc; background-color: #f0edf0; padding: 10px; @@ -3399,7 +3420,7 @@ margin-left: 0px; } #group-separator, -#prof-separator { +#prof-separator { display: none; } @@ -3409,7 +3430,7 @@ margin-left: 0px; #events-reminder {} -.clear { +.clear { clear: both; margin-top: 10px; } @@ -3433,7 +3454,7 @@ margin-left: 0px; -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1); } -.vevent:before, +.vevent:before, .vevent:after { position: absolute; width: 40%; @@ -3479,7 +3500,7 @@ margin-left: 0px; text-align: center; } -.vevent .event-start, +.vevent .event-start, .vevent .event-end { margin-left: 20px; margin-right: 20px; @@ -3539,13 +3560,13 @@ margin-left: 0px; vertical-align: middle; } -.event-start, +.event-start, .event-end { margin-left: 10px; width: 330px; } -.event-start .dtstart, +.event-start .dtstart, .event-end .dtend { float: right; } @@ -3556,7 +3577,7 @@ margin-left: 0px; font-stretch: condensed; } -.prevcal, +.prevcal, .nextcal { float: left; margin-left: 32px; @@ -3607,7 +3628,7 @@ margin-left: 0px; } .calendar th { - font-size: 16px; + font-size: 16px; } .today { @@ -3616,16 +3637,16 @@ margin-left: 0px; background-color: #1873a2; color: #ffffff; } - -#event-start-text, + +#event-start-text, #event-finish-text { margin-top: 10px; margin-bottom: 5px; } -#event-nofinish-checkbox, -#event-nofinish-text, -#event-adjust-checkbox, +#event-nofinish-checkbox, +#event-nofinish-text, +#event-adjust-checkbox, #event-adjust-text, #event-share-checkbox { float: left; @@ -3635,13 +3656,13 @@ margin-left: 0px; margin-bottom: 10px; } -#event-nofinish-break, +#event-nofinish-break, #event-adjust-break, #event-share-break { clear: both; } -#event-desc-text, +#event-desc-text, #event-location-text { margin-top: 10px; margin-bottom: 5px; @@ -3667,7 +3688,7 @@ margin-left: 0px; .directory-name { font-size: 1em; - width: 150px; + width: 150px; } /* ========= */ @@ -3725,9 +3746,9 @@ margin-left: 0px; clear:left; } -#adminpage +#adminpage #pluginslist { - margin: 0px; + margin: 0px; padding: 0px; } @@ -3752,30 +3773,30 @@ margin-left: 0px; } #adminpage table { - width: 100%; - border-bottom: 1p solid #000000; + width: 100%; + border-bottom: 1p solid #000000; margin: 5px 0px; } -#adminpage table th { +#adminpage table th { text-align: left; } -#adminpage td .icon { +#adminpage td .icon { float: left; } -#adminpage table#users img { - width: 16px; - height: 16px; +#adminpage table#users img { + width: 16px; + height: 16px; } -#adminpage table tr:hover { - background-color: #eeeeee; +#adminpage table tr:hover { + background-color: #eeeeee; } -#adminpage .selectall { - text-align: right; +#adminpage .selectall { + text-align: right; } /* =============== */ @@ -3819,16 +3840,16 @@ margin-left: 0px; -webkit-border-radius: 5px; } -.field password { +.field password { height: 100px; - margin-left: 150px; + margin-left: 150px; } .field_help { display: block; margin-left: 0px; margin-bottom: 10px; - color: #666666; + color: #666666; } .field .onoff { @@ -3862,8 +3883,8 @@ margin-left: 0px; text-align: left; } -.field .radio .field_help { - margin-left: 0px; +.field .radio .field_help { + margin-left: 0px; } /* ========= */ @@ -3892,16 +3913,16 @@ margin-left: 0px; .icon { margin-left: 5px; margin-right: 5px; - display: block; - width: 20px; + display: block; + width: 20px; height: 20px; background-image: url("images/icons.png"); } -.starred { +.starred { background-image: url("images/star.png"); repeat: no-repeat; } -.unstarred { +.unstarred { background-image: url("images/premium.png"); repeat: no-repeat; } @@ -3913,7 +3934,7 @@ margin-left: 0px; .border { border: 1px solid #c1c1c1; - border-radius: 3px; + border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; } @@ -3982,9 +4003,9 @@ margin-left: 0px; /* = Footer = */ /* ========== */ -.cc-license { - margin-top: 100px; - font-size: 0.7em; +.cc-license { + margin-top: 100px; + font-size: 0.7em; } footer { display: block; margin: 50px 20%; clear: both; } @@ -4104,7 +4125,7 @@ tools { overflow: hidden; } -.acl-list-item a { +.acl-list-item a { font-size: 10px; display: block; float: left; @@ -4236,21 +4257,21 @@ ul.menu-popup { -webkit-box-shadow: 5px 5px 10px #242424; } -#nav-notifications-menu .contactname { - font-weight: bold; - font-size: 0.9em; +#nav-notifications-menu .contactname { + font-weight: bold; + font-size: 0.9em; } -#nav-notifications-menu img { - float: left; - margin-right: 5px; +#nav-notifications-menu img { + float: left; + margin-right: 5px; } -#nav-notifications-menu .notif-when { - font-size: 0.8em; - display: block; +#nav-notifications-menu .notif-when { + font-size: 0.8em; + display: block; } - + #nav-notifications-menu li { padding: 7px 0px 7px 10px; word-wrap: normal; @@ -4308,7 +4329,7 @@ ul.menu-popup { } .acpopupitem { - color: #2e3436; + color: #2e3436; padding: 4px; clear:left; } @@ -4322,7 +4343,7 @@ ul.menu-popup { background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1873a2', endColorstr='#6da6c4'); - background-color: #1873a2; + background-color: #1873a2; order-bottom: none; } @@ -4416,20 +4437,20 @@ div.wall-item-content-wrapper.shiny { } /* from default */ -#jot-perms-icon, +#jot-perms-icon, #profile-location, #profile-nolocation, -#profile-youtube, -#profile-video, +#profile-youtube, +#profile-video, #profile-audio, #profile-link, -#profile-title, +#profile-title, #wall-image-upload, #wall-file-upload, #profile-upload-wrapper, #wall-image-upload-div, #wall-file-upload-div, -.hover, +.hover, .focus { cursor: pointer; } @@ -4439,15 +4460,15 @@ hr.line-dots { border: medium none; } -.body-tag, -.filesavetags, +.body-tag, +.filesavetags, .categorytags { opacity: 0.5; filter:alpha(opacity=50); } -.body-tag:hover, -.filesavetags:hover, +.body-tag:hover, +.filesavetags:hover, .categorytags:hover { opacity: 1.0 !important; filter:alpha(opacity=100) !important; @@ -4460,7 +4481,7 @@ hr.line-dots { margin-right: 10px; } -.item-select:hover, +.item-select:hover, .checkeditem { opacity: 1; filter:alpha(opacity=100); @@ -4490,10 +4511,10 @@ hr.line-dots { color: #888888; } -.location, -.location-label, -.gender-label, -.marital-label, +.location, +.location-label, +.gender-label, +.marital-label, .homepage-label { float: left; text-align: left; @@ -4501,9 +4522,9 @@ hr.line-dots { line-height: 0.6em; } -.adr, -.x-gender, -.marital-text, +.adr, +.x-gender, +.marital-text, .homepage-url { float: left; display: block; @@ -4541,8 +4562,8 @@ div #datebrowse-sidebar.widget { /* Fakelink */ -.fakelink, -.fakelink:visited, +.fakelink, +.fakelink:visited, .fakelink:link { color: #1873a2; cursor: pointer; diff --git a/view/theme/smoothly/templates/lang_selector.tpl b/view/theme/smoothly/templates/lang_selector.tpl deleted file mode 100644 index d9a90e7b83..0000000000 --- a/view/theme/smoothly/templates/lang_selector.tpl +++ /dev/null @@ -1,11 +0,0 @@ - -
    - diff --git a/view/theme/testbubble/style.css b/view/theme/testbubble/style.css index 5468061acd..fc81d3e1e5 100644 --- a/view/theme/testbubble/style.css +++ b/view/theme/testbubble/style.css @@ -1,7 +1,7 @@ /* style.css TestBubble - + Created by Anne Walk and Devlon Duthie on 2011-09-24. Based loosely on the Dipsy theme. */ @@ -25,7 +25,7 @@ body { font-family: freesans,helvetica,arial,clean,sans-serif; font-size: 15px; color: #626262; - width: 100%; + width: 100%; } img { border: 0 none; max-width: 550px; } @@ -74,7 +74,7 @@ input[type=text] { margin: 0px; -webkit-border-radius: 3px 3px 3px 3px; -moz-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; + border-radius: 3px 3px 3px 3px; } input[type=submit] { @@ -118,7 +118,7 @@ section { float: left; margin-left: 8%; padding-top: 50px; - width: 50%; + width: 50%; margin: 20px 0px 30px 10%; font-size: 0.9em; line-height: 1.2em; @@ -130,7 +130,7 @@ section { -webkit-box-shadow: 3px 3px 6px #959494; box-shadow: 3px 3px 6px #959494; background-color: #efefef; - padding: 10px; + padding: 10px; } .mframe { @@ -160,7 +160,7 @@ section { -webkit-border-radius:5px; border-radius:5px; color:#efefef; - text-align: center; + text-align: center; } .button:hover { @@ -169,7 +169,7 @@ section { background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); background-color:#b20202; - color: #efefef; + color: #efefef; } .button:active { @@ -197,7 +197,7 @@ section { #login-password-wrapper { vertical-align: middle; - margin: auto; + margin: auto; } #login-extra-links { @@ -210,7 +210,7 @@ section { margin: 10px; padding: 5px 0px 5px 0px; text-align: center; - margin-right: 20px; + margin-right: 20px; } #login-extra-filler { @@ -282,7 +282,7 @@ nav #banner { position: absolute; margin-left: 10px; margin-top: 5px; - padding-bottom:5px; + padding-bottom:5px; } nav #banner #logo-text a { display: hidden; @@ -292,7 +292,7 @@ nav #banner #logo-text a { } nav #user-menu { - display: block; + display: block; width: 250px; float: right; margin-right:20%; @@ -310,7 +310,7 @@ nav #user-menu { border: 1px solid #9A9A9A; color:#efefef; text-decoration:none; - text-align: center; + text-align: center; } nav #user-menu-label::after { @@ -341,11 +341,11 @@ ul#user-menu-popup { border: 1px solid #9a9a9a; border-top: none; -webkit-border-radius: 0px 0px 5px 5px; - -moz-border-radius: 0px 0px 5px 5px; + -moz-border-radius: 0px 0px 5px 5px; border-radius: 0px 0px 5px 5px; -moz-box-shadow: 5px 5px 10px #242424; -webkit-box-shadow: 5px 5px 10px #242424; - box-shadow: 5px 5px 10px #242424; + box-shadow: 5px 5px 10px #242424; z-index: 10000; } @@ -373,7 +373,7 @@ ul#user-menu-popup li a.nav-sep { border-top: 1px solid #989898; border-style:in .nav-ajax-update { width: 44px; height: 32px; - background: transparent url('notifications.png') 0px 0px no-repeat; + background: transparent url('notifications.png') 0px 0px no-repeat; color: #efefef; font-weight: bold; font-size: 0.8em; @@ -388,30 +388,19 @@ ul#user-menu-popup li a.nav-sep { border-top: 1px solid #989898; border-style:in #intro-update { background-position: 0px -84px; } #home-update { background-position: 0px 0px; } -#lang-select-icon { - cursor: pointer; - position: absolute; - left: 5px; - top: 5px; -} -#language-selector { - position: absolute; - top: 0; - left: 16px; -} /* =================== */ /* = System Messages = */ /* =================== */ #sysmsg_info, #sysmsg { - position:fixed; - bottom: 0px; right:20%; + position:fixed; + bottom: 0px; right:20%; -moz-box-shadow: 7px 7px 12px #434343; -webkit-box-shadow: 7px75px 12px #434343; box-shadow: 7px 7px 10px #434343; - padding: 10px; + padding: 10px; background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) ); background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); @@ -421,7 +410,7 @@ ul#user-menu-popup li a.nav-sep { border-top: 1px solid #989898; border-style:in border-radius: 5px 5px 0px 0px; border: 1px solid #da2c2c; border-bottom:0px; - padding-bottom: 50px; + padding-bottom: 50px; z-index: 1000; color: #efefef; font-style: bold; @@ -479,7 +468,7 @@ aside a{ border: 1px solid #dddddd; -moz-box-shadow: 3px 3px 4px #959494; -webkit-box-shadow: 3px 3px 4px #959494; - box-shadow: 3px 3px 4px #959494; + box-shadow: 3px 3px 4px #959494; } aside h4 { font-size: 1.3em; } @@ -560,7 +549,7 @@ h3#search:before { margin-bottom: 10px; -webkit-border-radius: 5px 5px 5px 5px; -moz-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; } #group-sidebar { @@ -700,7 +689,7 @@ ul .sidebar-group-li .icon{ padding-bottom: 5px; vertical-align: baseline; text-align: center; - text-shadow:-1px 0px 0px #bdbdbd; + text-shadow:-1px 0px 0px #bdbdbd; } #group-sidebar h3:before{ @@ -751,7 +740,7 @@ ul .sidebar-group-li .icon{ } .contact-block-textdiv { width: 150px; height: 34px; float: left; } -#contact-block-end { clear: both; } +#contact-block-end { clear: both; } /* ======= */ /* = Jot = */ @@ -759,7 +748,7 @@ ul .sidebar-group-li .icon{ #profile-jot-text_tbl { margin-bottom: 10px; } #profile-jot-text_ifr { width: 99.9%!important } -#profile-jot-submit-wrapper { +#profile-jot-submit-wrapper { } @@ -774,11 +763,11 @@ ul .sidebar-group-li .icon{ #jot-title::-webkit-input-placeholder{font-weight: normal;} #jot-title:-moz-placeholder{font-weight: normal;} - - + + #jot-title:hover, #jot-title:focus { - border: 1px solid #cccccc; + border: 1px solid #cccccc; } .preview { @@ -838,7 +827,7 @@ ul .sidebar-group-li .icon{ position: absolute: right: 100px; top:100px; } #profile-rotator-wrapper { - float: right; + float: right; } .jot-tool { @@ -855,7 +844,7 @@ ul .sidebar-group-li .icon{ } #profile-jot-email-label { background-color: #555753; color: #ccccce; padding: 5px;} #profile-jot-email { margin: 5px; width: 98%; } - + #profile-jot-networks { margin: 0px 10%; border: 1px solid #eeeeee; @@ -928,7 +917,7 @@ profile-jot-banner-wrapper { .wall-item-outside-wrapper { max-width: 93%; - border-bottom: 1px solid #dedede; + border-bottom: 1px solid #dedede; margin-top: 20px; padding-right: 10px; padding-left: 12px; @@ -944,27 +933,27 @@ profile-jot-banner-wrapper { background: #eeeeee url("menu-user-pin.png") no-repeat 75px center; position: absolute; overflow: hidden; - height: 20px; width: 90px; + height: 20px; width: 90px; top: 85px; left: -1px; -webkit-border-radius: 0px 0px 5px 5px; -moz-border-radius: 0px 0px 5px 5px; - border-radius: 0px 0px 5px 5px; + border-radius: 0px 0px 5px 5px; } .wall-item-info { float: left; width: 140px; } -.wall-item-photo-wrapper { - width: 80px; height: 80px; +.wall-item-photo-wrapper { + width: 80px; height: 80px; position: relative; } -.wall-item-tools { +.wall-item-tools { filter: alpha(opacity=60); opacity: 0.7; -webkit-transition: all 0.25s ease-in-out; -moz-transition: all 0.25s ease-in-out; -o-transition: all 0.25s ease-in-out; -ms-transition: all 0.25s ease-in-out; - transition: all 0.25s ease-in-out; + transition: all 0.25s ease-in-out; margin-left: 140px; margin-top: 10px; padding-bottom: 6px; @@ -977,7 +966,7 @@ profile-jot-banner-wrapper { -moz-transition: all 0.25s ease-in-out; -o-transition: all 0.25s ease-in-out; -ms-transition: all 0.25s ease-in-out; - transition: all 0.25s ease-in-out; + transition: all 0.25s ease-in-out; margin-left: 140px; } @@ -1014,12 +1003,12 @@ profile-jot-banner-wrapper { .star-item { margin-left: 5px; margin-right: 2px; - float: left; + float: left; } .tag-item { margin-left: 5px; margin-right: 2px; - float: left; + float: left; } .wall-item-title { font-size: 1.2em; font-weight: bold;} .wall-item-body { @@ -1048,7 +1037,7 @@ profile-jot-banner-wrapper { color: #898989; } -.wall-item-ago { display: inline; padding-left: 10px; color: #898989;} +.wall-item-ago { display: inline; padding-left: 10px; color: #898989;} .wall-item-wrapper-end { clear:both; } .wall-item-location { margin-top:5px; @@ -1083,7 +1072,7 @@ profile-jot-banner-wrapper { width: 30px; z-index: 900; width: 30px; - height: 30px; + height: 30px; } .wallwall .wwto img { width: 30px!important; height: 30px!important;} @@ -1140,7 +1129,7 @@ profile-jot-banner-wrapper { background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) ); background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); - background-color:#b20202; + background-color:#b20202; order-bottom: none; } @@ -1152,14 +1141,14 @@ profile-jot-banner-wrapper { /* ============ */ /* = Comments = */ /* ============ */ - + .ccollapse-wrapper { font-size: 0.9em; color: #898989; margin-left: 60px; /* font-variant:small-caps; */ } - + .wall-item-outside-wrapper.comment { margin-left: 70px; } .wall-item-outside-wrapper.comment .wall-item-photo { width: 40px!important; @@ -1197,7 +1186,7 @@ profile-jot-banner-wrapper { .comment-wwedit-wrapper img, .comment-edit-wrapper img { width: 20px; height: 20px; } .comment-edit-photo-link { float: left; width: 40px;} -.comment-edit-text-empty { +.comment-edit-text-empty { width: 80%; height: 20px; border: 0px; @@ -1206,7 +1195,7 @@ profile-jot-banner-wrapper { -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; - transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; } .comment-edit-text-empty:hover { color: #999999;} .comment-edit-text-full { width: 80%; height: 6em; @@ -1214,7 +1203,7 @@ profile-jot-banner-wrapper { -moz-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; - transition: all 0.5s ease-in-out; + transition: all 0.5s ease-in-out; } .comment-edit-submit-wrapper { width: 80%; margin-left: 40px; text-align: right; } .comment-edit-submit { @@ -1247,7 +1236,7 @@ profile-jot-banner-wrapper { border: 1px solid #cccccc; border-width: 1px 1px 1px 10px; padding-left: 10px; - margin-top: 20px; + margin-top: 20px; } /* =========== */ @@ -1268,8 +1257,8 @@ profile-jot-banner-wrapper { font-size: 18px; /* font-variant:small-caps; */ } - -div[id$="wrapper"] { height: 100%;} + +div[id$="wrapper"] { height: 100%;} div[id$="wrapper"] br { clear: left; } #advanced-profile-with { margin-left: 20px;} @@ -1316,19 +1305,19 @@ div[id$="wrapper"] br { clear: left; } font-style: bold; -webkit-border-radius: 5px 5px 5px 5px; -moz-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; } #profile-edit-links li a { - color: #efefef; + color: #efefef; } #profile-edit-links li:hover { - background-color: #b20202; + background-color: #b20202; } #profile-edit-links li:active { - background-color: #b20202; + background-color: #b20202; } .profile-edit-side-div { @@ -1360,7 +1349,7 @@ div[id$="wrapper"] br { clear: left; } -moz-box-shadow: 3px 3px 4px #959494; -webkit-box-shadow: 3px 3px 4px #959494; box-shadow: 3px 3px 4px #959494; - clear: both; + clear: both; } .profile-match-end { @@ -1406,25 +1395,25 @@ div[id$="wrapper"] br { clear: left; } font-style: bold; -webkit-border-radius: 5px 5px 5px 5px; -moz-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; } #photo-top-links a { color: #efefef; } #photo-top-links:hover { - background-color: #b20202; + background-color: #b20202; } #photo-top-links:active { - background-color: #b20202; + background-color: #b20202; } -.photo-album-image-wrapper { +.photo-album-image-wrapper { float: left; margin: 0px 10px 10px 0px; padding-bottom: 30px; - position:relative; + position:relative; } .photo-top-image-wrapper { @@ -1449,12 +1438,12 @@ div[id$="wrapper"] br { clear: left; } .photo-top-image-wrapper a:hover, #photo-photo a:hover, -.photo-album-image-wrapper a:hover { - border-bottom: 0px; +.photo-album-image-wrapper a:hover { + border-bottom: 0px; } .photo-top-photo {} -.photo-album-photo {} +.photo-album-photo {} .photo-top-album-name { position: absolute; @@ -1463,7 +1452,7 @@ div[id$="wrapper"] br { clear: left; } font-weight: bold; font-stretch:semi-expanded; /* font-variant:small-caps; */ -} +} .photo-top-album-name a{ text-align: center; @@ -1481,7 +1470,7 @@ div[id$="wrapper"] br { clear: left; } #photo-photo{ position: relative; - float:left; + float:left; } #photo-caption { @@ -1505,7 +1494,7 @@ div[id$="wrapper"] br { clear: left; } -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; background-position: center center; - background-repeat: no-repeat; + background-repeat: no-repeat; } #photo-prev-link { left:0px; top:0px; background-image: url('prev.png'); } @@ -1514,7 +1503,7 @@ div[id$="wrapper"] br { clear: left; } #photo-next-link a{ display: block; width: 100%; height: 100%; overflow: hidden; - text-indent: -900000px; + text-indent: -900000px; } #photo-prev-link:hover, @@ -1524,7 +1513,7 @@ div[id$="wrapper"] br { clear: left; } -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; } #photo-next-link .icon, @@ -1534,7 +1523,7 @@ div[id$="wrapper"] br { clear: left; } #photos-upload-new-wrapper, #photos-upload-exist-wrapper { margin-bottom: 1em; } #photos-upload-existing-album-text, -#photos-upload-newalbum-div { +#photos-upload-newalbum-div { background-color: #fff; color: #909090; font-size: 1.2em; @@ -1560,7 +1549,7 @@ select, input { padding: 2px; -webkit-border-radius: 3px 3px 3px 3px; -moz-border-radius: 3px 3px 3px 3px; - border-radius: 3px 3px 3px 3px; + border-radius: 3px 3px 3px 3px; } select[size], select[multiple], select[size][multiple] { @@ -1571,7 +1560,7 @@ select { -webkit-appearance: menulist; box-sizing: border-box; -webkit-box-align: center; - cursor: default; + cursor: default; } keygen, select { @@ -1587,7 +1576,7 @@ input, textarea, keygen { text-indent: 0px; text-shadow: none; display: inline-block; - text-align: -webkit-auto; + text-align: -webkit-auto; } .qq-upload-button { @@ -1607,7 +1596,7 @@ input, textarea, keygen { font-style: bold; -webkit-border-radius: 5px 5px 5px 5px; -moz-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; } #album-edit-link a { @@ -1724,7 +1713,7 @@ input#photo_edit_form { #prvmail-message-label { /* font-variant:small-caps; */ - font-size: 1em; + font-size: 1em; } #prvmail-submit-wrapper { margin-top: 10px; } @@ -1735,7 +1724,7 @@ input#photo_edit_form { } #prvmail-upload { -margin-left: 0px; +margin-left: 0px; } #prvmail-submit-wrapper > div { @@ -1765,7 +1754,7 @@ margin-left: 0px; padding-top:10px; border: 1px solid #dddddd; } - + .mail-list-sender-name { font-size: 1.1em; display: inline; @@ -1912,11 +1901,11 @@ margin-left: 0px; position: relative; } -.contact-entry-edit-links .icon { +.contact-entry-edit-links .icon { border: 1px solid #babdb6; -webkit-border-radius: 3px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; background-color: #ffffff; } @@ -1967,7 +1956,7 @@ margin-left: 0px; .contact-photo-menu-button { position: absolute; background-image: url("photo-menu.jpg"); - background-position: top left; + background-position: top left; background-repeat: no-repeat; margin: 0px; padding: 0px; width: 16px; @@ -1975,7 +1964,7 @@ margin-left: 0px; top: 64px; left:0px; overflow: hidden; text-indent: 40px; - display: none; + display: none; } .contact-photo-menu { @@ -2088,7 +2077,7 @@ margin-left: 0px; padding: 5px 10px 5px 10px; color: #efefef; font-size: 1.2em; - text-align: center; + text-align: center; } #side-invite-link:hover { @@ -2096,18 +2085,18 @@ margin-left: 0px; background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) ); background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); - background-color:#b20202; + background-color:#b20202; } #side-invite-link:active { background-color: #b20202; position:relative; - top:1px; + top:1px; } #side-invite-link a { - color: #efefef; + color: #efefef; } #side-suggest-link { @@ -2128,7 +2117,7 @@ margin-left: 0px; padding: 5px 10px 5px 10px; color: #efefef; font-size: 1.2em; - text-align: center; + text-align: center; } #side-suggest-link:hover { @@ -2136,18 +2125,18 @@ margin-left: 0px; background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) ); background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); - background-color:#b20202; + background-color:#b20202; } #side-suggest-link:active { background-color: #b20202; position:relative; - top:1px; + top:1px; } #side-suggest-link a { - color: #efefef; + color: #efefef; } #invite-message, #invite-recipients, #invite-recipient-text { @@ -2169,7 +2158,7 @@ margin-left: 0px; #side-follow-wrapper label{ font-size: 1.1em; - font-variant: normal; + font-variant: normal; } #contact-suggest { @@ -2191,7 +2180,7 @@ margin-left: 0px; padding: 5px 10px 5px 10px; color: #efefef; font-size: 1.2em; - text-align: center; + text-align: center; } #contact-suggest:hover { @@ -2199,13 +2188,13 @@ margin-left: 0px; background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) ); background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); - background-color:#b20202; + background-color:#b20202; } #contact-suggest:active { background-color: #b20202; position:relative; - top:1px; + top:1px; } #contact-suggest a { @@ -2306,7 +2295,7 @@ margin-left: 0px; } #settings-default-perms .fakelink { - color: #efefef; + color: #efefef; } #settings-default-perms:hover { @@ -2326,7 +2315,7 @@ margin-left: 0px; position:relative; top:1px; } - + #settings-nickname-desc { width: 80%; background-color: #efefef; @@ -2341,7 +2330,7 @@ margin-left: 0px; clear: both; } -#profile-edit-form div { +#profile-edit-form div { margin-bottom: 5px; } @@ -2371,7 +2360,7 @@ margin-left: 0px; #register-sitename { display: inline; font-weight: bold;} - + /* ===================== */ /* = Contacts Selector = */ /* ===================== */ @@ -2412,14 +2401,14 @@ margin-left: 0px; background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) ); background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); - background-color:#b20202; + background-color:#b20202; } .group-delete-wrapper:active { background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) ); background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); - background-color:#b20202; + background-color:#b20202; } .group-delete-wrapper a { @@ -2432,7 +2421,7 @@ margin-left: 0px; #group-members, #prof-members { width: 83%; - height: 200px; + height: 200px; overflow: auto; border: none; background-color: #f0edf0; @@ -2443,10 +2432,10 @@ margin-left: 0px; } #group-all-contacts, -#prof-all-contacts { +#prof-all-contacts { width: 83%; height: 200px; - overflow: auto; + overflow: auto; border: 1px solid #ccc; background-color: #f0edf0; padding: 10px; @@ -2467,7 +2456,7 @@ margin-left: 0px; /* ========== */ /* = Events = */ /* ========== */ - + .clear { clear: both; } .eventcal { float: left; @@ -2531,7 +2520,7 @@ margin-left: 0px; font-size: 1em; font-style: oblique; text-align: center; - + } .vevent .event-start, .vevent .event-end { @@ -2629,7 +2618,7 @@ margin-left: 0px; margin-bottom: 10px; -moz-box-shadow: 5px 5px 8px #959494; -webkit-box-shadow: 5px 5px 8px #959494; - box-shadow: 5px 5px 8px #959494; + box-shadow: 5px 5px 8px #959494; } .calendar caption{ @@ -2665,7 +2654,7 @@ tr { } .calendar th { - font-size: 16px; + font-size: 16px; } .today { @@ -2674,16 +2663,16 @@ tr { background-color: #b20202; color: #fff; } - -#event-start-text, + +#event-start-text, #event-finish-text { margin-top: 10px; margin-bottom: 5px; } -#event-nofinish-checkbox, -#event-nofinish-text, -#event-adjust-checkbox, +#event-nofinish-checkbox, +#event-nofinish-text, +#event-adjust-checkbox, #event-adjust-text, #event-share-checkbox { float: left; @@ -2693,13 +2682,13 @@ tr { margin-bottom: 10px; } -#event-nofinish-break, +#event-nofinish-break, #event-adjust-break, #event-share-break { clear: both; } -#event-desc-text, +#event-desc-text, #event-location-text { margin-top: 10px; margin-bottom: 5px; @@ -2727,7 +2716,7 @@ tr { .directory-name { font-size: 1em; /* font-variant: small-caps; */ - width: 150px; + width: 150px; } /* ========= */ @@ -2833,7 +2822,7 @@ tr { .field_help { display: block; margin-left: 100px; - color: #666666; + color: #666666; } .field .onoff { @@ -2883,11 +2872,11 @@ tr { display: block; width: 20px; height: 20px; background-image: url('icons.png'); } -.starred { - background-image: url("star.png"); +.starred { + background-image: url("star.png"); repeat: no-repeat; } -.unstarred { +.unstarred { background-image: url("premium.png"); repeat: no-repeat; } @@ -2901,7 +2890,7 @@ tr { border: 1px solid #c1c1c1; -webkit-border-radius: 3px; -moz-border-radius: 3px; - border-radius: 3px; + border-radius: 3px; } .article { background-position: -50px 0px;} @@ -2974,10 +2963,10 @@ tr { /* ========== */ /* = Footer = */ /* ========== */ - -.cc-license { margin-top: 100px; font-size: 0.7em; } + +.cc-license { margin-top: 100px; font-size: 0.7em; } footer { display: block; margin: 50px 20%; clear: both; } - + #profile-jot-text { height: 20px; color:#cccccc; @@ -3066,7 +3055,7 @@ footer { display: block; margin: 50px 20%; clear: both; } overflow: hidden; } -.acl-list-item a { +.acl-list-item a { font-size: 10px; display: block; float: left; @@ -3241,7 +3230,7 @@ ul.menu-popup { max-height:150px; overflow:auto; z-index:100000; - + color: #2e3436; border-top: 0px; background: #eeeeee; @@ -3254,7 +3243,7 @@ ul.menu-popup { -moz-box-shadow: 3px 3px 4px #959494; -webkit-box-shadow: 3px 3px 4px #959494; box-shadow: 3px 3px 4px #959494; - + } .acpopupitem { color: #2e3436; padding: 4px; @@ -3270,7 +3259,7 @@ ul.menu-popup { background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) ); background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% ); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808'); - background-color:#b20202; + background-color:#b20202; order-bottom: none; } diff --git a/view/theme/vier/config.php b/view/theme/vier/config.php index 9df9088ed8..7c51b4ec95 100644 --- a/view/theme/vier/config.php +++ b/view/theme/vier/config.php @@ -9,6 +9,9 @@ function theme_content(&$a){ if(!local_user()) return; + if (!function_exists('get_vier_config')) + return; + $style = get_pconfig(local_user(), 'vier', 'style'); if ($style == "") @@ -17,7 +20,15 @@ function theme_content(&$a){ if ($style == "") $style = "plus"; - return vier_form($a,$style); + $show_pages = get_vier_config('show_pages', true); + $show_profiles = get_vier_config('show_profiles', true); + $show_helpers = get_vier_config('show_helpers', true); + $show_services = get_vier_config('show_services', true); + $show_friends = get_vier_config('show_friends', true); + $show_lastusers = get_vier_config('show_lastusers', true); + + return vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, + $show_services, $show_friends, $show_lastusers); } function theme_post(&$a){ @@ -26,23 +37,60 @@ function theme_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_pconfig(local_user(), 'vier', 'style', $_POST['vier_style']); + set_pconfig(local_user(), 'vier', 'show_pages', $_POST['vier_show_pages']); + set_pconfig(local_user(), 'vier', 'show_profiles', $_POST['vier_show_profiles']); + set_pconfig(local_user(), 'vier', 'show_helpers', $_POST['vier_show_helpers']); + set_pconfig(local_user(), 'vier', 'show_services', $_POST['vier_show_services']); + set_pconfig(local_user(), 'vier', 'show_friends', $_POST['vier_show_friends']); + set_pconfig(local_user(), 'vier', 'show_lastusers', $_POST['vier_show_lastusers']); } } function theme_admin(&$a){ + + if (!function_exists('get_vier_config')) + return; + $style = get_config('vier', 'style'); - return vier_form($a,$style); + + $helperlist = get_config('vier', 'helperlist'); + + if ($helperlist == "") + $helperlist = "https://helpers.pyxis.uberspace.de/profile/helpers"; + + $t = get_markup_template("theme_admin_settings.tpl"); + $o .= replace_macros($t, array( + '$helperlist' => array('vier_helperlist', t('Comma separated list of helper forums'), $helperlist, '', ''), + )); + + $show_pages = get_vier_config('show_pages', true, true); + $show_profiles = get_vier_config('show_profiles', true, true); + $show_helpers = get_vier_config('show_helpers', true, true); + $show_services = get_vier_config('show_services', true, true); + $show_friends = get_vier_config('show_friends', true, true); + $show_lastusers = get_vier_config('show_lastusers', true, true); + $o .= vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, $show_services, + $show_friends, $show_lastusers); + + return $o; } function theme_admin_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_config('vier', 'style', $_POST['vier_style']); + set_config('vier', 'show_pages', $_POST['vier_show_pages']); + set_config('vier', 'show_profiles', $_POST['vier_show_profiles']); + set_config('vier', 'show_helpers', $_POST['vier_show_helpers']); + set_config('vier', 'show_services', $_POST['vier_show_services']); + set_config('vier', 'show_friends', $_POST['vier_show_friends']); + set_config('vier', 'show_lastusers', $_POST['vier_show_lastusers']); + set_config('vier', 'helperlist', $_POST['vier_helperlist']); } } -function vier_form(&$a, $style){ +function vier_form(&$a, $style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers){ $styles = array( "plus"=>"Plus", "breathe"=>"Breathe", @@ -51,12 +99,21 @@ function vier_form(&$a, $style){ "netcolour"=>"Coloured Networks", "flat"=>"Flat" ); - $t = get_markup_template("theme_settings.tpl" ); + + $show_or_not = array('0'=>t("don't show"), '1'=>t("show"),); + + $t = get_markup_template("theme_settings.tpl"); $o .= replace_macros($t, array( '$submit' => t('Submit'), '$baseurl' => $a->get_baseurl(), '$title' => t("Theme settings"), '$style' => array('vier_style',t ('Set style'),$style,'',$styles), + '$show_pages' => array('vier_show_pages', t('Community Pages'), $show_pages, '', $show_or_not), + '$show_profiles' => array('vier_show_profiles', t('Community Profiles'), $show_profiles, '', $show_or_not), + '$show_helpers' => array('vier_show_helpers', t('Help or @NewHere ?'), $show_helpers, '', $show_or_not), + '$show_services' => array('vier_show_services', t('Connect Services'), $show_services, '', $show_or_not), + '$show_friends' => array('vier_show_friends', t('Find Friends'), $show_friends, '', $show_or_not), + '$show_lastusers' => array('vier_show_lastusers', t('Last users'), $show_lastusers, '', $show_or_not) )); return $o; } diff --git a/view/theme/vier/dark.css b/view/theme/vier/dark.css index 9501ecfe0d..01045b6ff4 100644 --- a/view/theme/vier/dark.css +++ b/view/theme/vier/dark.css @@ -23,7 +23,7 @@ a.on { background-color: #2C77AE !important } -aside, .menu-popup, .fc-state-highlight, a.off, .autocomplete { +aside, right_aside, .menu-popup, .fc-state-highlight, a.off, .autocomplete { color: #989898 !important; background-color: #252C33 !important; border-right: 1px solid #D2D2D2; diff --git a/view/theme/vier/flat.css b/view/theme/vier/flat.css index d71ab2177b..a00d19c39c 100644 --- a/view/theme/vier/flat.css +++ b/view/theme/vier/flat.css @@ -12,3 +12,7 @@ div.pager, ul.tabs { aside { border-right: 1px solid #D2D2D2; } + +right_aside { + border-left: 1px solid #D2D2D2; +} diff --git a/view/theme/vier/hide.css b/view/theme/vier/hide.css new file mode 100644 index 0000000000..8bb89ee433 --- /dev/null +++ b/view/theme/vier/hide.css @@ -0,0 +1,3 @@ +aside { + display: none; +} diff --git a/view/theme/vier/mobile.css b/view/theme/vier/mobile.css new file mode 100644 index 0000000000..d06cb41011 --- /dev/null +++ b/view/theme/vier/mobile.css @@ -0,0 +1,147 @@ +aside, header, #nav-events-link, #search-box, #nav-admin-link, #activitiy-by-date-tab, #shared-links-tab, +.wall-item-location { + display: none; +} + +.hide-comments-outer { + width: calc(100% - 105px); +} + +section { + /* left: calc((100% - (784px)) / 2); */ + left: 0px; + width: calc(100% - 20px); + max-width: 100%; + padding: 10px; +} + +body, section, nav .nav-menu, div.pager, ul.tabs { + font-size: 16px; +} + +.wall-item-container .wall-item-ago, .wall-item-network,.type-link blockquote, .type-video blockquote { + font-size: 13px; +} + +nav { + min-width: 100%; +} + +.wall-item-container .wall-item-content { + max-width: 100%; + overflow: hidden; + text-overflow: ellipsis; +/* margin-left: -70px; + padding-top: 25px; */ +} + +nav ul { + margin-left: 0px; +} + + +.wall-item-container .wall-item-content img, +.children .wall-item-container .wall-item-item .wall-item-content img, +.wall-item-container .wall-item-content .type-link img.attachment-image, .type-link img.attachment-image, .type-video img.attachment-image { + max-width: 650px; +} + +@media screen and (max-width: 800px) { + .wall-item-container .wall-item-content img, + .children .wall-item-container .wall-item-item .wall-item-content img, + .wall-item-container .wall-item-content .type-link img.attachment-image, .type-link img.attachment-image, .type-video img.attachment-image { + max-width: 450px; + } +} + +@media screen and (max-width: 600px) { + .wall-item-container .wall-item-content img, + .children .wall-item-container .wall-item-item .wall-item-content img, + .wall-item-container .wall-item-content .type-link img.attachment-image, .type-link img.attachment-image, .type-video img.attachment-image { + max-width: 350px; + } +} + +@media screen and (max-width: 480px) { + .wall-item-container .wall-item-content img, + .children .wall-item-container .wall-item-item .wall-item-content img, + .wall-item-container .wall-item-content .type-link img.attachment-image, .type-link img.attachment-image, .type-video img.attachment-image { + max-width: 200px; + } +} + +.wall-item-container.thread_level_2, +.wall-item-container.thread_level_3, +.wall-item-container.thread_level_4, +.wall-item-container.thread_level_5, +.wall-item-container.thread_level_6, +.wall-item-container.thread_level_7 { + margin-left: 60px; + width: calc(100% - 70px); +} + +.wall-item-container.thread_level_2 .wall-item-content, +.wall-item-container.thread_level_3 .wall-item-content, +.wall-item-container.thread_level_4 .wall-item-content, +.wall-item-container.thread_level_5 .wall-item-content, +.wall-item-container.thread_level_6 .wall-item-content, +.wall-item-container.thread_level_7 .wall-item-content { + max-width: 100%; +} + +/* aside in/out */ +.mobile-aside-toggle { + display: block !important; +} +.mobile-aside-toggle a { + line-height: 35px; + padding: 0 10px; +} +.mobile-aside-toggle a i { + font-size: 22px; + color: #CCC; +} + +aside { + display: block; + position: fixed; + max-width: 400px; + width: 80%; + left: -100%; + -webkit-transition: left 0.5s; + -moz-transition: left 0.5s; + -o-transition: left 0.5s; + transition: left 0.5s; +} + +aside.show { + left: 0; +} + +/* tabs */ +.tabs { position: relative; height: 25px!important; } +.tabs li { width: 100%; } +.tabs .tab { display: none;} +.tabs .tab.active { display: block; } +.tabs::after { + font-family: FontAwesome; + text-align: right; + content: "\f13a"; + display: block; + position: absolute; + left: 0; right:0; top: 0; bottom: 0; + padding: 8px 2px 0 0; +} + +.tabs.show { + position: fixed; + z-index: 1000; + left: 10px; + right: 10px; + top: 0px; + bottom: 10px; + height: auto !important; + border: 1px solid #ccc; +} +.tabs.show::after { display: none; } +.tabs.show .tab { display: block; } diff --git a/view/theme/vier/narrow.css b/view/theme/vier/narrow.css new file mode 100644 index 0000000000..09f0e2f12e --- /dev/null +++ b/view/theme/vier/narrow.css @@ -0,0 +1,12 @@ +#nav-user-linklabel { + display: none; +} + +nav ul li .menu-popup { + left: auto; + right: 0px; +} + +nav #search-box #search-text { + width: 100px; +} diff --git a/view/theme/vier/netcolour.css b/view/theme/vier/netcolour.css index c76e5b0af4..77fea09f5a 100644 --- a/view/theme/vier/netcolour.css +++ b/view/theme/vier/netcolour.css @@ -31,4 +31,3 @@ /* background-color: #FFFFF9; */ background-color: #fffafa; } - diff --git a/view/theme/vier/plus.css b/view/theme/vier/plus.css index 2ae6e50005..5faf069c22 100644 --- a/view/theme/vier/plus.css +++ b/view/theme/vier/plus.css @@ -145,6 +145,10 @@ aside { height: calc(100% - 54px); } +right_aside { + top: 44px; +} + section { top: 44px; } diff --git a/view/theme/vier/shadow.css b/view/theme/vier/shadow.css new file mode 100644 index 0000000000..2f0bd9cbc0 --- /dev/null +++ b/view/theme/vier/shadow.css @@ -0,0 +1,154 @@ +nav { + background: rgb(36, 76, 94); + box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7); + padding: 0px; + padding-left: 0px; +} + +nav a:active, +nav a:link, +nav a:visited, +nav a { + color: #ccc; +} + +nav a:hover, +#nav-messages-see-all a:hover { + color: #fff; +} + +nav .nav-notify { + background-color: #F80; + top: 0px; + right: -5px; + padding: 1px 3px; + border-radius: 5px 5px 5px 5px; +} +// ----- +nav .nav-menu-icon .nav-notify { + top: 0px; +} + +nav .nav-menu.selected a { + color: #000; +/* font-weight: bold; */ +} + +nav .nav-menu:hover, +nav .nav-menu.selected { + border-bottom: 2px solid #427FED; +} + +nav .nav-menu { + height: 23px; + font-size: 14px; + font-weight: initial; +} + +#nav-site-menu, +#nav-notifications-menu, +#nav-user-menu { + top: 35px; +} + +#nav-messages-menu { + top: 32px; +} + +#nav-messages-see-all a { + color: #737373; +} + +ul.tabs li .active, span.pager_current a { + border-bottom: 2px solid #427FED; +} + +span.pager_current, span.pager_n a:hover, +span.pager_first a:hover, span.pager_last a:hover, +span.pager_prev a:hover, span.pager_next a:hover, +ul.tabs a:hover { + border-bottom: 2px solid #427FED; +} + +nav #nav-notifications-linkmenu.on .icon.s22.notify, nav #nav-notifications-linkmenu.selected .icon.s22.notify { + color: #737373; +} + +nav #nav-messages-linkmenu.selected, +nav #nav-user-linklabel.selected, +nav #nav-apps-link.selected { + background-color: #fff; + border-bottom-style: none; +} + +div.jGrowl div.info { + background: #fff url("../../../images/icons/48/info.png") no-repeat 5px center; +} + +div.jGrowl div.notice { + color: #737373; +} +div.jGrowl div.info { + color: #737373; +} + +.birthday-notice, .event-notice { + font-weight: initial; +} + +div.pager, ul.tabs { + font-weight: initial; +} + +nav .nav-menu-icon.selected { + background-color: #fff; +} + +#jot #jot-tools li:hover { + background-color: #fff; +} + +nav .icon { + color: #737373; +} + +nav a:hover .icon { + color: #000; +} + +ul.menu-popup { + border: 0px solid #FFF; + margin-top: 0px; +} + +header #banner a, header #banner a:active, header #banner a:visited, header #banner a:link, header #banner a:hover { + color: #737373; +} + +header { + left: 10px; +} + +header #banner { + margin-top: 6px; +} + +#banner #logo-text { + margin-left: 5px; +} + +aside { + top: 44px; + height: calc(100% - 54px); +} + +section { + top: 44px; +} + +nav #search-box #search-text { + background-color: initial; + border-style: solid; + border-width: 1px; + border-color: rgba(0, 0, 0, 0.15); +} diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 77ffb53fd1..db96be9fb1 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -268,8 +268,8 @@ div.pager { /* global */ body { - /* font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; */ - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +/* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */ + font-family: system,-apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Helvetica,Arial,sans-serif; font-size: 14px; /* font-size: 13px; line-height: 19.5px; */ @@ -351,7 +351,7 @@ code { margin: 0px; padding: 1em; list-style: none; - border: 3px solid #364e59; + /*border: 3px solid #364e59;*/ z-index: 100000; box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); } @@ -366,6 +366,17 @@ code { #sidebar-group-list .tool:hover { background: #EEE; } +#sidebar-group-list .notify { + min-width: 10px; + text-align: center; + color: #FFF; + background-color: #CB4437; + font: bold 10px Arial; + padding: 3px; + border-radius: 10px; + display: none; +} +#sidebar-group-list .notify.show { display: inline-block; } .tool .label { /* float: left; */ } @@ -375,7 +386,7 @@ code { .tool a { /* color: #000; */ } -.tool a:hover, .widget a:hover, #nets-sidear a:hover, #hide-forum-list:hover, .admin.link a:hover, aside h4 a:hover { +.tool a:hover, .widget a:hover, #nets-sidear a:hover, #hide-forum-list:hover, .admin.link a:hover, aside h4 a:hover, right_aside h4 a:hover { /* text-decoration: underline; */ text-decoration: none; color: black; @@ -390,8 +401,8 @@ code { } .sidebar-group-li:hover, #sidebar-new-group:hover, #hide-forum-list:hover, -#sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forum-list div:hover, -.nets-all:hover, .saved-search-li:hover, li.tool:hover, .admin.link:hover, aside h4 a:hover, #message-new:hover { +#sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forumlist-sidebar div:hover, #forum-list-right div:hover, +.nets-all:hover, .saved-search-li:hover, li.tool:hover, .admin.link:hover, aside h4 a:hover, right_aside h4 a:hover, #message-new:hover { /* background-color: #ddd; */ /* background-color: #e5e5e5; */ background-color: #F5F5F5; @@ -409,7 +420,7 @@ code { font-weight: bold; } -#sidebar-new-group, #hide-forum-list, #forum-list, #sidebar-ungrouped, +#forum-widget-showmore, #sidebar-new-group, #hide-forum-list, #forum-list-right, #sidebar-ungrouped, .side-link, #peoplefind-desc, #connect-desc, .nets-all, .admin.link, #message-new { padding-left: 10px; padding-top: 3px; @@ -418,7 +429,18 @@ code { display: block; } -a.nets-link, .side-link a, #sidebar-new-group a, a.savedsearchterm, a.fileas-link, aside h4 a { +#forumlist-sidebar { + padding-top: 3px; + padding-bottom: 3px; + display: block; +} + +.forum-widget-entry { + padding-left: 10px; + padding-right: 5px; +} + +a.nets-link, .side-link a, #sidebar-new-group a, a.savedsearchterm, a.fileas-link, aside h4 a, right_aside h4 a { display: block; color: #737373; } @@ -445,11 +467,11 @@ a.sidebar-group-element { color: black; } -#forum-list a, .tool a, .admin.link a { +#forumlist-sidebar a, #forum-list-right a, .tool a, .admin.link a { color: #737373; } -#forum-list { +#forumlist-sidebar, #forum-list-right { margin-top: 2px; } @@ -872,9 +894,23 @@ ul.menu-popup .empty { } right_aside { - width: 0px; + display: none; + vertical-align: top; + width: 185px; + padding-top: 10px; + padding-right: 20px; + padding-bottom: 0px; + padding-left: 10px; + background-color: #FFFFFF; + font-size: 13px; + overflow-y: auto; + z-index: 2; + line-height: 17px; + color: #737373; + box-shadow: 1px 2px 0px 0px #D8D8D8; top: 32px; - display: block; + position: absolute; + margin-left: calc(100% - 215px); } /* aside */ @@ -970,7 +1006,7 @@ aside #profiles-menu { left: 10px; } -aside #search-text, aside #side-follow-url, aside #side-peoplefind-url { +aside #search-text, aside #side-follow-url, aside #side-peoplefind-url, right_aside input { width: 140px; height: 17px; padding-left: 10px; @@ -984,7 +1020,7 @@ aside #search-text, aside #side-follow-url, aside #side-peoplefind-url { -moz-border-right-colors: #dbdbdb;*/ } -aside h4 { +aside h4, right_aside h4 { margin-bottom: 0px; margin-top: 0px; font-size: 1.17em; @@ -1109,7 +1145,6 @@ section { line-height: 19.5px;*/ font-size: 14.95px; line-height: 21px; - /* font-family: Quodana,Verdana,DejaVu Sans,Bitstream Vera Sans,Helvetica,sans-serif; */ display: table-cell; vertical-align: top; top: 32px; @@ -1347,11 +1382,13 @@ section.minimal { width: 100%; margin-bottom: 0.3em; } -.wall-item-container .wall-item-actions-social { +.wall-item-container .wall-item-actions-social, +.wall-item-container .wall-item-actions-isevent { float: left; margin-bottom: 1px; } -.wall-item-container .wall-item-actions-social a { +.wall-item-container .wall-item-actions-social a, +.wall-item-container .wall-item-actions-isevent a { float: left; margin-right: 1em; cursor: pointer; @@ -2268,18 +2305,52 @@ aside #id_password { float: left; } /* contacts */ -.contact-entry-wrapper { +/*.contact-entry-wrapper { width: 120px; height: 130px; float: left; -/* overflow: hidden; */ + overflow: hidden; margin-left: 5px; +}*/ + +.contact-entry-wrapper { + float: left; + width: 363px; + height: 100px; + padding-right: 10px; + margin: 0 10px 10px 0px; +} +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; + width: 80px; + height: 80px; +} +.contact-entry-photo-wrapper { + position: relative; +} +.contact-entry-desc { + overflow: hidden; +} +.contact-entry-name { + font-weight: bold; +} +.contact-entry-details { + font-size: 13px; + color: #999999; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } /* photo */ .lframe { float: left; margin: 0px 10px 10px 0px; } +.contact-entry-photo a img { + width: 80px; + height: 80px; +} /* profile match wrapper */ .profile-match-wrapper { float: left; @@ -2317,14 +2388,15 @@ aside #id_password { } .contact-photo-menu { width: 11em; - border: 3px solid #364e59; + /*border: 3px solid #364e59;*/ color: #2d2d2d; background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; + position: absolute; + /*position: relative;*/ + left: 0px; /*top: 0px;*/ display: none; z-index: 10000; + box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); } .contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } .contact-photo-menu li a { @@ -2494,6 +2566,7 @@ a.mail-list-link { border: none; } + /* ========== */ /* = Events = */ /* ========== */ @@ -2941,7 +3014,7 @@ a.mail-list-link { border:1px solid #dcdcdc; display:inline-block; color:#777777; - font-family:Arial; + font-family:Arial, sans-serif; font-size:15px; font-weight:bold; font-style:normal; @@ -2986,3 +3059,8 @@ a.mail-list-link { /* upload/select popup */ .fbrowser.image .photo-album-image-wrapper { margin-left: 10px; } + #message-preview { margin-top: 15px; } + #message-preview span { width: 100%; } + #message-preview .mail-count, #message-preview .mail-delete { display:none; } + #message-preview .mail-list-wrapper { padding: 3px; } + #message-preview .mail-date { opacity:0.6; font-size:10px; } diff --git a/view/theme/vier/style.php b/view/theme/vier/style.php index e118d1ef09..72731a9beb 100644 --- a/view/theme/vier/style.php +++ b/view/theme/vier/style.php @@ -26,5 +26,3 @@ else if ($style == "dark") $stylecss = file_get_contents('view/theme/vier/dark.css'); echo $stylecss; - - diff --git a/view/theme/vier/templates/ch_connectors.tpl b/view/theme/vier/templates/ch_connectors.tpl new file mode 100644 index 0000000000..2ca114807b --- /dev/null +++ b/view/theme/vier/templates/ch_connectors.tpl @@ -0,0 +1,2 @@ +{{$alt_text}} + diff --git a/view/theme/vier/templates/ch_directory_item.tpl b/view/theme/vier/templates/ch_directory_item.tpl new file mode 100644 index 0000000000..6813e1186e --- /dev/null +++ b/view/theme/vier/templates/ch_directory_item.tpl @@ -0,0 +1,11 @@ + + +
    +
    +
    + + {{$alt_text}} + +
    +
    +
    diff --git a/view/theme/vier/templates/ch_helpers.tpl b/view/theme/vier/templates/ch_helpers.tpl new file mode 100644 index 0000000000..e10011e04d --- /dev/null +++ b/view/theme/vier/templates/ch_helpers.tpl @@ -0,0 +1 @@ + diff --git a/view/theme/vier/templates/communityhome.tpl b/view/theme/vier/templates/communityhome.tpl new file mode 100644 index 0000000000..54be327aa2 --- /dev/null +++ b/view/theme/vier/templates/communityhome.tpl @@ -0,0 +1,72 @@ +{{if $page}} +
    +
    {{$page}}
    +
    +{{/if}} + +{{if $comunity_profiles_title}} +
    +

    {{$comunity_profiles_title}}

    +
    +{{foreach $comunity_profiles_items as $i}} + {{$i}} +{{/foreach}} +
    +
    +{{/if}} + +{{if $helpers}} +
    +

    {{$helpers.title.1}}

    +
      +{{foreach $helpers_items as $i}} + {{$i}} +{{/foreach}} +
    +
    +{{/if}} + +{{if $con_services}} +
    +

    {{$con_services.title.1}}

    +
    +{{foreach $connector_items as $i}} + {{$i}} +{{/foreach}} +
    +
    +{{/if}} + +{{if $nv}} + +{{/if}} + +{{if $lastusers_title}} +
    +

    {{$lastusers_title}}

    +
    +{{foreach $lastusers_items as $i}} + {{$i}} +{{/foreach}} +
    +
    +{{/if}} + +{{if $activeusers_title}} +

    {{$activeusers_title}}

    +
    +{{foreach $activeusers_items as $i}} + {{$i}} +{{/foreach}} +
    +{{/if}} diff --git a/view/theme/vier/templates/contact_template.tpl b/view/theme/vier/templates/contact_template.tpl index 5271112d83..c4ed99caa4 100644 --- a/view/theme/vier/templates/contact_template.tpl +++ b/view/theme/vier/templates/contact_template.tpl @@ -5,20 +5,21 @@ - {{$contact.name}} + + {{$contact.name}} - {{if !$no_contacts_checkbox}} + {{if $multiselect}} {{/if}} {{if $contact.photo_menu}}
    -
    -
    {{$contact.name}}
    + +
    +
    + {{$contact.name}} + {{if $contact.account_type}} ({{$contact.account_type}}){{/if}} +
    + {{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} +
    + {{if $contact.itemurl}}{{$contact.itemurl}}{{/if}} + {{if $contact.network}} ({{$contact.network}}){{/if}} +
    + {{if $contact.tags}}
    {{$contact.tags}}
    {{/if}} + {{if $contact.details}}
    {{$contact.details}}
    {{/if}} +
    +
    diff --git a/view/theme/vier/templates/nav.tpl b/view/theme/vier/templates/nav.tpl index 11add9e8a8..77bad93705 100644 --- a/view/theme/vier/templates/nav.tpl +++ b/view/theme/vier/templates/nav.tpl @@ -7,6 +7,11 @@