Merge branch issue_20_localization into master

This commit is contained in:
Jim Fenton 2014-11-20 22:33:08 -08:00
parent ccfff62118
commit 2029e24f1a
28 changed files with 5934 additions and 878 deletions

View File

@ -8,26 +8,37 @@ include("interactive-page.php");
require_once("AwlQuery.php");
require_once('iSchedule.php');
$heading_schedule = translate('iSchedule Configuration');
$content_sched1 = translate('iSchedule allows caldav servers to communicate directly with each other, bypassing the need to send invitations via email, for scheduled events where attendees are using different servers or providers. Additionally it enables freebusy lookups for remote attendees. Events and ToDos received via iSchedule will show up in the users scheduling inbox.');
$content_sched2 = translate('The <a href="http://wiki.davical.org/w/iSchedule_configuration">iSchedule configuration</a> requires a few DNS entries. DNS SRV record(s) will need to be created for all domains you wish to accept requests for, these are the domain portion of email address on Principal records in DAViCal examples are listed below for domains found in your database. At least 1 public key must also be published if you wish to send requests from this server.');
$page_elements = array();
$page_elements[] = <<<EOBODY
<h1>iSchedule Configuration</h1>
<p>iSchedule allows caldav servers to communicate directly with each other, bypassing the need to send invitations via email, for scheduled events where attendees are using different servers or providers. Additionally it enables freebusy lookups for remote attendees. Events and ToDos received via iSchedule will show up in the users scheduling inbox.
<br>&nbsp;
</p>
<p>The <a href="http://wiki.davical.org/w/iSchedule_configuration">iSchedule configuration</a> requires a few DNS entries. DNS SRV record(s) will need to be created for all domains you wish to accept requests for, these are the domain portion of email address on Principal records in DAViCal examples are listed below for domains found in your database. At least 1 public key must also be published if you wish to send requests from this server.</p>
<h1>$heading_schedule</h1>
<p>$content_sched1
<br>&nbsp;</p>
<p>$content_sched2</p>
EOBODY;
$status = '<h2>Status</h2>';
$translated_error = translate('ERROR');
$translated_err1 = translate('scheduling_dkim_domain not set (please check your DAViCal configuration file)');
$translated_warning = translate('WARNING');
$translated_war1 = translate('scheduling_dkim_domain does not match server name (please check your DAViCal configuration file)');
$status = '<h2>' . translate('Status') . '</h2>';
if (!isset($c->scheduling_dkim_domain)) {
$status .= <<<EOBODY
<div class='error'>ERROR</div>
<p>scheduling_dkim_domain not set</p>
<div class='error'>$translated_error</div>
<p>$translated_err1</p>
EOBODY;
}
elseif ( $c->scheduling_dkim_domain != $_SERVER['SERVER_NAME'] ) {
$status .= <<<EOBODY
<div class='error'>WARNING</div>
<p>scheduling_dkim_domain does not match server name</p></h3>
<div class='error'>$translated_warning</div>
<p>$translated_war1</p></h3>
EOBODY;
}
else {
@ -42,30 +53,29 @@ function checkiSchedule () {
$s = new iSchedule ();
$s->domain = $c->scheduling_dkim_domain;
if (!$s->getServer())
$ret .= '<p>SRV record missing for '. $s->domain .' or DNS failure, the domain you are going to send events from should have an SRV record</p>' ;
$ret .= '<p>' . sprintf(translate('SRV record missing for "%s" or DNS failure, the domain you are going to send events from should have an SRV record'), $s->domain) . '</p>';
if ($s->remote_server != $c->scheduling_dkim_domain)
$ret .= '<p>SRV record for '.$s->domain . ' points to wrong domain: ' . $s->remote_server . ' instead of ' . $c->scheduling_dkim_domain .'</p>';
$ret .= '<p>' . sprintf(translate('SRV record for "%s" points to wrong domain: "%s" instead of "%s"'), $s->domain, $s->remote_server, $c->scheduling_dkim_domain) . '</p>';
$s->remote_server = $c->scheduling_dkim_domain;
$s->remote_selector = $c->scheduling_dkim_selector;
if (!$s->getTxt()) {
if (isset($c->schedule_private_key))
$ret .= '<p>TXT record missing for '.$s->remote_selector . '._domainkey.' . $s->domain .' or DNS failure, Private RSA key is configured</p>' ;
$ret .= '<p>' . translate('TXT record missing for "%s._domainkey.%s" or DNS failure, Private RSA key is configured', $s->remote_selector, $s->domain) . '</p>';
else {
$keys = generateKeys();
$config = '<p>please add the following section to your DAViCal configuration file<pre>$c->schedule_private_key = &lt;&lt;&lt;ENDOFKEY' ."\n";
$config = '<p>' . translate('please add the following section to your DAViCal configuration file') . '<pre>$c->schedule_private_key = &lt;&lt;&lt;ENDOFKEY' . "\n";
$config .= $keys['private']; //implode ("\n", str_split ( base64_encode ( $keys['private'] ), 64 ));
$config .= "ENDOFKEY\n</pre>";
$config .= "<br/> and create a DNS TXT record for <b>" . $c->scheduling_dkim_selector . "._domainkey." . $c->scheduling_dkim_domain ;
$config .= "</b> that contains:<pre>";
$config .= "k=rsa; t=s; p=" . preg_replace('/-----(BEGIN|END) PUBLIC KEY-----\n/','',$keys['public']);
$config .= "<br/> " . sprintf(translate('and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:'), $c->scheduling_dkim_selector, $c->scheduling_dkim_domain);
$config .= "<pre>k=rsa; t=s; p=" . preg_replace('/-----(BEGIN|END) PUBLIC KEY-----\n/','',$keys['public']);
$config .= '</pre></p>';
$ret .= $config;
}
}
if ( ! $s->parseTxt() )
$ret .= '<p>TXT record corrupt for '. $s->remote_selector .'._domainkey.'. $s->domain .' or DNS failure</p>' ;
$ret .= '<p>' . sprintf(translate('TXT record corrupt for %s._domainkey.%s or DNS failure'), $s->remote_selector, $s->domain) . '</p>';
else if ( $ret == '' )
$ret = '<p>iSchedule OK</p>';
$ret = '<p>' . translate('iSchedule OK') . '</p>';
return $ret;
}

View File

@ -14,48 +14,83 @@ $session->LoginRequired();
include("interactive-page.php");
include("page-header.php");
$heading_admin = translate('Administration');
$content_admin = sprintf(translate('You are logged on as %s (%s)'), $session->username, $session->fullname);
$heading_functions = translate('Administration Functions');
$content_func1 = translate('The administration of this application should be fairly simple. You can administer:');
$content_func2 = translate('Users (or Resources or Groups) and the relationships between them');
$content_func3 = translate('The types of relationships that are available');
$content_func4 = translate('There is no ability to view and / or maintain calendars or events from within this administrative interface.');
$content_func5 = translate('To do that you will need to use a CalDAV capable calendaring application such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or Mulberry.');
$heading_principals = translate('Principals: Users, Resources and Groups');
$content_princ1 = translate('These are the things which may have collections of calendar resources (i.e. calendars).');
$content_princ2 = sprintf('<a href="%s/admin.php?action=browse&t=principal&type=1">%s</a>. %s',
$c->base_url,
translate('Here is a list of users (maybe :-)'),
translate("You can click on any user to see the full detail for that person (or group or resource - but from now we'll just call them users).")
);
$content_princ3 = translate('The primary differences between them are as follows:');
$content_princ4 = translate('Users will probably have calendars, and are likely to also log on to the system.');
$content_princ5 = translate('Resources do have calendars, but they will not usually log on.');
$content_princ6 = translate('Groups provide an intermediate linking to minimise administration overhead. They might not have calendars, and they will not usually log on.');
$content_princ7 = translate('Users will probably have calendars, and are likely to also log on to the system.');
$heading_groups = translate('Groups &amp; Grants');
$content_grp1 = translate('Grants specify the access rights to a collection or a principal');
$content_grp2 = translate('Groups allow those granted rights to be assigned to a set of many principals in one action');
$content_grp3 = translate('Groups may be members of other groups, but complex nesting will hurt system performance');
// Translations shared with setup.php
$heading_clients = translate('Configuring Calendar Clients for DAViCal');
$content_cli1 = translate('The <a href="http://www.davical.org/clients.php">client setup page on the DAViCal website</a> has information on how to configure Evolution, Sunbird, Lightning and Mulberry to use remotely hosted calendars.');
$content_cli2 = translate('The administrative interface has no facility for viewing or modifying calendar data.');
// Translations shared with setup.php
$heading_configure = translate('Configuring DAViCal');
$content_config1 = translate('If you can read this then things must be mostly working already.');
$content_config3 = translate('The <a href="http://www.davical.org/installation.php">DAViCal installation page</a> on the DAViCal website has some further information on how to install and configure this application.');
echo <<<EOBODY
<h1>Administration</h1>
<p>You are logged on as $session->username ($session->fullname)</p>
<h1>$heading_admin</h1>
<p>$content_admin</p>
<h2>$heading_functions</h2>
<p>$content_func1</p>
<ul>
<li>$content_func2</li>
<li>$content_func3</li>
</ul>
<p><i>$content_func4</i></p>
<p>$content_func5</p>
<h3>$heading_principals</h3>
<p>$content_princ1</p>
<p>$content_princ2</p>
<p>$content_princ3</p>
<ul>
<li>$content_princ4</li>
<li>$content_princ5</li>
<li>$content_princ6</li>
</ul>
<h3>$heading_groups</h3>
<ul>
<li>$content_grp1</li>
<li>$content_grp2</li>
<li>$content_grp3</li>
</ul>
<h2>$heading_clients</h2>
<p>$content_cli1</p>
<p>$content_cli2</p>
<h2>$heading_configure</h2>
<p>$content_config1</p>
<p>$content_config3</p>
EOBODY;
?>
<h2>Administration Functions</h2>
<p>The administration of this application should be fairly simple. You can administer:</p>
<ul>
<li>Users (or Resources or Groups) and the relationships between them</li>
<li>The types of relationships that are available</li>
</ul>
<p><i>There is no ability to view and / or maintain calendars or events from within this administrative interface.</i></p>
<p>To do that you will need to use a CalDAV capable calendaring application such as Evolution, Sunbird, Thunderbird
(with the Lightning extension) or Mulberry.</p>
<h3>Principals: Users, Resources and Groups</h3>
<p>These are the things which may have collections of calendar resources (i.e. calendars).</p>
<p><a href="<?php echo $c->base_url; ?>/admin.php?action=browse&t=principal&type=1">Here is a list of users (maybe :-)</a>. You can click on any user to see the full detail
for that person (or group or resource - but from now we'll just call them users).</p>
<p>The primary differences between them are as follows:</p>
<ul>
<li>Users will probably have calendars, and are likely to also log on to the system.</li>
<li>Resources do have calendars, but they will not usually log on.</li>
<li>Groups provide an intermediate linking to minimise administration overhead. They might not have calendars, and they will not usually log on.</li>
</ul>
<h3>Groups &amp; Grants</h3>
<ul>
<li>Grants specify the access rights to a collection or a principal</li>
<li>Groups allow those granted rights to be assigned to a set of many principals in one action</li>
<li>Groups may be members of other groups, but complex nesting will hurt system performance</li>
</ul>
<h2>Configuring Calendar Clients for DAViCal</h2>
<p>The <a href="http://www.davical.org/clients.php">DAViCal client setup page on sourceforge</a> have information on how
to configure Evolution, Sunbird, Lightning and Mulberry to use remotely hosted calendars.</p>
<p>The administrative interface has no facility for viewing or modifying calendar data.</p>
<h2>Configuring DAViCal</h2>
<p>If you can read this then things must be mostly working already.</p>
<p>The <a href="http://www.davical.org/installation.php">DAViCal installation page</a> on sourceforge has
some further information on how to install and configure this application.</p>
<?php
include("page-footer.php");

View File

@ -335,12 +335,14 @@ function build_dependencies_table( ) {
if ( isset($c->authenticate_hook) && isset($c->authenticate_hook['call']) && $c->authenticate_hook['call'] == 'LDAP_check') {
$dependencies[translate('PHP LDAP module available')] = 'check_ldap';
}
$translated_failure_code = translate('<a href="http://wiki.davical.org/w/Setup_Failure_Codes/%s">Explanation on DAViCal Wiki</a>');
$dependencies_table = '';
$dep_tpl = '<tr class="%s">
<td>%s</td>
<td>%s</td>
<td><a href="http://wiki.davical.org/w/Setup_Failure_Codes/%s">Explanation on DAViCal Wiki</a></td>
<td>'.$translated_failure_code.'</td>
</tr>
';
foreach( $dependencies AS $k => $v ) {
@ -383,25 +385,28 @@ if ( check_database_connection()->GetOK() ) {
$site_statistics_table = build_site_statistics();
}
catch( Exception $e ) {
$site_statistics_table = "Statistics unavailable";
$site_statistics_table = translate('Statistics unavailable');
}
}
else {
$site_statistics_table = "Statistics unavailable";
$site_statistics_table = translate('Statistics unavailable');
}
$heading_php_info = translate('PHP Information');
$heading_config_clients = translate('Configuring Calendar Clients for DAViCal');
$davical_client_page = translate('The <a href="http://www.davical.org/clients.php">client setup page on the DAViCal website</a> has information on how to configure Evolution, Sunbird, Lightning and Mulberry to use remotely hosted calendars.');
$davical_no_calendar_interface = translate('The administrative interface has no facility for viewing or modifying calendar data.');
$heading_config_davical = translate('Configuring DAViCal');
$davical_mostly_working = translate ('If you can read this then things must be mostly working already.');
$davical_configuration_errors = ( $config_warnings == '' ? '' : '<div class="error"><h3 class="error">'
// Translations shared with index.php
$heading_clients = translate('Configuring Calendar Clients for DAViCal');
$content_cli1 = translate('The <a href="http://www.davical.org/clients.php">client setup page on the DAViCal website</a> has information on how to configure Evolution, Sunbird, Lightning and Mulberry to use remotely hosted calendars.');
$content_cli2 = translate('The administrative interface has no facility for viewing or modifying calendar data.');
// Translations shared with index.php
$heading_configure = translate('Configuring DAViCal');
$content_config1 = translate('If you can read this then things must be mostly working already.');
$content_config2 = ( $config_warnings == '' ? '' : '<div class="error"><h3 class="error">'
. translate('Your configuration produced PHP errors which should be corrected') . '</h3><pre>'
. $config_warnings.'</pre></div>'
);
$davical_installation_page = translate('The <a href="http://www.davical.org/installation.php">installation page on the DAViCal website</a> has some further information on how to install and configure this application.');
$content_config3 = translate('The <a href="http://www.davical.org/installation.php">DAViCal installation page</a> on the DAViCal website has some further information on how to install and configure this application.');
echo <<<EOBODY
@ -443,14 +448,14 @@ p {
$dependencies_table
</table>
</p>
<h2>$heading_config_davical</h2>
<p>$davical_mostly_working</p>
$davical_configuration_errors
<p>$davical_installation_page</p>
<h2>$heading_configure</h2>
<p>$content_config1</p>
$content_config2
<p>$content_config3</p>
<h2>$heading_config_clients</h2>
<p>$davical_client_page</p>
<p>$davical_no_calendar_interface</p>
<h2>$heading_clients</h2>
<p>$content_cli1</p>
<p>$content_cli2</p>
<h2>$heading_site_statistics</h2>
<p>$site_statistics_table</p>

238
po/ar.po
View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/davical/language/ar/)\n"
"MIME-Version: 1.0\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "Admin"
msgstr ""
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr ""
@ -315,11 +315,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -548,11 +550,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -582,7 +584,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1205,7 +1207,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1287,7 +1289,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1303,7 +1305,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1336,7 +1338,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1524,7 +1526,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1725,7 +1727,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr ""
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1786,7 +1788,7 @@ msgstr ""
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1820,24 +1822,27 @@ msgstr ""
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1847,3 +1852,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

238
po/ca.po
View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/davical/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -150,7 +150,7 @@ msgstr "Afegint un nou membre a aquest Grup Principal"
msgid "Admin"
msgstr "Admin"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administració"
@ -315,11 +315,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -548,11 +550,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -582,7 +584,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1205,7 +1207,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1287,7 +1289,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1303,7 +1305,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1336,7 +1338,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1524,7 +1526,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1725,7 +1727,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr ""
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1786,7 +1788,7 @@ msgstr ""
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1820,24 +1822,27 @@ msgstr ""
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1847,3 +1852,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/davical/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -149,7 +149,7 @@ msgstr ""
msgid "Admin"
msgstr ""
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr ""
@ -314,11 +314,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -547,11 +549,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -581,7 +583,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1204,7 +1206,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1286,7 +1288,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1302,7 +1304,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1335,7 +1337,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1523,7 +1525,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1724,7 +1726,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr ""
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1785,7 +1787,7 @@ msgstr ""
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1819,24 +1821,27 @@ msgstr ""
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1846,3 +1851,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

257
po/de.po
View File

@ -6,6 +6,7 @@
# Andrew McMillan <andrew@mcmillan.net.nz>, 2011
# fmms <mail@felixmoeller.de>, 2011
# fmms <mail@felixmoeller.de>, 2011, 2012
# Matthias Althaus <contact@althaus.it>, 2014
# mike.f <m.fresel@sysangels.com>, 2012
# mweil <mweil@physik.uni-hamburg.de>, 2012
# spasstl <marty@xemail.de>, 2011
@ -14,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-27 12:11+0000\n"
"Last-Translator: Matthias Althaus <contact@althaus.it>\n"
"Language-Team: German (http://www.transifex.com/projects/p/davical/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -156,7 +157,7 @@ msgstr "Füge neues Mitglied zu diesem Gruppenprinzipalen hinzu"
msgid "Admin"
msgstr "Admin"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administration"
@ -321,11 +322,13 @@ msgid ""
" same time"
msgstr "Sammlungen können nicht gleichzeitig CalDAV-Kalender und -Adressbuch sein"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Konfiguration von Kalender-Clients für DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "DAViCal-Konfiguration"
@ -554,11 +557,11 @@ msgstr "Auslieferung von Termineinladungen von einem Organisator an diese Termin
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Auslieferung von Terminantworten von einem Teilnehmer an diese Termineingangsbox"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Abhängigkeiten"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Abhängigkeit"
@ -588,7 +591,7 @@ msgstr "Anzeigename"
msgid "Does the user have the right to perform this role?"
msgstr "Hat der Benutzer die Berechtigung für diese Rolle?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Domain"
@ -1211,7 +1214,7 @@ msgstr "Ressourcen können nicht in/aus Sammlungen umgewandelt werden."
msgid "Revoke"
msgstr "Widerrufen"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr "SRV-Eintrag"
@ -1293,7 +1296,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr "Stellen Sie den Pfad für Ihre ics Daten ein, z.B. wird \"Kalender\" referenziert als /caldav.php/username/Kalender/"
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Konfiguration"
@ -1309,7 +1312,7 @@ msgstr "Sollen die hochgeladenen Einträge zu der Sammlung hinzugefügt werden?"
msgid "Show help on"
msgstr "Zeige Hilfe zum Thema"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Seitenstatistiken"
@ -1340,9 +1343,9 @@ msgstr "Sonderrechte"
#, php-format
msgid "Stable: %s, We have: %s !"
msgstr ""
msgstr "Stable: %s, wir haben: %s !"
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Status"
@ -1434,7 +1437,7 @@ msgstr "Das Attribut \"calendar-free-busy-set\" wird vom Attribut \"schedule-cal
#: inc/caldav-REPORT-calquery.php:307 inc/caldav-REPORT-calquery.php:313
msgid "The calendar-query report may not be run against that URL."
msgstr ""
msgstr "calendar-query darf nicht für diese URL ausgeführt werden."
#: inc/caldav-REPORT-calquery.php:304 inc/caldav-REPORT-calquery.php:310
msgid ""
@ -1530,7 +1533,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Diese Funktion erledigt die folgenden Aufgaben:\n<ul>\n <li>überprüfen der gültigen Benutzer im LDAP-Verzeichnis</li>\n <li>überprüfen der Benutzer in DAViCal</li>\n</ul> danach\n<ul>\n <li>falls ein Benutzer in DAViCal vorhanden ist, nicht aber im LDAP, diesen in DAViCal als inaktiv markieren</li>\n <li>falls ein Benutzer im LDAP vorhanden ist, nicht aber in DAViCal, diesen in DAViCal anlegen</li>\n <li>falls ein Benutzer im LDAP und DAViCal vorhanden ist, die Informationen in DAViCal aktualisieren</li>\n</ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1731,7 +1734,7 @@ msgstr "PUT-Anfrage auf eine Sammlungs-URL ist nicht erlaubt"
msgid "You must log in to use this system."
msgstr "Sie müssen angemeldet sein um dieses System zu nutzen."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Ihre Konfiguration hat PHP-Fehler verursacht. Dies sollte korrigiert werden."
@ -1792,7 +1795,7 @@ msgstr "angemeldet bleiben"
msgid "from principal"
msgstr "von Prinzipal"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr "iSchedule Domains"
@ -1824,32 +1827,230 @@ msgstr "Melden Sie sich mit dem Ihnen zugeteilten Benutzernamen und Passwort an.
#: htdocs/help.php:8
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
msgstr "DAViCal CalDAV Server - Konfigurationshilfe"
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
msgstr "PHP-Informationen"
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
msgstr "Auf der <a href=\"http://www.davical.org/clients.php\">DAViCal-Webseite</a> gibt es Informationen darüber, wie man Evolution, Sunbird, Lightning und Mulberry einrichtet, so dass sie gehostete Kalender benutzen."
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
msgstr "Das Admin-Interface hat keine Möglichkeit Kalenderdaten einzusehen oder zu bearbeiten."
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
msgstr "Wenn Sie dies lesen können, müssen die Grundlagen weitestgehend funktionieren."
#: htdocs/setup.php:404
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">installation page on"
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
msgstr "Auf der <a href=\"http://www.davical.org/installation.php\">DAViCal-Webseite</a> gibt es weitere Informationen darüber, wie Sie diese Anwendungen installieren und konfigurieren können."
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr "Sie sind als %s (%s) eingeloggt."
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr "Adminfunktionen"
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr "Die Verwaltung dieser Anwendung sollte relativ einfach sein. Sie können Folgendes verwalten:"
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr "Benutzer (oder Ressourcen oder Gruppen) und deren Beziehung untereinander"
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr "Die Arten von verfügbaren Beziehungen"
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr "Es gibt im Admin-Interface keine Möglichkeit Kalender oder Termine anzusehen und/oder zu verwalten."
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr "Für dies benötigen Sie eine Kalenderanwendung mit CalDAV-Unterstützung, wie zum Beispiel Evolution, Sunbird, Thunderbird (mit der Lightning-Erweiterung) oder Mulberry."
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr "Prinzipalen: Benutzer, Ressourcen und Gruppen"
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr "Dies sind die Elemente, welche Sammlungen von Kalenderressourcen (sprich Kalender) enthalten können."
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr "Dies ist die Liste von Benutzern"
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr "Sie können auf einen Benutzer klicken, um die vollständigen Details für diese Person (oder Gruppe oder Ressource - aber von hier an, werden wie sie einfach als Benutzer bezeichnen) einsehen."
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr "Die primären Unterschiede zwischen diesen sind folgende:"
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr "Benutzer haben wahrscheinlich Kalender und melden sich am System an."
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr "Ressourcen haben Kalender, aber melden sich nicht an."
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr "Gruppen erlauben zwischenstufliche Verknüpfungen, um den Verwaltungsaufwand zu reduzieren. Sie können keine Kalender haben und sie melden sich normalerweise nicht an."
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr "Gruppen &amp; Rechte"
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr "Rechte steuern den Zugriff auf Sammlungen oder Prinzipale"
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr "Gruppen erlauben es, Rechte einer Menge von Prinzipalen in einer Aktion zuzuweisen"
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr "Gruppen können Mitglieder anderer Gruppen sein, aber komplexe Verschachtelungen werden die Systemleistung stark beeinflussen"
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr "Auf der <a href=\"http://www.davical.org/installation.php\">DAViCal-Webseite</a> gibt es weitere Informationen darüber, wie Sie diese Anwendungen installieren und konfigurieren können."
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr "iSchedule - Konfiguration"
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr "iSchedule erlaubt CalDAV-Servern direkt untereinander zu kommunizieren, ohne das Einladungen per E-Mail für geplante Termine versandt werden müssen, deren Teilnehmer verschiedene Server und Anbieter nutzen. Zusätzlich ermöglicht es Verfügbarkeitsanfragen für externe Teilnehmer. Temine und Aufgaben, die über iSchedule empfangen werden, werden in einem speziellen Eingang \"scheduling inbox\" angezeigt."
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr "Die <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule-Konfiguration</a> benötigt einige DNS-Einträge. Es müssen für alle unterstützen Domains DNS-SRV-Einträge erstelt werden. Es muss mindestens 1 öffentlicher Schlüssel hinterlegt werden, wenn Sie von diesem Server aus Anfragen versenden möchten."
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr "FEHLER"
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr "Kein Wert für \"scheduling_dkim_domain\" gesetzt (bitte überprüfen Sie Ihre DAViCal-Konfigurationsdatei)"
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr "WARNUNG"
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr "Der Wert für \"scheduling_dkim_domain\" stimmt nicht mit dem Servernamen überein (bitte überprüfen Sie Ihre DAViCal-Konfigurationsdatei)"
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr "SRV-Eintrag für \"%s\" fehlt oder DNS-Fehler. Die Domain, von der aus Sie Termine senden möchten, sollte einen SRV-Eintrag haben."
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr "Der SRV-Eintrag für \"%s\" zeigt auf eine falsche Domain: \"%s\" an Stelle von \"%s\""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr "Der TXT-Eintrag für \"%s._domainkey.%s\" fehlt oder DNS-Fehler. Der private RSA-Schlüssel ist konfiguriert."
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr "Bitte fügen Sie die folgenden Zeilen zu Ihrer DAViCal-Konfigurationsdatei hinzu"
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr "und erzeugen Sie einen DNS-TXT-Eintrag für <b>%s._domainkey.%s</b>, der Folgendes beinhaltet:"
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr "Der TXT-Eintrag für %s._domainkey.%s ist fehlerhaft oder DNS-Fehler."
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr "iSchedule OK"
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr "<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Erklärung im DAViCal-Wiki</a>"
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr "Statistiken nicht verfügbar"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/davical/language/es_AR/)\n"
"MIME-Version: 1.0\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "Admin"
msgstr "Administrador"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr ""
@ -315,11 +315,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -548,11 +550,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -582,7 +584,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr "¿El usuario tiene permiso para efectuar este rol?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1205,7 +1207,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1287,7 +1289,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1303,7 +1305,7 @@ msgstr ""
msgid "Show help on"
msgstr "Mostrar ayuda sobre"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1336,7 +1338,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1524,7 +1526,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1725,7 +1727,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr "Debe conectarte para usar el sistema."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1786,7 +1788,7 @@ msgstr ""
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1820,24 +1822,27 @@ msgstr "Para conectarse debe utilizar el nombre de usuario y contraseña que le
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1847,3 +1852,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/davical/language/es_ES/)\n"
"MIME-Version: 1.0\n"
@ -152,7 +152,7 @@ msgstr "Agregando un nuevo miembro a este grupo"
msgid "Admin"
msgstr "Admin"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administración"
@ -317,11 +317,13 @@ msgid ""
" same time"
msgstr "Las colecciones no pueden ser calendarios CalDAV y agendas de teléfono CardDAV al mismo tiempo"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Configurando clientes de calendario para DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "Configurando DAViCal"
@ -550,11 +552,11 @@ msgstr "Permitir al organizador de un evento enviar una invitación a este buzó
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Permitir a un asistente a un evento enviar una respuesta a este buzón de planificación"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Dependencias"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Dependencia"
@ -584,7 +586,7 @@ msgstr "Nombre mostrado"
msgid "Does the user have the right to perform this role?"
msgstr "¿El usuario tiene permiso para desempeñar este rol?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Dominio"
@ -1207,7 +1209,7 @@ msgstr "Los recursos no pueden ser convertidos a colecciones (y viceversa)"
msgid "Revoke"
msgstr "Revocar"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr "Registro SVR"
@ -1289,7 +1291,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr "Indique la ruta en la que se almacenarán sus ics. Por ejemplo, 'calendario' se traducirá en '/caldav.php/usuario/calendario/'"
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Configuración"
@ -1305,7 +1307,7 @@ msgstr "¿Deberían ser añadidas las entradas enviadas a la colección en lugar
msgid "Show help on"
msgstr "Mostrar ayuda sobre"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Estadísticas del sitio"
@ -1338,7 +1340,7 @@ msgstr "Privilegios concretos."
msgid "Stable: %s, We have: %s !"
msgstr "Estable: %s, tenemos: %s !"
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Estado"
@ -1526,7 +1528,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Esta operación hace lo siguiente: <ul> <li>comprobar los usuarios válidos en LDAP</li> <li>comprobar los usuarios en DAViCal</li> </ul>, tras esto: <ul> <li>si un usuario está en DAViCal pero no en LDAP, marcarlo como inactivo</li> <li>si un usuario está en LDAP pero no en DAViCal, crearlo en DAViCal</li> <li>si está en ambos, actualizar la información en DAViCal</li> </ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1727,7 +1729,7 @@ msgstr "No puede usar PUT sobre la URL de una colección"
msgid "You must log in to use this system."
msgstr "Debe autenticarse para utilizar el sistema"
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Su configuración produjo errores de PHP que deberían ser corregidos"
@ -1788,7 +1790,7 @@ msgstr "recuérdame"
msgid "from principal"
msgstr "del Principal"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr "Dominios para iSchedule"
@ -1822,24 +1824,27 @@ msgstr "deberá autenticarse con el nombre de usuario y contraseña que se le co
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1849,3 +1854,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/davical/language/es_MX/)\n"
"MIME-Version: 1.0\n"
@ -151,7 +151,7 @@ msgstr "Agregando un miembro nuevo a este Principal de Grupo"
msgid "Admin"
msgstr "Admin"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administración"
@ -316,11 +316,13 @@ msgid ""
" same time"
msgstr "Las colecciones no pueden ser calendarios CalDAV y agendas de teléfono CardDAV al mismo tiempo"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Configurando Clientes de Calendario para DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "Configurando DAViCal"
@ -549,11 +551,11 @@ msgstr "Enviar invitaciones de itinerario de un organizador a este buzón de iti
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Enviar respuestas de itinerario de un participante a este buzón de itinerarios"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Dependencias"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Dependencia"
@ -583,7 +585,7 @@ msgstr "Nombre de Despliegue"
msgid "Does the user have the right to perform this role?"
msgstr "¿El usuario tiene derechos a desempeñar este papel?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1206,7 +1208,7 @@ msgstr "Recursos no pueden ser cambiadoes desde / hacias colecciones."
msgid "Revoke"
msgstr "Revocar"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1288,7 +1290,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Configuración"
@ -1304,7 +1306,7 @@ msgstr ""
msgid "Show help on"
msgstr "Mostrar ayuda de "
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Estadísticas del Sitio"
@ -1337,7 +1339,7 @@ msgstr "Privilegios Específicos"
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Estado"
@ -1525,7 +1527,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Esta operación hace lo siguiente: <ul><li>verificar que los usuarios son válidos en el directorio LDAP</li><li>checar los usuarios en DAViCal</li></ul> luego <ul><li>si un usuario está presente en DAViCal pero no en LDAP, assignarlo como inactivo en DAViCal</li> <li>si un usuario está presente en LDAP mas no en DAViCal, crear al usuario en DAViCal</li><li>si un usuario está presente en LDAP y en DAViCal, actualizar la información en DAViCal</li></ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1726,7 +1728,7 @@ msgstr "Ud. no puede ejecutar PUT en un URL de colección"
msgid "You must log in to use this system."
msgstr "Ud. debe identificarse para usar este sistema."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Su configuración produjo errors PHP que deben ser corregidos"
@ -1787,7 +1789,7 @@ msgstr "no me olvides"
msgid "from principal"
msgstr "del principal"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1821,24 +1823,27 @@ msgstr "deberá identificarse con el nombre de usuario y clave de acceso que le
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1848,3 +1853,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

File diff suppressed because it is too large Load Diff

238
po/et.po
View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Estonian (http://www.transifex.com/projects/p/davical/language/et/)\n"
"MIME-Version: 1.0\n"
@ -149,7 +149,7 @@ msgstr ""
msgid "Admin"
msgstr ""
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr ""
@ -314,11 +314,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -547,11 +549,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -581,7 +583,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1204,7 +1206,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1286,7 +1288,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1302,7 +1304,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1335,7 +1337,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1523,7 +1525,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1724,7 +1726,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr ""
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1785,7 +1787,7 @@ msgstr ""
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1819,24 +1821,27 @@ msgstr ""
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1846,3 +1851,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

238
po/fi.po
View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Finnish (http://www.transifex.com/projects/p/davical/language/fi/)\n"
"MIME-Version: 1.0\n"
@ -149,7 +149,7 @@ msgstr "Lisätään uusi jäsen tähän ryhmään"
msgid "Admin"
msgstr "Ylläpitäjä"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Ylläpito"
@ -314,11 +314,13 @@ msgid ""
" same time"
msgstr "Kokoelmat eivät voi olla samaan aikaan CalDAV-kalentereita jaCardDAV-osoitekirjoja."
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Kalenteriasiakasohjelmien asetus käyttämään DAViCalia"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "DAViCalin asetukset"
@ -547,11 +549,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Riippuvuudet"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Riippuvuus"
@ -581,7 +583,7 @@ msgstr "Näyttönimi"
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Toimialue"
@ -1204,7 +1206,7 @@ msgstr "Resurssia ei voi siirtää kokoelmaan / kokoelmasta."
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr "SRV-tietue"
@ -1286,7 +1288,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Asennus"
@ -1302,7 +1304,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Sivuston tilastot"
@ -1335,7 +1337,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Tila"
@ -1523,7 +1525,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1724,7 +1726,7 @@ msgstr "Et voi tehdä PUT-pyyntöä kokoelman URL:ään"
msgid "You must log in to use this system."
msgstr "Sinun tulee kirjautua sisään käyttääksesi tätä järjestelmää."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Asetuksesi tuottivat PHP-virheitä jotka tulisi korjata"
@ -1785,7 +1787,7 @@ msgstr "muista minut"
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1819,24 +1821,27 @@ msgstr "kirjaudu sisään käyttäjätunnuksella ja salasanalla jotka on annettu
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1846,3 +1851,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

241
po/fr.po
View File

@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# adrien-m <adrien.malgoyre@gmail.com>, 2014
# Andrew McMillan <andrew@mcmillan.net.nz>, 2011
# Cyril Giraud <cgiraud@free.fr>, 2013-2014
# Cyril Giraud <cgiraud@free.fr>, 2011, 2012
@ -13,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:24+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-23 14:15+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: French (http://www.transifex.com/projects/p/davical/language/fr/)\n"
"MIME-Version: 1.0\n"
@ -155,7 +156,7 @@ msgstr "Ajout d'un nouveau membre à ce groupe"
msgid "Admin"
msgstr "Administrateur"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administration"
@ -320,11 +321,13 @@ msgid ""
" same time"
msgstr "Les collections ne peuvent pas être des agendas CalDAV et des carnets d'adresses CardDAV en même temps"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Configurer les clients d'agendas pour DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "Configurer DAViCal"
@ -553,11 +556,11 @@ msgstr "Envoyer des invitations (programmées par un organisateur à cette boît
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Envoyer des réponses aux invitations (d'un participant à cette boîte de réception planification)"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Dépendances"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Dépendance"
@ -587,7 +590,7 @@ msgstr "Nom à afficher"
msgid "Does the user have the right to perform this role?"
msgstr "L'utilisateur est-il autorisé à avoir ce rôle ?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Domaine"
@ -1210,9 +1213,9 @@ msgstr "Les ressources ne devraient pas être modifiées en/à partir de collect
msgid "Revoke"
msgstr "Retirer"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr "Enregistrement srv"
msgstr "SRV Record"
#: inc/ui/collection-edit.php:234 inc/ui/principal-edit.php:385
msgid "Schedule Deliver"
@ -1292,7 +1295,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr "Positionnez le chemin d'accès à l'agenda, par exemple 'calendar' pour y accéder par le chemin /caldav.php/username/calendar/"
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Configuration"
@ -1308,7 +1311,7 @@ msgstr "Faut-il ajouter à la collection les entrées téléchargées vers le se
msgid "Show help on"
msgstr "Afficher l'aide sur"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Statistiques"
@ -1341,7 +1344,7 @@ msgstr "Privilèges spécifiques"
msgid "Stable: %s, We have: %s !"
msgstr "Stable: %s, nous avons: %s !"
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Statut"
@ -1529,7 +1532,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Cette action: <ul><li>regarde des comptes utilisateurs valides dans l'annuaire LDAP</li> <li>regarde les comptes utilisateurs dans DAViCal</li></ul> puis <ul><li>si un compte est présent dans DAViCal et pas dans l'annuaire LDAP, le rend inactif dans DAViCal</li> <li>si un compte est présent dans l'annuaire LDAP mais pas dans DAViCal, le crée dans DAViCal</li> <li>si un compte est présent dans LDAP et dans DAViCal, le met à jour dans DAViCal</li> </ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1730,7 +1733,7 @@ msgstr "Vous ne pouvez pas mettre à jour vers une URL de collection"
msgid "You must log in to use this system."
msgstr "Vous devez vous connecter pour utiliser ce logiciel."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Votre configuration a généré des erreurs PHP qui devrait être corrigé"
@ -1791,7 +1794,7 @@ msgstr "Ne pas m'oublier"
msgid "from principal"
msgstr "depuis le compte"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr "Domaines ISchedule"
@ -1825,24 +1828,27 @@ msgstr "Vous devez vous connecter avec le nom d'utilisateur et le mot de passe q
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr "Serveur CalDAV DAViCal - Aide à la configuration"
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr "Informations PHP"
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr "La <a href=\"http://www.davical.org/clients.php\">page de configuration des clients sur le site web de DAViCal</a> contient des informations sur la façon de configurer Evolution, Sunbird, Lightning and Mulberry pour utiliser des agendas distants (en anglais)."
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr "L'interface d'administration n'a d'interface ni pour voir ni pour modifier les entrées d'agenda."
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr "Si vous pouvez lire ceci, c'est que tout doit déjà à peu près fonctionner."
@ -1852,3 +1858,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr "La <a href=\"http://www.davical.org/installation.php\">page d'installation sur le site web de DAViCal</a> contient des informations complémentaires sur comment installer et configurer cette application (en anglais)."
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr "Vous êtes connectés en tant que %s (%s)"
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr "Fonctions d'administration"
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr "L'administration de cette application devrait être assez simple. Vous pouvez administrer :"
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr "Les utilisateurs (et les ressources, les groupes) et les relations entre eux"
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr "Les types de relations qui sont disponibles"
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr "Il n'y a pas aucun moyen de visualiser ou de mettre à jour les agendas ou les événements depuis cette interface d'administration."
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr "Pour cela, vous aurez besoin d'utiliser un logiciel d'agenda CalDAV comme Evolution, Sunbird, Thunderbird (avec l'extension Lightning) ou Mulberry."
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr "Comptes : Utilisateurs, Ressources et Groupes"
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr "Ce sont les éléments susceptibles d'avoir des entrées d'agenda."
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr "Vous trouverez ici une liste des utilisateurs (s'il y en a)"
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr "Vous pouvez cliquer sur un utilisateur pour voir le détail complet du compte (ou groupe ou ressource, mais pour le moment nous les appellerons utilisateurs)."
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr "Les différences principales entre eux sont les suivantes:"
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr "Les utilisateurs auront probablement des agendas, et sont généralement amenés à se logguer sur le système."
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr "Les ressources ont aussi des agendas, mais ne se logguent généralement pas."
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr "Les groupes permettent un lien intermédiaire pour réduire l'effort d'administration des comptes. Ils ne devraient pas avoir d'agenda et ne se logguent généralement pas."
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr "Groupes &amps; Droits"
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr "Les droits spécifient les droits d'accès à une collection ou à un compte"
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr "Les groupes permettent d'assigner des droits d'accès a un ensemble de comptes en une seule action"
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr "Les groupes peuvent être inclus à d'autres groupes cependant des imbrications complexes altéreront les performances du système."
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr "La <a href=\"http://www.davical.org/installation.php\">page d'installation de DAViCal</a> (en anglais) sur le site web de DAViCal contient des informations complémentaires sur la façon d'installer et de configurer cette application."
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr "Configuration iSchedule"
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr "iSchedule permet aux serveurs caldav de communiquer directement entre eux, sans avoir besoin de passer par des invitations courriel, pour les événements où les invités utilisent différents serveurs d'agenda. De plus, cela permet la consultation libre-occupé pour les invités distants. Les événements et tâches reçus par iSchedule seront présentés dans la boite de réception des événements des utilisateurs."
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr "La <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">configuration iSchedule</a> nécessite quelques entrées DNS. Des enregistrements DNS type SRV devront être créés pour tous les domaines dont vous voulez accepter les requêtes (en anglais: SRV record). Ce sont les parties des noms des domaines des adresses courriel des Comptes. Des exemples DAViCal sont listés ci-dessous pour les domaines trouvés dans votre base de données. Au moins 1 clé publique doit également être publiée si vous voulez envoyer des requêtes depuis ce serveur."
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr "ERREUR"
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr "Variable scheduling_dkim_domain non initialisée (vérifiez votre fichier de configuration DAViCal)"
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr "ATTENTION"
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr "La variable scheduling_dkim_domain ne correspond pas au nom de votre serveur (vérifiez votre fichier de configuration DAViCal)"
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr "Enregistrement DNS type SRV manquant pour \"%s\" ou échec DNS. Le domaine duquel vous allez envoyer des événements doit avoir un enregistrement DNS de type SRV (en anglais: SRV record)"
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr "Le SRV record pour \"%s\" pointe sur le mauvais domaine \"%s\" au lieu de \"%s\""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr "Enregistrement DNS type TXT manquant pour \"%s._domainkey.%s\" (en anglais: TXT record missing) ou échec DNS. Clé privée RSA configurée"
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr "merci d'ajouter la section suivante dans le fichier de configuration DAViCal"
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr "et créez un enregistrement DNS type TXT pour <b>%s._domainkey.%s</b> qui contienne:"
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr "Erreur DNS ou enregistrement TXT incorrect pour %s._domainkey.%s"
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr "iSchedule OK"
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr "<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explications sur le Wiki DAViCal</a> (en anglais)"
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr "Statistiques non disponibles"

238
po/hu.po
View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/davical/language/hu/)\n"
"MIME-Version: 1.0\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "Admin"
msgstr "Adminisztrátor"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr ""
@ -315,11 +315,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -548,11 +550,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -582,7 +584,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr "Van jogosultsága a felhasználónak?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1205,7 +1207,7 @@ msgstr "Erőforrások nem cserélhetők fel gyűjteményekkel"
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1287,7 +1289,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1303,7 +1305,7 @@ msgstr ""
msgid "Show help on"
msgstr "Súgó erről: "
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1336,7 +1338,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1524,7 +1526,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1725,7 +1727,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr "Be kell jelentkeznie a rendszer használatához."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1786,7 +1788,7 @@ msgstr "Emlékezzen rám"
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1820,24 +1822,27 @@ msgstr "Lépjen be felhasználónevével és jelszavával."
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1847,3 +1852,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/davical/language/id_ID/)\n"
"MIME-Version: 1.0\n"
@ -149,7 +149,7 @@ msgstr ""
msgid "Admin"
msgstr ""
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr ""
@ -314,11 +314,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -547,11 +549,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -581,7 +583,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1204,7 +1206,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1286,7 +1288,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1302,7 +1304,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1335,7 +1337,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1523,7 +1525,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1724,7 +1726,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr ""
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1785,7 +1787,7 @@ msgstr ""
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1819,24 +1821,27 @@ msgstr ""
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1846,3 +1851,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

238
po/it.po
View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/davical/language/it/)\n"
"MIME-Version: 1.0\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "Admin"
msgstr "Amministratore"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr ""
@ -315,11 +315,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -548,11 +550,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -582,7 +584,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr "L'utente ha i privilegi per ricoprire questo ruolo?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1205,7 +1207,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1287,7 +1289,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1303,7 +1305,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1336,7 +1338,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1524,7 +1526,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1725,7 +1727,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr "È necessario autenticarsi per utilizzare questo sistema."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1786,7 +1788,7 @@ msgstr "Mantieni aperta la connessione"
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1820,24 +1822,27 @@ msgstr ""
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1847,3 +1852,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

238
po/ja.po
View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Japanese (http://www.transifex.com/projects/p/davical/language/ja/)\n"
"MIME-Version: 1.0\n"
@ -150,7 +150,7 @@ msgstr "このグループプリンシパルに新規メンバーを追加中"
msgid "Admin"
msgstr "管理者"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "管理"
@ -315,11 +315,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "DAViCal用にカレンダークライアントを設定する"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "DAViCalを設定する"
@ -548,11 +550,11 @@ msgstr "主催者からのスケジュール招待をこのスケジュール受
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "出席者からのスケジュール返信をこのスケジュール受信箱に届ける"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "依存関係"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "依存関係"
@ -582,7 +584,7 @@ msgstr "表示名"
msgid "Does the user have the right to perform this role?"
msgstr "このユーザーはこのロールを行う権限を持っていますか?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1205,7 +1207,7 @@ msgstr "資源はコレクションに変更することもコレクションか
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1287,7 +1289,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "セットアップ"
@ -1303,7 +1305,7 @@ msgstr ""
msgid "Show help on"
msgstr "ヘルプの表示"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1336,7 +1338,7 @@ msgstr "特定の権限"
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "状態"
@ -1524,7 +1526,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1725,7 +1727,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr "このシステムを利用するにはログインしなくてはなりません。"
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1786,7 +1788,7 @@ msgstr "私を忘れないで"
msgid "from principal"
msgstr "プリンシパルから"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1820,24 +1822,27 @@ msgstr "あなたに発行したユーザー名とパスワードでログオン
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1847,3 +1852,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/davical/language/ko_KR/)\n"
"MIME-Version: 1.0\n"
@ -150,7 +150,7 @@ msgstr ""
msgid "Admin"
msgstr "관리자"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "관리"
@ -315,11 +315,13 @@ msgid ""
" same time"
msgstr "컬렉션은 CalDAV 캘린더와 CardDAV 주소록 모두가 될 수 없습니다."
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "DAViCal을 이용하기 위한 클라이언트 설정"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "DAViCal 설정중"
@ -548,11 +550,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -582,7 +584,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1205,7 +1207,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1287,7 +1289,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1303,7 +1305,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1336,7 +1338,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr "최신 안정버전: %s, 현재버전: %s"
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "상태"
@ -1524,7 +1526,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1725,7 +1727,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr ""
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "설정에 PHP 에러가 있습니다."
@ -1786,7 +1788,7 @@ msgstr "자동 로그인"
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1820,24 +1822,27 @@ msgstr "올바른 사용자명과 패스워드를 사용하세요."
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1847,3 +1852,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -155,7 +155,7 @@ msgstr ""
msgid "Admin"
msgstr ""
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr ""
@ -321,11 +321,13 @@ msgid ""
"same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -554,11 +556,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -588,7 +590,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1209,7 +1211,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1291,7 +1293,7 @@ msgid ""
"php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1307,7 +1309,7 @@ msgstr ""
msgid "Show help on"
msgstr ""
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1340,7 +1342,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1527,7 +1529,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1728,7 +1730,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr ""
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1788,7 +1790,7 @@ msgstr ""
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1822,24 +1824,27 @@ msgstr ""
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1849,3 +1854,198 @@ msgid ""
"the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead. "
"They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals "
"in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation "
"page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where "
"attendees are using different servers or providers. Additionally it enables "
"freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to "
"be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are "
"listed below for domains found in your database. At least 1 public key must "
"also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal "
"configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -3,6 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# bruberg <bruberg@gmail.com>, 2014
# aleksand <daniel@aleksand.no>, 2011
# Daniel <i18n@daniel.priv.no>, 2011
# Sven Olsen <sven@svenolsen.net>, 2011
@ -10,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-27 07:42+0000\n"
"Last-Translator: bruberg <bruberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/davical/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -115,7 +116,7 @@ msgstr "En samling finnes allerede der"
#: inc/caldav-PROPPATCH.php:143
msgid "A collection may not be both a calendar and an addressbook."
msgstr ""
msgstr "En samling kan ikke være både en kalender og en adressebok."
#: inc/caldav-BIND.php:47
msgid "A resource already exists at the destination."
@ -138,7 +139,7 @@ msgstr "Adgangstilgang slettet"
#: inc/ui/principal-edit.php:841 inc/ui/principal-edit.php:882
#: inc/ui/principal-edit.php:918
msgid "Action"
msgstr "Aksjon"
msgstr "Handling"
#: inc/ui/principal-edit.php:285
msgid "Active"
@ -152,7 +153,7 @@ msgstr "Legger nytt medlem til denne gruppekontoen"
msgid "Admin"
msgstr "Admin"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administrasjon"
@ -197,7 +198,7 @@ msgstr "En \"Administrator\" bruker har fulle rettigheter til hele DAViCal-syste
#: htdocs/public.php:51
msgid "Anonymous users are not allowed to modify calendars"
msgstr "Anonyme brukere har ikke tillatelse til endring av kalendre"
msgstr "Anonyme brukere har ikke tillatelse til å endre i kalendre"
#: htdocs/public.php:33
msgid "Anonymous users may only access public calendars"
@ -205,7 +206,7 @@ msgstr "Anonyme brukere har kun tilgang til offentlige kalendre"
#: inc/ui/collection-edit.php:31
msgid "Append"
msgstr ""
msgstr "Legg til"
#: htdocs/upgrade.php:45
msgid "Application DB User"
@ -225,7 +226,7 @@ msgstr "Vedlegg"
#: inc/drivers_ldap.php:341 inc/drivers_ldap.php:345
msgid "Authentication server unavailable."
msgstr ""
msgstr "Autentiseringsserver utilgjengelig"
msgid "Binding deleted"
msgstr "Forbindelse slettet"
@ -317,11 +318,13 @@ msgid ""
" same time"
msgstr "Samlinger kan ikke være både CalDAV og CardDAV adressebøker samtidig"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Konfigurerer kalender-klienter for DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "Konfigurerer DAViCal"
@ -435,19 +438,19 @@ msgstr "DKIM-signatur mangler"
#: inc/iSchedule.php:663
msgid "DKIM signature validation failed(DNS ERROR)"
msgstr "DKIM signatursjekk feilet(DNS ERROR)"
msgstr "DKIM signatursjekk feilet (DNS ERROR)"
#: inc/iSchedule.php:665
msgid "DKIM signature validation failed(KEY Parse ERROR)"
msgstr "DKIM signatursjekk feilet(KEY Parse ERROR)"
msgstr "DKIM signatursjekk feilet (KEY Parse ERROR)"
#: inc/iSchedule.php:667
msgid "DKIM signature validation failed(KEY Validation ERROR)"
msgstr "DKIM signatursjekk feilet(KEY Validation ERROR)"
msgstr "DKIM signatursjekk feilet (KEY Validation ERROR)"
#: inc/iSchedule.php:670
msgid "DKIM signature validation failed(Signature verification ERROR)"
msgstr "DKIM signatursjekk feilet(Signature verification ERROR)"
msgstr "DKIM signatursjekk feilet (Signature verification ERROR)"
#: htdocs/feed.php:78 inc/caldav-GET-functions.php:65
#: inc/CalDAVRequest.php:696 inc/CalDAVRequest.php:798 inc/caldav-BIND.php:64
@ -457,27 +460,27 @@ msgstr "Databasefeil"
#: htdocs/upgrade.php:43
msgid "Database Host"
msgstr "Database Host"
msgstr "Databasetjener"
#: htdocs/upgrade.php:39
msgid "Database Name"
msgstr "Database Navn"
msgstr "Databasenavn"
#: htdocs/upgrade.php:47
msgid "Database Owner"
msgstr "Database Eier"
msgstr "Databaseeier"
#: htdocs/upgrade.php:41
msgid "Database Password"
msgstr "Database Passord"
msgstr "Databasepassord"
#: htdocs/upgrade.php:42
msgid "Database Port"
msgstr "Database Port"
msgstr "Databaseport"
#: htdocs/upgrade.php:40
msgid "Database Username"
msgstr "Database Brukernavn"
msgstr "Databasebrukernavn"
#: inc/caldav-PUT-functions.php:43 inc/caldav-REPORT-sync-collection.php:63
#: inc/caldav-REPORT-sync-collection.php:72
@ -487,7 +490,7 @@ msgstr "Databasefeil"
#: htdocs/setup.php:323
msgid "Database is Connected"
msgstr ""
msgstr "Databasen er tilkoblet"
#: inc/ui/principal-edit.php:283
msgid "Date Format Style"
@ -550,11 +553,11 @@ msgstr "Levér invitasjoner fra en organisator til denne innboksen"
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Levér svar fra en deltaker til denne innboksen"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Avhengigheter"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Avhengighet"
@ -584,9 +587,9 @@ msgstr "Visningsnavn"
msgid "Does the user have the right to perform this role?"
msgstr "Har brukeren rettigheter til denne rollen?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
msgstr "Domene"
#: inc/ui/principal-browse.php:19
msgid "EMail"
@ -758,10 +761,10 @@ msgstr "Hjelp! Jeg har glemt passordet"
#: inc/interactive-page.php:45
msgid "Home"
msgstr "Home"
msgstr "Hjem"
msgid "Home "
msgstr ""
msgstr "Hjem"
#: inc/interactive-page.php:45
msgid "Home Page"
@ -775,10 +778,10 @@ msgid "ID"
msgstr "ID"
msgid "ISO Format"
msgstr "ISO Format"
msgstr "ISO-format"
msgid "ISO Format (YYYY-MM-DD)"
msgstr "ISO Format (YYYY-MM-DD)"
msgstr "ISO-format (YYYY-MM-DD)"
#. Translators: short for 'Identifier'
msgid "Id"
@ -926,7 +929,7 @@ msgstr "Ingen samling funnet på den lokasjonen"
#: inc/CalDAVRequest.php:1135
msgid "No resource exists at the destination."
msgstr ""
msgstr "Ingen ressurs eksisterer på det angitte målet"
#: htdocs/feed.php:126
msgid "No summary"
@ -957,7 +960,7 @@ msgstr "Opaque"
#: inc/iSchedule.php:656
msgid "Organizer Missing"
msgstr ""
msgstr "Mangler organisator"
#: inc/ui/collection-edit.php:166 inc/ui/principal-edit.php:13
msgid "Override a Lock"
@ -993,7 +996,7 @@ msgstr "PHP kalenderutvidelse er tilgjengelig."
#: htdocs/setup.php:332
msgid "PHP curl support"
msgstr ""
msgstr "PHP curl-støtte"
#: htdocs/setup.php:326
msgid "PHP iconv support"
@ -1207,7 +1210,7 @@ msgstr "Ressurser kan ikke endres fra/til samlinger"
msgid "Revoke"
msgstr "Gjenopprett"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1289,7 +1292,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr "Angi en sti for lagring av ics. For eksempel kalender vil bli referert som /caldav.php/brukernavn/kalender/"
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Oppsett"
@ -1299,13 +1302,13 @@ msgstr "Sett opp DAViCal"
#: inc/ui/collection-edit.php:30
msgid "Should the uploaded entries be appended to the collection?"
msgstr ""
msgstr "Skal de opplastede innslagene legges til samlingen?"
#: inc/page-header.php:26
msgid "Show help on"
msgstr "Vis hjelp om"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Statistikk"
@ -1338,7 +1341,7 @@ msgstr "Spesifikke privilegier"
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Status"
@ -1385,7 +1388,7 @@ msgstr "BIND Request-URI MÅ identifisere en samling."
#: inc/caldav-BIND.php:25
msgid "The BIND method is not allowed at that location."
msgstr "BIND metoden er ikke tillatt på den lokasjonen."
msgstr "BIND-metoden er ikke tillatt på den lokasjonen."
#: inc/caldav-PROPPATCH.php:165
msgid ""
@ -1430,7 +1433,7 @@ msgstr ""
#: inc/caldav-REPORT-calquery.php:307 inc/caldav-REPORT-calquery.php:313
msgid "The calendar-query report may not be run against that URL."
msgstr ""
msgstr "Den angitte URL kan ikke svare på kalenderforespørselsrapport."
#: inc/caldav-REPORT-calquery.php:304 inc/caldav-REPORT-calquery.php:310
msgid ""
@ -1526,7 +1529,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Denne operasjonen gjør følgende: <ul><li>sjekker gyldige gruppe i LDAP katalogen</li> <li>sjekker brukere i DAViCal</li></ul> deretter <ul><li>hvis en bruker finnes i DAViCal men ikke i LDAP setter denne sim inaktiv i DAViCal</li> <li>hvis en bruker finnes i LDAP men ikke i DAViCal oppretter brukeren i DAViCal</li> <li>hvis brukeren finnes i LDAP og DAViCal oppdaterer informasjonen i DAViCal</li> </ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1588,7 +1591,7 @@ msgstr "United States of America (m/d/y)"
#: inc/caldav-PROPPATCH.php:147
msgid "Unsupported resourcetype modification."
msgstr ""
msgstr "Ikke-støttet endring av ressurstype"
msgid "Update"
msgstr "Oppdater"
@ -1620,7 +1623,7 @@ msgstr "Oppgrader database"
#: inc/ui/collection-edit.php:27
msgid "Upload an iCalendar file or VCard file to replace this collection."
msgstr ""
msgstr "Last opp en iCalendar-fil eller VCard-fil for å erstatte denne samlingen."
#: inc/ui/principal-browse.php:8
msgid "User Calendar Principals"
@ -1727,7 +1730,7 @@ msgstr "Du kan ikke utføre PUT til en samlings URL"
msgid "You must log in to use this system."
msgstr "Du må logge inn for å bruke systemet"
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Konfigurasjonen lagde PHP feil som må rettes"
@ -1788,13 +1791,13 @@ msgstr "forglem meg ei"
msgid "from principal"
msgstr "fra konto"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
#: inc/iSchedule-POST.php:132 inc/iSchedule-POST.php:137
msgid "invalid request"
msgstr ""
msgstr "Ugyldig forespørsel"
#: htdocs/tools.php:87
msgid "path to store your ics"
@ -1822,26 +1825,29 @@ msgstr "logg på med brukernavnet og passordet du fikk utstedt"
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
msgstr "PHP-informasjon"
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
msgstr "Hvis du kan lese dette, burde det meste allerede fungere."
#: htdocs/setup.php:404
msgid ""
@ -1849,3 +1855,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr "Administrasjonsfunksjoner"
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr "Kontoer: Brukere, ressurser og grupper"
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr "Her er (kanskje :-) en liste over brukere"
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr "Forskjellen mellom dem er følgende:"
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr "Brukere vil normalt ha kalendre, og er også i stand til å logge på systemet."
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr "Ressurser har kalendre, men vil normalt ikke logge inn."
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr "Grupper og rettigheter"
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr "Tilganger angir rettighetene til en samling eller en konto"
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr "Statistikk utilgjengelig"

238
po/nl.po
View File

@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/davical/language/nl/)\n"
"MIME-Version: 1.0\n"
@ -153,7 +153,7 @@ msgstr "Een nieuw lid toevoegen aan deze Groep Principaal"
msgid "Admin"
msgstr "Beheer"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Beheer"
@ -318,11 +318,13 @@ msgid ""
" same time"
msgstr "Collecties kunnen niet terzelfdertijd CalDAV agenda's en CardDAV adresboeken zijn"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Agenda applicaties instellen voor DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "DAViCal instellen"
@ -551,11 +553,11 @@ msgstr "Bezorg uitnodigingen van een organisator aan deze planning inbox"
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Bezorg bevestigingen van een genodigde aan deze planning inbox"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Afhankelijkheden"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Afhankelijkheid"
@ -585,7 +587,7 @@ msgstr "Weergavenaam"
msgid "Does the user have the right to perform this role?"
msgstr "Heeft de gebruiker het recht om deze rol uit te voeren"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Domein"
@ -1208,7 +1210,7 @@ msgstr "Bronnen kunnen niet omgezet worden in Collecties en vice versa"
msgid "Revoke"
msgstr "Herroepen"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr "SRV record"
@ -1290,7 +1292,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr "Configureer het pad waar uw ics zal worden bewaard, bijvoorbeeld 'kalender' zal worden verwezen als /caldav.php/gebruikersnaam/kalender/"
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Configureren"
@ -1306,7 +1308,7 @@ msgstr "Moet de upload toegevoegd worden aan de collectie?"
msgid "Show help on"
msgstr "Toon hulp over"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Website statistieken"
@ -1339,7 +1341,7 @@ msgstr "Specifieke bevoegdheden"
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Status"
@ -1527,7 +1529,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Deze actie doet het volgende:<ul><li>controleer op geldige gebruikers in de LDAP-directory</li><li>controleer op gebruikers in DAViCal</li></ul>dan<ul><li>als een gebruiker aanwezig is in DAViCal maar niet in LDAP: markeer hem als inactief in DAViCal</li><li>als een gebruiker aanwezig is in LDAP, maar niet in DAViCal: de gebruiker in DAViCal aanmaken</li><li>als een gebruiker aanwezig is in LDAP en DAViCal: de informatie in DAViCal bijwerken</li></ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1728,7 +1730,7 @@ msgstr "U kan 'PUT' niet toepassen op de URL van een collectie"
msgid "You must log in to use this system."
msgstr "U moet zich aanmelden om dit systeem te gebruiken."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Uw configuratie heeft PHP fouten weergegeven die gecorrigeerd moeten worden"
@ -1789,7 +1791,7 @@ msgstr "Aangemeld blijven"
msgid "from principal"
msgstr "van Principaal"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr "iSchedule Domeinen"
@ -1823,24 +1825,27 @@ msgstr "U moet zich aanmelden met de gebruikersnaam en het wachtwoord die U zijn
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1850,3 +1855,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

238
po/pl.po
View File

@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/davical/language/pl/)\n"
"MIME-Version: 1.0\n"
@ -153,7 +153,7 @@ msgstr ""
msgid "Admin"
msgstr "Administrator"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administracja"
@ -318,11 +318,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Konfiguracja klientów kalendarza dla DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "Konfiguracja DAViCal"
@ -551,11 +553,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -585,7 +587,7 @@ msgstr ""
msgid "Does the user have the right to perform this role?"
msgstr "Czy użytkownik ma prawo wykonywać tę rolę?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1208,7 +1210,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1290,7 +1292,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr ""
@ -1306,7 +1308,7 @@ msgstr ""
msgid "Show help on"
msgstr "Pokaż pomoc na temat"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1339,7 +1341,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1527,7 +1529,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1728,7 +1730,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr "Musisz się zalogować."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Twoja konfiguracja powoduje błędy PHP, które należy poprawić"
@ -1789,7 +1791,7 @@ msgstr "zapamiętaj mnie"
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1823,24 +1825,27 @@ msgstr "powinieneś zalogować się swoją nazwą użytkownika i hasłem."
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1850,3 +1855,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/davical/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@ -151,7 +151,7 @@ msgstr "Adicionando novo membro a este grupo principal"
msgid "Admin"
msgstr "Admin"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administração"
@ -316,11 +316,13 @@ msgid ""
" same time"
msgstr "Coleções não podem ser ambos os calendários CalDAV e addressbooks CardDAV ao mesmo tempo"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Configurando os clientes de Calendário para DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "Configurando DAViCal"
@ -549,11 +551,11 @@ msgstr "Entregar convites agendados de um organizador para esta caixa de entrada
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Entregar respostas de agendamento de um participante a esta caixa de entrada de agendamento"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Dependências"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Dependência"
@ -583,7 +585,7 @@ msgstr "Displayname"
msgid "Does the user have the right to perform this role?"
msgstr "O usuário tem o direito de desempenhar este papel?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Domínio"
@ -1206,7 +1208,7 @@ msgstr "Recursos não podem ser mudados para/de coleções."
msgid "Revoke"
msgstr "Revogar"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr "Registro SRV"
@ -1288,7 +1290,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr "Definir o caminho para armazenar seu ics, por exemplo 'calendar' será referenciado como caldav.php/username/calendar/"
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Configuração"
@ -1304,7 +1306,7 @@ msgstr "Adicionar as entradas carregadas para a coleção?"
msgid "Show help on"
msgstr "Mostrar ajuda sobre"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Estatísticas do site"
@ -1337,7 +1339,7 @@ msgstr "Privilégios específicos"
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Estado"
@ -1525,7 +1527,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Esta operação faz o seguinte:<ul><li> verifica os usuários válidos no diretório LDAP</li><li>verifica usuários no DAViCal</li></ul>,então,<ul><li>se um usuário está presente no DAViCal, mas não está presente no LDAP, o mesmo será colocado como inativo no DAViCal</li><li>se um usuário está presente no LDAP, mas não está presente no DAViCal, o mesmo será criado no DAViCal</li><li> se um usuário estiver presente no LDAP e presente no DAViCal, então suas informações serão atualizadas no DAViCal</li></ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1726,7 +1728,7 @@ msgstr "Você não pode postar em uma URL de coleção"
msgid "You must log in to use this system."
msgstr "Você deve fazer login para utilizar este sistema."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Sua configuração possui erros de PHP que devem ser corrigido"
@ -1787,7 +1789,7 @@ msgstr "não esquecer de mim"
msgid "from principal"
msgstr "do principal"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr "Domínios iSchedule"
@ -1821,24 +1823,27 @@ msgstr "você deve fazer logon com o nome de usuário e senha que foram emitidos
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1848,3 +1853,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/davical/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
@ -151,7 +151,7 @@ msgstr "A acrescentar um novo membro a este Grupo Principal"
msgid "Admin"
msgstr "Administrador"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administração"
@ -316,11 +316,13 @@ msgid ""
" same time"
msgstr "As colecções não podem ser calendários CalDAV e livros de endereços CardDAV simultaneamente"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "A configurar clientes de calendário para o DAViCal"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "A configurar o DAViCal"
@ -549,11 +551,11 @@ msgstr "Entregar os convites de um organizador a esta caixa de entrada de reuni
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Entregar as respostas a convites dos participantes a esta caixa de entrada de reuniões"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Dependências"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Dependência"
@ -583,7 +585,7 @@ msgstr "Nome a apresentar"
msgid "Does the user have the right to perform this role?"
msgstr "O utilizador tem o direito de executar este papel?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Domínio"
@ -1206,7 +1208,7 @@ msgstr "Os recursos não podem ser alterados entre colecções."
msgid "Revoke"
msgstr "Revogar"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr "Registo SRV"
@ -1288,7 +1290,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr "Definir o caminho para guardar o seu ficheiro ics - e.g. 'calendar' será referido como /caldav.php/nome_de_utilizador/calendar/"
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Configurar"
@ -1304,7 +1306,7 @@ msgstr ""
msgid "Show help on"
msgstr "Mostrar ajuda sobre"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Estatísticas do site"
@ -1337,7 +1339,7 @@ msgstr "Privilégios específicos"
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Estado"
@ -1525,7 +1527,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Esta operação faz o seguinte: <ul><li>verifica utilizadores válidos no directório LDAP</li> <li>verifica utilizadores no DAViCal</li></ul> então <ul><li>se um utilizador existe no DAViCal mas não no LDAP, marca-o como inactivo no DAViCal</li> <li>se um utilizador está presente no LDAP mas não no DAViCal, cria o utilizador no DAViCal</li> <li>se um utilizador existir no LDAP e no DAViCal, actualiza a informação no DAViCal</li> </ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1726,7 +1728,7 @@ msgstr "Não pode executar um pedido PUT num URL de colecção"
msgid "You must log in to use this system."
msgstr "Tem que entrar para poder usar este sistema."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "A sua configuração criou alguns erros de PHP que devem ser corrigidos"
@ -1787,7 +1789,7 @@ msgstr "lembrar este login"
msgid "from principal"
msgstr "a partir do principal"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr "Domínios iSchedule"
@ -1821,24 +1823,27 @@ msgstr "deve entrar com o nome de utilizador e password que lhe foram atribuída
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1848,3 +1853,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

238
po/ru.po
View File

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/davical/language/ru/)\n"
"MIME-Version: 1.0\n"
@ -152,7 +152,7 @@ msgstr ""
msgid "Admin"
msgstr "Администратор"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Администрирование"
@ -317,11 +317,13 @@ msgid ""
" same time"
msgstr "Коллекция не может быть календарем и адресной книгой одновременно"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "Настройки DAViCal"
@ -550,11 +552,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Зависимости"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Зависимость"
@ -584,7 +586,7 @@ msgstr "Отображаемое имя"
msgid "Does the user have the right to perform this role?"
msgstr ""
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Домен"
@ -1207,7 +1209,7 @@ msgstr ""
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1289,7 +1291,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Параметры"
@ -1305,7 +1307,7 @@ msgstr ""
msgid "Show help on"
msgstr "Показывать помощь в"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Статистика"
@ -1338,7 +1340,7 @@ msgstr "Особые привилегии"
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Статус"
@ -1526,7 +1528,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1727,7 +1729,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr "Вы должны войти в систему, чтобы использовать ее."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1788,7 +1790,7 @@ msgstr "запомнить меня"
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1822,24 +1824,27 @@ msgstr "вы должны войти под тем именем польззов
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1849,3 +1854,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""

View File

@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# sevo <sevelik@gmail.com>, 2014
# sevo <sevelik@gmail.com>, 2012
msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-26 15:50+0000\n"
"Last-Translator: sevo <sevelik@gmail.com>\n"
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/davical/language/sk_SK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -113,7 +114,7 @@ msgstr "Zostava už na tomto mieste existuje."
#: inc/caldav-PROPPATCH.php:143
msgid "A collection may not be both a calendar and an addressbook."
msgstr ""
msgstr "Zostava môže byť len buď kalendár alebo len adresár."
#: inc/caldav-BIND.php:47
msgid "A resource already exists at the destination."
@ -150,7 +151,7 @@ msgstr "Do skupiny sa pridal nový člen"
msgid "Admin"
msgstr "Admin"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administrácia"
@ -203,7 +204,7 @@ msgstr "Anonymní užívatelia majú prístup len k verejným kalendárom"
#: inc/ui/collection-edit.php:31
msgid "Append"
msgstr ""
msgstr "Pridať"
#: htdocs/upgrade.php:45
msgid "Application DB User"
@ -223,7 +224,7 @@ msgstr "Prílohy"
#: inc/drivers_ldap.php:341 inc/drivers_ldap.php:345
msgid "Authentication server unavailable."
msgstr ""
msgstr "Server na ktorom beží overovanie je nedostupný"
msgid "Binding deleted"
msgstr "Prepojenie sa odstránilo"
@ -315,11 +316,13 @@ msgid ""
" same time"
msgstr "Zostavy nemusia byť súčasne CalDAV kalendáre a CardDAV adresáre"
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr "Konfigurácia klientov kalendára DAViCalu"
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr "Konfigurovanie DAViCalu"
@ -485,7 +488,7 @@ msgstr "Databázová chyba"
#: htdocs/setup.php:323
msgid "Database is Connected"
msgstr ""
msgstr "Databáza je pripojená"
#: inc/ui/principal-edit.php:283
msgid "Date Format Style"
@ -548,11 +551,11 @@ msgstr "Doručenie pozvánok plánovania od organizátora do tohto priečinka do
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr "Doručenie odpovedí plánovania od účastníka do tohoto priečinka doručenej pošty plánovania"
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr "Závislosti"
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr "Potreba"
@ -582,7 +585,7 @@ msgstr "Zobrazované meno"
msgid "Does the user have the right to perform this role?"
msgstr "Má užívateľ oprávnenia na vykonanie tejto úlohy?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr "Doména"
@ -759,7 +762,7 @@ msgid "Home"
msgstr "Domov"
msgid "Home "
msgstr ""
msgstr "Domov"
#: inc/interactive-page.php:45
msgid "Home Page"
@ -799,7 +802,7 @@ msgstr "Import kalendára a LDAP synchronizácia."
#: inc/interactive-page.php:37
msgid "Inactive Principals"
msgstr "Neaktívne základy"
msgstr "Neaktívne položky"
#: inc/caldav-PUT-default.php:45
msgid "Incorrect content type for addressbook: "
@ -924,7 +927,7 @@ msgstr "Na tomto mieste sa nenašli žiadne kolekcie."
#: inc/CalDAVRequest.php:1135
msgid "No resource exists at the destination."
msgstr ""
msgstr "Na zadanej destinácii sa nenachádza žiadny zdroj"
#: htdocs/feed.php:126
msgid "No summary"
@ -1205,7 +1208,7 @@ msgstr "Zdroje sa nemôžu pridávať/odoberať v zostavách."
msgid "Revoke"
msgstr "Zrušiť"
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr "SRV záznam"
@ -1287,7 +1290,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr "Zadajte cestu pre uloženie vášho ics (napr. hodnota 'calendar' bude zodpovedať ceste /caldav.php/username/calendar/)"
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Nastavenia"
@ -1297,13 +1300,13 @@ msgstr "Nstavenie DAViCalu"
#: inc/ui/collection-edit.php:30
msgid "Should the uploaded entries be appended to the collection?"
msgstr ""
msgstr "Majú sa nahraté záznamy pridať do zostavy?"
#: inc/page-header.php:26
msgid "Show help on"
msgstr "Zobraziť nápovedu"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr "Štatistika stránky"
@ -1334,9 +1337,9 @@ msgstr "Osobitné oprávnenia"
#, php-format
msgid "Stable: %s, We have: %s !"
msgstr ""
msgstr "Stabilné: %s, Máme: %s !"
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr "Status"
@ -1424,17 +1427,17 @@ msgstr "Cesta kalendáa obsahuje nepovolené znaky."
msgid ""
"The calendar-free-busy-set is superseded by the schedule-calendar-transp "
"property of a calendar collection."
msgstr ""
msgstr "\"calendar-free-busy-set\" sa nahradila za \"schedule-calendar-transp\" položku zostavy kalendára."
#: inc/caldav-REPORT-calquery.php:307 inc/caldav-REPORT-calquery.php:313
msgid "The calendar-query report may not be run against that URL."
msgstr ""
msgstr "calendar-query hlásenie nemôže bežať na tejto URL"
#: inc/caldav-REPORT-calquery.php:304 inc/caldav-REPORT-calquery.php:310
msgid ""
"The calendar-query report must be run against a calendar or a scheduling "
"collection"
msgstr "Kalendár-query správa musí byť spustená len na kalendári alebo zostave plánovania"
msgstr "Kalendár-query správa môže byť spustená len na kalendári alebo zostave plánovania"
msgid "The collection name may not be blank."
msgstr "Meno zostavy musí byť vyplnené."
@ -1468,7 +1471,7 @@ msgid "The full name must not be blank."
msgstr "Celé meno nesmie byť prázdne."
msgid "The name this user can log into the system with."
msgstr "Meno užívateľa s ktorým sa bude prihlásovať do systému."
msgstr "Týmto menom sa užívateľ bude prihlásovať do systému."
#: htdocs/tools.php:95
msgid "The path on the server where your .ics files are."
@ -1524,7 +1527,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr "Touto operáciou sa vykoná nasledovné: <ul><li>overia sa platní užívatelia v LDAP</li><li>overia sa užívatelia v DAViCal</li></ul>potom<ul><li>Ak sa užívateľ nachádza v DAViCal ale v LDAP nie, nastaví sa v DAViCal ako neaktívny</li><li>Ak sa užívateľ nachádza v LDAP ale nie v DAViCal, v DAViCal sa vytvorí</li><li>Ak sa užívateľ nachádza aj v LDAP a aj v DAViCal, aktualizujú sa jeho údaje v DAViCal</li></ul>"
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1586,7 +1589,7 @@ msgstr "United States of America (m/d/r)"
#: inc/caldav-PROPPATCH.php:147
msgid "Unsupported resourcetype modification."
msgstr ""
msgstr "Nepodporovaná zmena typu zdroja."
msgid "Update"
msgstr "Aktualizovať"
@ -1618,7 +1621,7 @@ msgstr "Aktualizovať databázu"
#: inc/ui/collection-edit.php:27
msgid "Upload an iCalendar file or VCard file to replace this collection."
msgstr ""
msgstr "Nahrať súbor iCalendar alebo VCard súbor a nahradiť túto zostavu."
#: inc/ui/principal-browse.php:8
msgid "User Calendar Principals"
@ -1725,7 +1728,7 @@ msgstr "Nemôžete vložiť URL do zostavy"
msgid "You must log in to use this system."
msgstr "Pre použitie programu sa musíte prihlásiť."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr "Vaša konfigurácia vygenerovala PHP chyby ktoré by mali byť opravené"
@ -1786,7 +1789,7 @@ msgstr "zapamätať prihlásenie"
msgid "from principal"
msgstr "z položky"
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr "iSchedule domény"
@ -1818,32 +1821,230 @@ msgstr "mali by ste sa prihlásiť pomocou vášho mena a hesla."
#: htdocs/help.php:8
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
msgstr "DAViCal CalDAV Server - Pomoc ku konfigurácii"
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
msgstr "PHP Informácia"
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
msgstr "Na <a href=\"http://www.davical.org/clients.php\">klientskej DAViCal webovej stránke</a> sú informácie ako nakonfigurovať Evolution, Sunbird, Lightning a Mulberry na pužitie vzdialených kalendárov."
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
msgstr "V administračnom rozhraní sa nedajú zobraziť a editovať dáta kalendára."
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
msgstr "Po prečítaní tohoto by už mali veci ísť ľahšie."
#: htdocs/setup.php:404
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">installation page on"
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
msgstr "Na <a href=\"http://www.davical.org/installation.php\">stránke popisu DAViCal inštalácie</a> je viac informácií ako nainštalovať a konfigurovať túto applikáciu."
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr "Si prihlásený/á ako %s (%s)"
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr "Administračné funkcie"
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr "Administrácia aplikácie by mala byť jednoduchá. Môžeš upravovať:"
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr "Užívateľov (alebo zdroje, skupiny) a vzťahy medzi nimi"
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr "Dostupné typy vzťahov"
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr "V administračnom rozhraní sa nedajú pozerať ani spravovať kalendáre a udalosti."
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr "Pamätaj,že budeš potrebovať aplikácie ktoré vedia spolupracovať s CalDAV. Napr. Evolution, Sunbird, Thunderbird (s Lightning modulom) alebo Mulberry."
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr "Položky: Užívatelia, Zdroje a Skupiny"
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr "To sú veci, ktoré môžu obsahovať zostavy zdrojov kalendára (kalendáre)."
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr "Zoznam užívateľov (možno :-)"
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr "Po kliknutí na užívateľa si môžte pozrieť podrobnosti osoby (príp. skupiny alebo zdroja - od teraz to budú už len užívatelia)."
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr "Toto sú hlavné rozdiely medzi nimi:"
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr "Užívatelia budú mať pravdepodobne kalendáre a tiež sa budú môcť prihlásiť do systému."
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr "Zdroje majú kalendáre, ale normálne sa do systému neprihlasujú."
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr "Skupiny sa používajú na zjednodušenie prepojení pre uľahčenie administrácie. Nemusia mať kalendáre a normálne sa neprihlasujú."
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr "Skupiny &amp; Povolenia"
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr "Povolenia určujú prístupové práva pre zostavy a položky"
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr "Skupiny umožňujú tieto zadané oprávnenia priradiť viacerým položkám naraz"
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr "Skupiny môžu byť členmi iných skupín, ale môže sa to dzrkadliť na výkone systému"
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr "Na <a href=\"http://www.davical.org/installation.php\">stránke popisu DAViCal inštalácie</a> je viac informácií ako nainštalovať a konfigurovať túto applikáciu."
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr "iSchedule konfigurácia"
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr "iSchedule umožňuje CalDAV serverom komunikovať o plánovaných akciách, kde účastníci používajú rôzne servery alebo poskytovateľov, priamo medzi sebou bez potreby posielania pozvánok e-mailom. Navyše umožňuje FreeBusy vyhľadávania pre vzdialených účastníkov. Udalosti a ToDo prijaté cez iSchedule sa ukážu v rozvrhoch užívateľov."
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr "<a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule konfigurácia</a> vyžaduje nejaké DNS záznamy. Pre všetky domény, pre ktoré chcete prijímať žiadosti, bude potrebné vytvoriť DNS SRV záznamy. Sú to doménové časti e-mailovej adresy hlavných položiek. V DAViCal príkladoch sú uvedené nižšie, pre domény sa nachádzajú v databáze. Pokiaľ si prajete zasielať žiadosti z tohto servera tak musí byť zverejnený aspoň 1 verejný kľúč."
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr "ERROR"
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr "Nie je zadaná scheduling_dkim_domain položka (skontroluj DAViCal konfiguračný súbor)"
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr "VAROVANIE"
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr "scheduling_dkim_domain neobsahuje názov servera (skontroluj DAViCal konfiguračný súbor)"
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr "Pre \"%s\" chýba SRV záznam alebo zlyhal DNS. Doména z ktorej odosielate udalosti z by mala mať SRV záznam"
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr "SRV záznam pre \"%s\" ukazuje na zlú doménu: \"%s\" namiesto \"%s\""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr "Pre \"%s._domainkey.%s\" chýba TXT záznam alebo zlyhal DNS. Súkromný RSA kľúč je nakonfigurovaný"
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr "Pridaj nasledujúcu časť do DAViCal konfiguračného súboru"
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr "a pre <b>%s._domainkey%s</b> vytvor DNS TXT záznam ktorý obsahuje:"
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr "TXT záznam pre %s._domainkey.%s je poškodený alebo zlyhal DNS"
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr "iSchedule OK"
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr "<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Vysvetlenie je na DAViCal Wiki</a>"
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr "Štatistiky sú nedostupné"

238
po/sv.po
View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: DAViCal\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-19 00:13+0200\n"
"PO-Revision-Date: 2014-10-18 22:14+0000\n"
"POT-Creation-Date: 2014-10-22 22:39+0200\n"
"PO-Revision-Date: 2014-10-22 20:42+0000\n"
"Last-Translator: Cyril Giraud <cgiraud@free.fr>\n"
"Language-Team: Swedish (http://www.transifex.com/projects/p/davical/language/sv/)\n"
"MIME-Version: 1.0\n"
@ -150,7 +150,7 @@ msgstr "Lägger till my medlem till detta gruppkonto"
msgid "Admin"
msgstr "Administratör"
#: inc/interactive-page.php:47
#: inc/interactive-page.php:47 htdocs/index.php:17
msgid "Administration"
msgstr "Administration"
@ -315,11 +315,13 @@ msgid ""
" same time"
msgstr ""
#: htdocs/setup.php:393 htdocs/setup.php:395
#: htdocs/setup.php:393 htdocs/setup.php:395 htdocs/index.php:47
#: htdocs/setup.php:398 htdocs/index.php:46
msgid "Configuring Calendar Clients for DAViCal"
msgstr ""
#: htdocs/setup.php:394 htdocs/setup.php:398
#: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52
#: htdocs/setup.php:403 htdocs/index.php:51
msgid "Configuring DAViCal"
msgstr ""
@ -548,11 +550,11 @@ msgstr ""
msgid "Deliver scheduling replies from an attendee to this scheduling inbox"
msgstr ""
#: htdocs/setup.php:375
#: htdocs/setup.php:375 htdocs/setup.php:377
msgid "Dependencies"
msgstr ""
#: htdocs/setup.php:376
#: htdocs/setup.php:376 htdocs/setup.php:378
msgid "Dependency"
msgstr ""
@ -582,7 +584,7 @@ msgstr "Visningsnamn"
msgid "Does the user have the right to perform this role?"
msgstr "Har användaren rättighet att utföra denna roll?"
#: htdocs/iSchedule.php:109
#: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119
msgid "Domain"
msgstr ""
@ -1205,7 +1207,7 @@ msgstr "Resurs kan inte ändras till / från samlingar."
msgid "Revoke"
msgstr ""
#: htdocs/iSchedule.php:111
#: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121
msgid "SRV Record"
msgstr ""
@ -1287,7 +1289,7 @@ msgid ""
"/caldav.php/username/calendar/"
msgstr ""
#: htdocs/setup.php:359 inc/interactive-page.php:34
#: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361
msgid "Setup"
msgstr "Konfigurera"
@ -1303,7 +1305,7 @@ msgstr ""
msgid "Show help on"
msgstr "Visa hjälp för"
#: htdocs/setup.php:380
#: htdocs/setup.php:380 htdocs/setup.php:382
msgid "Site Statistics"
msgstr ""
@ -1336,7 +1338,7 @@ msgstr ""
msgid "Stable: %s, We have: %s !"
msgstr ""
#: htdocs/setup.php:377
#: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379
msgid "Status"
msgstr ""
@ -1524,7 +1526,7 @@ msgid ""
"information in DAViCal</li> </ul>"
msgstr ""
#: htdocs/setup.php:360
#: htdocs/setup.php:360 htdocs/setup.php:362
msgid ""
"This page primarily checks the environment needed for DAViCal to work "
"correctly. Suggestions or patches to make it do more useful stuff will be "
@ -1725,7 +1727,7 @@ msgstr ""
msgid "You must log in to use this system."
msgstr "Du måste logga in för att använda detta system."
#: htdocs/setup.php:396 htdocs/setup.php:401
#: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406
msgid "Your configuration produced PHP errors which should be corrected"
msgstr ""
@ -1786,7 +1788,7 @@ msgstr "Kom ihåg mig"
msgid "from principal"
msgstr ""
#: htdocs/iSchedule.php:108
#: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118
msgid "iSchedule Domains"
msgstr ""
@ -1820,24 +1822,27 @@ msgstr "du behöver logga in med det användarnamn och lösenord du erhållit."
msgid "DAViCal CalDAV Server - Configuration Help"
msgstr ""
#: htdocs/setup.php:393
#: htdocs/setup.php:393 htdocs/setup.php:395
msgid "PHP Information"
msgstr ""
#: htdocs/setup.php:396
#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399
#: htdocs/index.php:47
msgid ""
"The <a href=\"http://www.davical.org/clients.php\">client setup page on the "
"DAViCal website</a> has information on how to configure Evolution, Sunbird, "
"Lightning and Mulberry to use remotely hosted calendars."
msgstr ""
#: htdocs/setup.php:397
#: htdocs/setup.php:397 htdocs/index.php:49 htdocs/setup.php:400
#: htdocs/index.php:48
msgid ""
"The administrative interface has no facility for viewing or modifying "
"calendar data."
msgstr ""
#: htdocs/setup.php:399
#: htdocs/setup.php:399 htdocs/index.php:53 htdocs/setup.php:404
#: htdocs/index.php:52
msgid "If you can read this then things must be mostly working already."
msgstr ""
@ -1847,3 +1852,198 @@ msgid ""
" the DAViCal website</a> has some further information on how to install and "
"configure this application."
msgstr ""
#: htdocs/index.php:18
#, php-format
msgid "You are logged on as %s (%s)"
msgstr ""
#: htdocs/index.php:20
msgid "Administration Functions"
msgstr ""
#: htdocs/index.php:21
msgid ""
"The administration of this application should be fairly simple. You can "
"administer:"
msgstr ""
#: htdocs/index.php:22
msgid "Users (or Resources or Groups) and the relationships between them"
msgstr ""
#: htdocs/index.php:23
msgid "The types of relationships that are available"
msgstr ""
#: htdocs/index.php:24
msgid ""
"There is no ability to view and / or maintain calendars or events from "
"within this administrative interface."
msgstr ""
#: htdocs/index.php:25
msgid ""
"To do that you will need to use a CalDAV capable calendaring application "
"such as Evolution, Sunbird, Thunderbird (with the Lightning extension) or "
"Mulberry."
msgstr ""
#: htdocs/index.php:27
msgid "Principals: Users, Resources and Groups"
msgstr ""
#: htdocs/index.php:28
msgid ""
"These are the things which may have collections of calendar resources (i.e. "
"calendars)."
msgstr ""
#: htdocs/index.php:31
msgid "Here is a list of users (maybe :-)"
msgstr ""
#: htdocs/index.php:32
msgid ""
"You can click on any user to see the full detail for that person (or group "
"or resource - but from now we'll just call them users)."
msgstr ""
#: htdocs/index.php:35 htdocs/index.php:34
msgid "The primary differences between them are as follows:"
msgstr ""
#: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35
#: htdocs/index.php:38
msgid ""
"Users will probably have calendars, and are likely to also log on to the "
"system."
msgstr ""
#: htdocs/index.php:37 htdocs/index.php:36
msgid "Resources do have calendars, but they will not usually log on."
msgstr ""
#: htdocs/index.php:38 htdocs/index.php:37
msgid ""
"Groups provide an intermediate linking to minimise administration overhead."
" They might not have calendars, and they will not usually log on."
msgstr ""
#: htdocs/index.php:41 htdocs/index.php:40
msgid "Groups &amp; Grants"
msgstr ""
#: htdocs/index.php:42 htdocs/index.php:41
msgid "Grants specify the access rights to a collection or a principal"
msgstr ""
#: htdocs/index.php:43 htdocs/index.php:42
msgid ""
"Groups allow those granted rights to be assigned to a set of many principals"
" in one action"
msgstr ""
#: htdocs/index.php:44 htdocs/index.php:43
msgid ""
"Groups may be members of other groups, but complex nesting will hurt system "
"performance"
msgstr ""
#: htdocs/index.php:54 htdocs/setup.php:409 htdocs/index.php:53
msgid ""
"The <a href=\"http://www.davical.org/installation.php\">DAViCal installation"
" page</a> on the DAViCal website has some further information on how to "
"install and configure this application."
msgstr ""
#: htdocs/iSchedule.php:12
msgid "iSchedule Configuration"
msgstr ""
#: htdocs/iSchedule.php:13
msgid ""
"iSchedule allows caldav servers to communicate directly with each other, "
"bypassing the need to send invitations via email, for scheduled events where"
" attendees are using different servers or providers. Additionally it enables"
" freebusy lookups for remote attendees. Events and ToDos received via "
"iSchedule will show up in the users scheduling inbox."
msgstr ""
#: htdocs/iSchedule.php:14
msgid ""
"The <a href=\"http://wiki.davical.org/w/iSchedule_configuration\">iSchedule "
"configuration</a> requires a few DNS entries. DNS SRV record(s) will need to"
" be created for all domains you wish to accept requests for, these are the "
"domain portion of email address on Principal records in DAViCal examples are"
" listed below for domains found in your database. At least 1 public key must"
" also be published if you wish to send requests from this server."
msgstr ""
#: htdocs/iSchedule.php:25
msgid "ERROR"
msgstr ""
#: htdocs/iSchedule.php:26
msgid ""
"scheduling_dkim_domain not set (please check your DAViCal configuration "
"file)"
msgstr ""
#: htdocs/iSchedule.php:28
msgid "WARNING"
msgstr ""
#: htdocs/iSchedule.php:29
msgid ""
"scheduling_dkim_domain does not match server name (please check your DAViCal"
" configuration file)"
msgstr ""
#: htdocs/iSchedule.php:56
#, php-format
msgid ""
"SRV record missing for \"%s\" or DNS failure, the domain you are going to "
"send events from should have an SRV record"
msgstr ""
#: htdocs/iSchedule.php:58
#, php-format
msgid "SRV record for \"%s\" points to wrong domain: \"%s\" instead of \"%s\""
msgstr ""
#: htdocs/iSchedule.php:63
#, php-format
msgid ""
"TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key "
"is configured"
msgstr ""
#: htdocs/iSchedule.php:66
msgid "please add the following section to your DAViCal configuration file"
msgstr ""
#: htdocs/iSchedule.php:69
#, php-format
msgid "and create a DNS TXT record for <b>%s._domainkey.%s</b> that contains:"
msgstr ""
#: htdocs/iSchedule.php:76
#, php-format
msgid "TXT record corrupt for %s._domainkey.%s or DNS failure"
msgstr ""
#: htdocs/iSchedule.php:78
msgid "iSchedule OK"
msgstr ""
#: htdocs/setup.php:339
#, php-format
msgid ""
"<a href=\"http://wiki.davical.org/w/Setup_Failure_Codes/%s\">Explanation on "
"DAViCal Wiki</a>"
msgstr ""
#: htdocs/setup.php:388 htdocs/setup.php:392
msgid "Statistics unavailable"
msgstr ""