From e431dc96e3d1221295b71baeaa992023ff3ec298 Mon Sep 17 00:00:00 2001 From: Cyril Giraud Date: Wed, 22 Oct 2014 22:14:48 +0200 Subject: [PATCH 1/7] Issue #20: Code modification to make some strings translatable. --- htdocs/iSchedule.php | 48 +++++++++++------- htdocs/index.php | 118 ++++++++++++++++++++++++++++--------------- htdocs/setup.php | 39 +++++++------- 3 files changed, 128 insertions(+), 77 deletions(-) diff --git a/htdocs/iSchedule.php b/htdocs/iSchedule.php index d6273f16..1eb94e2b 100644 --- a/htdocs/iSchedule.php +++ b/htdocs/iSchedule.php @@ -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 iSchedule configuration 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[] = <<iSchedule Configuration -

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. -
  -

-

The iSchedule configuration 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.

+

$heading_schedule

+

$content_sched1

+


 

+

$content_sched2

EOBODY; -$status = '

Status

'; +$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 = '

' . translate('Status') . '

'; if (!isset($c->scheduling_dkim_domain)) { $status .= <<ERROR -

scheduling_dkim_domain not set

+
$translated_error
+

$translated_err1

EOBODY; } elseif ( $c->scheduling_dkim_domain != $_SERVER['SERVER_NAME'] ) { $status .= <<WARNING -

scheduling_dkim_domain does not match server name

+
$translated_warning
+

$translated_war1

EOBODY; } else { @@ -42,30 +53,29 @@ function checkiSchedule () { $s = new iSchedule (); $s->domain = $c->scheduling_dkim_domain; if (!$s->getServer()) - $ret .= '

SRV record missing for '. $s->domain .' or DNS failure, the domain you are going to send events from should have an SRV record

' ; + $ret .= '

' . 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) . '

'; if ($s->remote_server != $c->scheduling_dkim_domain) - $ret .= '

SRV record for '.$s->domain . ' points to wrong domain: ' . $s->remote_server . ' instead of ' . $c->scheduling_dkim_domain .'

'; + $ret .= '

' . sprintf(translate('SRV record for "%s" points to wrong domain: "%s" instead of "%s"'), $s->domain, $s->remote_server, $c->scheduling_dkim_domain) . '

'; $s->remote_server = $c->scheduling_dkim_domain; $s->remote_selector = $c->scheduling_dkim_selector; if (!$s->getTxt()) { if (isset($c->schedule_private_key)) - $ret .= '

TXT record missing for '.$s->remote_selector . '._domainkey.' . $s->domain .' or DNS failure, Private RSA key is configured

' ; + $ret .= '

' . translate('TXT record missing for "%s._domainkey.%s" or DNS failure, Private RSA key is configured', $s->remote_selector, $s->domain) . '

'; else { $keys = generateKeys(); - $config = '

please add the following section to your DAViCal configuration file

$c->schedule_private_key = <<<ENDOFKEY' ."\n";
+      $config = '

' . translate('please add the following section to your DAViCal configuration file') . '

$c->schedule_private_key = <<<ENDOFKEY' . "\n";
       $config .= $keys['private']; //implode ("\n", str_split ( base64_encode ( $keys['private'] ), 64 ));
       $config .= "ENDOFKEY\n
"; - $config .= "
and create a DNS TXT record for " . $c->scheduling_dkim_selector . "._domainkey." . $c->scheduling_dkim_domain ; - $config .= " that contains:
";
-      $config .= "k=rsa; t=s; p=" . preg_replace('/-----(BEGIN|END) PUBLIC KEY-----\n/','',$keys['public']);
+      $config .= "
" . sprintf(translate('and create a DNS TXT record for %s._domainkey.%s that contains:'), $c->scheduling_dkim_selector, $c->scheduling_dkim_domain); + $config .= "
k=rsa; t=s; p=" . preg_replace('/-----(BEGIN|END) PUBLIC KEY-----\n/','',$keys['public']);
       $config .= '

'; $ret .= $config; } } if ( ! $s->parseTxt() ) - $ret .= '

TXT record corrupt for '. $s->remote_selector .'._domainkey.'. $s->domain .' or DNS failure

' ; + $ret .= '

' . sprintf(translate('TXT record corrupt for %s._domainkey.%s or DNS failure'), $s->remote_selector, $s->domain) . '

'; else if ( $ret == '' ) - $ret = '

iSchedule OK

'; + $ret = '

' . translate('iSchedule OK') . '

'; return $ret; } diff --git a/htdocs/index.php b/htdocs/index.php index 782578e1..cfa136ee 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -14,48 +14,84 @@ $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('%s. %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 & 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 client setup page on the DAViCal website 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 DAViCal installation page on the DAViCal website has some further information on how to install and configure this application.'); + + echo <<Administration -

You are logged on as $session->username ($session->fullname)

+

$heading_admin

+

$content_admin

+ +

$heading_functions

+

$content_func1

+
    +
  • $content_func2
  • +
  • $content_func3
  • +
+

$content_func4

+

$content_func5

+ +

$heading_principals

+

$content_princ1

+

$content_princ2

+

$content_princ3

+
    +
  • $content_princ4
  • +
  • $content_princ5
  • +
  • $content_princ6
  • +
+ +

$heading_groups

+
    +
  • $content_grp1
  • +
  • $content_grp2
  • +
  • $content_grp3
  • +
+ +

$heading_clients

+

$content_cli1

+

$content_cli2

+ +

$heading_configure

+

$content_config1

+

$content_config3

+ EOBODY; -?> -

Administration Functions

-

The administration of this application should be fairly simple. You can administer:

-
    -
  • Users (or Resources or Groups) and the relationships between them
  • -
  • The types of relationships that are available
  • -
-

There is no ability to view and / or maintain calendars or events from within this administrative interface.

-

To do that you will need to use a CalDAV capable calendaring application such as Evolution, Sunbird, Thunderbird -(with the Lightning extension) or Mulberry.

-

Principals: Users, Resources and Groups

-

These are the things which may have collections of calendar resources (i.e. calendars).

-

Here is a list of users (maybe :-). 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).

-

The primary differences between them are as follows:

-
    -
  • Users will probably have calendars, and are likely to also log on to the system.
  • -
  • Resources do have calendars, but they will not usually log on.
  • -
  • Groups provide an intermediate linking to minimise administration overhead. They might not have calendars, and they will not usually log on.
  • -
- -

Groups & Grants

-
    -
  • Grants specify the access rights to a collection or a principal
  • -
  • Groups allow those granted rights to be assigned to a set of many principals in one action
  • -
  • Groups may be members of other groups, but complex nesting will hurt system performance
  • -
- -

Configuring Calendar Clients for DAViCal

-

The DAViCal client setup page on sourceforge have information on how -to configure Evolution, Sunbird, Lightning and Mulberry to use remotely hosted calendars.

-

The administrative interface has no facility for viewing or modifying calendar data.

- -

Configuring DAViCal

-

If you can read this then things must be mostly working already.

-

The DAViCal installation page on sourceforge has -some further information on how to install and configure this application.

- -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('Explanation on DAViCal Wiki'); $dependencies_table = ''; $dep_tpl = ' %s %s - Explanation on DAViCal Wiki + $translated_failure_code '; 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 client setup page on the DAViCal website 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 == '' ? '' : '

' +// Translations shared with index.php +$heading_clients = translate('Configuring Calendar Clients for DAViCal'); +$content_cli1 = translate('The client setup page on the DAViCal website 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 == '' ? '' : '

' . translate('Your configuration produced PHP errors which should be corrected') . '

'
              . $config_warnings.'
' ); -$davical_installation_page = translate('The installation page on the DAViCal website has some further information on how to install and configure this application.'); +$content_config3 = translate('The DAViCal installation page on the DAViCal website has some further information on how to install and configure this application.'); echo <<

-

$heading_config_davical

-

$davical_mostly_working

-$davical_configuration_errors -

$davical_installation_page

+

$heading_configure

+

$content_config1

+$content_config2 +

$content_config3

-

$heading_config_clients

-

$davical_client_page

-

$davical_no_calendar_interface

+

$heading_clients

+

$content_cli1

+

$content_cli2

$heading_site_statistics

$site_statistics_table

From 7d2056fb3a0a8e38cfc3e6d5702f277c289a7b31 Mon Sep 17 00:00:00 2001 From: Cyril Giraud Date: Thu, 23 Oct 2014 16:05:51 +0200 Subject: [PATCH 2/7] Translations update according to transifex (french). --- htdocs/index.php | 3 +- po/ar.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/ca.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/cs_CZ.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/de.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/es_AR.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/es_ES.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/es_MX.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/es_VE.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/et.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/fi.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/fr.po | 241 +++++++++++++++++++++++++++++++++++++++++++---- po/hu.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/id_ID.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/it.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/ja.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/ko_KR.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/messages.pot | 236 ++++++++++++++++++++++++++++++++++++++++++---- po/nb_NO.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/nl.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/pl.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/pt_BR.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/pt_PT.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/ru.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/sk_SK.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- po/sv.po | 238 ++++++++++++++++++++++++++++++++++++++++++---- 26 files changed, 5477 insertions(+), 477 deletions(-) diff --git a/htdocs/index.php b/htdocs/index.php index cfa136ee..d1ccc252 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -29,8 +29,7 @@ $content_princ1 = translate('These are the things which may have collections of $content_princ2 = sprintf('%s. %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).") +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.'); diff --git a/po/ar.po b/po/ar.po index 4b132ef4..904770d7 100644 --- a/po/ar.po +++ b/po/ar.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/ca.po b/po/ca.po index 015a8e8a..2f1bfe77 100644 --- a/po/ca.po +++ b/po/ca.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index cde5091e..3d922c46 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/de.po b/po/de.po index c3a56ad7..4f0a1d96 100644 --- a/po/de.po +++ b/po/de.po @@ -14,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: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 \n" "Language-Team: German (http://www.transifex.com/projects/p/davical/language/de/)\n" "MIME-Version: 1.0\n" @@ -156,7 +156,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 +321,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 +556,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 +590,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 +1213,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 +1295,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 +1311,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" @@ -1342,7 +1344,7 @@ msgstr "Sonderrechte" 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" @@ -1530,7 +1532,7 @@ msgid "" "information in DAViCal " msgstr "Diese Funktion erledigt die folgenden Aufgaben:\n
    \n
  • überprüfen der gültigen Benutzer im LDAP-Verzeichnis
  • \n
  • überprüfen der Benutzer in DAViCal
  • \n
danach\n
    \n
  • falls ein Benutzer in DAViCal vorhanden ist, nicht aber im LDAP, diesen in DAViCal als inaktiv markieren
  • \n
  • falls ein Benutzer im LDAP vorhanden ist, nicht aber in DAViCal, diesen in DAViCal anlegen
  • \n
  • falls ein Benutzer im LDAP und DAViCal vorhanden ist, die Informationen in DAViCal aktualisieren
  • \n
" -#: 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 +1733,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 +1794,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" @@ -1826,24 +1828,27 @@ msgstr "Melden Sie sich mit dem Ihnen zugeteilten Benutzernamen und Passwort an. 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 client setup page on the " "DAViCal website 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 "" @@ -1853,3 +1858,198 @@ msgid "" " the DAViCal website 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/es_AR.po b/po/es_AR.po index 42f03856..8bcfa89c 100644 --- a/po/es_AR.po +++ b/po/es_AR.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index 5e279f99..8fd35772 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -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 \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 " msgstr "Esta operación hace lo siguiente:
  • comprobar los usuarios válidos en LDAP
  • comprobar los usuarios en DAViCal
, tras esto:
  • si un usuario está en DAViCal pero no en LDAP, marcarlo como inactivo
  • si un usuario está en LDAP pero no en DAViCal, crearlo en DAViCal
  • si está en ambos, actualizar la información en DAViCal
" -#: 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/es_MX.po b/po/es_MX.po index 7bdbbb51..95b710b7 100644 --- a/po/es_MX.po +++ b/po/es_MX.po @@ -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 \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 " msgstr "Esta operación hace lo siguiente:
  • verificar que los usuarios son válidos en el directorio LDAP
  • checar los usuarios en DAViCal
luego
  • si un usuario está presente en DAViCal pero no en LDAP, assignarlo como inactivo en DAViCal
  • si un usuario está presente en LDAP mas no en DAViCal, crear al usuario en DAViCal
  • si un usuario está presente en LDAP y en DAViCal, actualizar la información en DAViCal
" -#: 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/es_VE.po b/po/es_VE.po index 242be587..f17fd6ad 100644 --- a/po/es_VE.po +++ b/po/es_VE.po @@ -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 \n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/projects/p/davical/language/es_VE/)\n" "MIME-Version: 1.0\n" @@ -150,7 +150,7 @@ msgstr "Agregando un nuevo miembro al grupo principal" msgid "Admin" msgstr "Administrador del Sistema" -#: inc/interactive-page.php:47 +#: inc/interactive-page.php:47 htdocs/index.php:17 msgid "Administration" msgstr "Administración" @@ -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 " 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 "Mantender la sesión activa" 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/et.po b/po/et.po index cb264f44..c64f748f 100644 --- a/po/et.po +++ b/po/et.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/fi.po b/po/fi.po index 2ff7f6be..251b04c6 100644 --- a/po/fi.po +++ b/po/fi.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/fr.po b/po/fr.po index 34b38550..cdb42c89 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# adrien-m , 2014 # Andrew McMillan , 2011 # Cyril Giraud , 2013-2014 # Cyril Giraud , 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:04+0000\n" "Last-Translator: Cyril Giraud \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 " msgstr "Cette action:
  • regarde des comptes utilisateurs valides dans l'annuaire LDAP
  • regarde les comptes utilisateurs dans DAViCal
puis
  • si un compte est présent dans DAViCal et pas dans l'annuaire LDAP, le rend inactif dans DAViCal
  • si un compte est présent dans l'annuaire LDAP mais pas dans DAViCal, le crée dans DAViCal
  • si un compte est présent dans LDAP et dans DAViCal, le met à jour dans DAViCal
" -#: 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 client setup page on the " "DAViCal website has information on how to configure Evolution, Sunbird, " "Lightning and Mulberry to use remotely hosted calendars." msgstr "La page de configuration des clients sur le site web de DAViCal 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 has some further information on how to install and " "configure this application." msgstr "La page d'installation sur le site web de DAViCal 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 & Grants" +msgstr "Groupes &s; 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 DAViCal installation" +" page on the DAViCal website has some further information on how to " +"install and configure this application." +msgstr "La page d'installation de DAViCal (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 iSchedule " +"configuration 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 configuration iSchedule 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 %s._domainkey.%s that contains:" +msgstr "et créez un enregistrement DNS type TXT pour %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "Explications sur le Wiki DAViCal (en anglais)" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "Statistiques non disponibles" diff --git a/po/hu.po b/po/hu.po index b6cc1a45..a524af2d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/id_ID.po b/po/id_ID.po index 9d82c57a..d813aa36 100644 --- a/po/id_ID.po +++ b/po/id_ID.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/it.po b/po/it.po index 20d57876..3301f6eb 100644 --- a/po/it.po +++ b/po/it.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/ja.po b/po/ja.po index 5a8c57c2..2037b22c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/ko_KR.po b/po/ko_KR.po index 60afd7f2..25fccb3d 100644 --- a/po/ko_KR.po +++ b/po/ko_KR.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/messages.pot b/po/messages.pot index cba54ecf..11199c08 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -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 \n" "Language-Team: LANGUAGE \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation " +"page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" + diff --git a/po/nb_NO.po b/po/nb_NO.po index b2143dbb..8a6d0e2e 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -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 \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/davical/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -152,7 +152,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" @@ -317,11 +317,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" @@ -550,11 +552,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,7 +586,7 @@ 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 "" @@ -1207,7 +1209,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 +1291,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" @@ -1305,7 +1307,7 @@ msgstr "" 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 +1340,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" @@ -1526,7 +1528,7 @@ msgid "" "information in DAViCal " msgstr "Denne operasjonen gjør følgende:
  • sjekker gyldige gruppe i LDAP katalogen
  • sjekker brukere i DAViCal
deretter
  • hvis en bruker finnes i DAViCal men ikke i LDAP setter denne sim inaktiv i DAViCal
  • hvis en bruker finnes i LDAP men ikke i DAViCal oppretter brukeren i DAViCal
  • hvis brukeren finnes i LDAP og DAViCal oppdaterer informasjonen i DAViCal
" -#: 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 "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,7 +1790,7 @@ 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 "" @@ -1822,24 +1824,27 @@ 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 "" -#: htdocs/setup.php:396 +#: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399 +#: htdocs/index.php:47 msgid "" "The client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/nl.po b/po/nl.po index cf9c1b5d..91439617 100644 --- a/po/nl.po +++ b/po/nl.po @@ -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 \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 " msgstr "Deze actie doet het volgende:
  • controleer op geldige gebruikers in de LDAP-directory
  • controleer op gebruikers in DAViCal
dan
  • als een gebruiker aanwezig is in DAViCal maar niet in LDAP: markeer hem als inactief in DAViCal
  • als een gebruiker aanwezig is in LDAP, maar niet in DAViCal: de gebruiker in DAViCal aanmaken
  • als een gebruiker aanwezig is in LDAP en DAViCal: de informatie in DAViCal bijwerken
" -#: 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/pl.po b/po/pl.po index 5562eaf6..c1caed98 100644 --- a/po/pl.po +++ b/po/pl.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index ed5cc2eb..06f7ee08 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -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 \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 " msgstr "Esta operação faz o seguinte:
  • verifica os usuários válidos no diretório LDAP
  • verifica usuários no DAViCal
,então,
  • se um usuário está presente no DAViCal, mas não está presente no LDAP, o mesmo será colocado como inativo no DAViCal
  • se um usuário está presente no LDAP, mas não está presente no DAViCal, o mesmo será criado no DAViCal
  • se um usuário estiver presente no LDAP e presente no DAViCal, então suas informações serão atualizadas no DAViCal
" -#: 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/pt_PT.po b/po/pt_PT.po index 764d5924..c1495d8f 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -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 \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 " msgstr "Esta operação faz o seguinte:
  • verifica utilizadores válidos no directório LDAP
  • verifica utilizadores no DAViCal
então
  • se um utilizador existe no DAViCal mas não no LDAP, marca-o como inactivo no DAViCal
  • se um utilizador está presente no LDAP mas não no DAViCal, cria o utilizador no DAViCal
  • se um utilizador existir no LDAP e no DAViCal, actualiza a informação no DAViCal
" -#: 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/ru.po b/po/ru.po index 23508622..499d82ce 100644 --- a/po/ru.po +++ b/po/ru.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/sk_SK.po b/po/sk_SK.po index 41eb5d27..f5d965fb 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -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 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/davical/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -150,7 +150,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" @@ -315,11 +315,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" @@ -548,11 +550,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 +584,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" @@ -1205,7 +1207,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 +1289,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" @@ -1303,7 +1305,7 @@ msgstr "" 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" @@ -1336,7 +1338,7 @@ msgstr "Osobitné oprávnenia" 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" @@ -1524,7 +1526,7 @@ msgid "" "information in DAViCal " msgstr "Touto operáciou sa vykoná nasledovné:
  • overia sa platní užívatelia v LDAP
  • overia sa užívatelia v DAViCal
potom
  • Ak sa užívateľ nachádza v DAViCal ale v LDAP nie, nastaví sa v DAViCal ako neaktívny
  • Ak sa užívateľ nachádza v LDAP ale nie v DAViCal, v DAViCal sa vytvorí
  • Ak sa užívateľ nachádza aj v LDAP a aj v DAViCal, aktualizujú sa jeho údaje v DAViCal
" -#: 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 "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 +1788,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" @@ -1820,24 +1822,27 @@ msgstr "mali by ste sa prihlásiť pomocou vášho mena a hesla." 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" diff --git a/po/sv.po b/po/sv.po index cd60cfe3..9df68362 100644 --- a/po/sv.po +++ b/po/sv.po @@ -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 \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 " 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 client setup page on the " "DAViCal website 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 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 & 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 DAViCal installation" +" page 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 iSchedule " +"configuration 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 %s._domainkey.%s 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 "" +"Explanation on " +"DAViCal Wiki" +msgstr "" + +#: htdocs/setup.php:388 htdocs/setup.php:392 +msgid "Statistics unavailable" +msgstr "" From d8d2dbfeda73e5c3c1b77c45369331f37b90abcf Mon Sep 17 00:00:00 2001 From: Cyril Giraud Date: Sat, 25 Oct 2014 18:19:18 +0200 Subject: [PATCH 3/7] Translations update from Transifex. --- po/es_VE.po | 312 ++++++++++++++++++++++++++-------------------------- po/fr.po | 2 +- po/sk_SK.po | 59 +++++----- 3 files changed, 188 insertions(+), 185 deletions(-) diff --git a/po/es_VE.po b/po/es_VE.po index f17fd6ad..00c2a7e7 100644 --- a/po/es_VE.po +++ b/po/es_VE.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# e1th0r , 2011 +# Hector Colina , 2011,2014 +# Hector Colina , 2014 +# Hector Colina , 2011,2014 msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \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 \n" +"PO-Revision-Date: 2014-10-25 05:10+0000\n" +"Last-Translator: Hector Colina \n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/projects/p/davical/language/es_VE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,13 +24,13 @@ msgstr "" #. http://php.net/manual/en/function.strftime.php #: htdocs/feed.php:134 htdocs/feed.php:142 msgid "%F %T" -msgstr "" +msgstr "%F %T" #. Translators: his is the formatting of just the time. See #. http://php.net/manual/en/function.strftime.php #: htdocs/feed.php:140 msgid "%T" -msgstr "" +msgstr "%T" #: inc/ui/principal-edit.php:168 msgid "*** Default Locale ***" @@ -39,7 +41,7 @@ msgstr "** Desconocido **" #, php-format msgid "- adding %s to group : %s" -msgstr "Agregando %s al grupo: %s" +msgstr "- agregando %s al grupo: %s" #, php-format msgid "- adding users %s to group : %s" @@ -63,7 +65,7 @@ msgstr "- desactivando usuarios: %s" #, php-format msgid "- nothing done on : %s" -msgstr "- Nada que hacer en: %s" +msgstr "- nada que hacer en: %s" #, php-format msgid "- removing %s from group : %s" @@ -109,15 +111,15 @@ msgstr "" #: inc/caldav-MKCOL.php:190 msgid "A collection already exists at that location." -msgstr "" +msgstr "Ya existe una colección en esta localización" #: inc/caldav-PROPPATCH.php:143 msgid "A collection may not be both a calendar and an addressbook." -msgstr "" +msgstr "Una colección no uede er al mismo tiempo un calendario y una agenda de direcciones" #: inc/caldav-BIND.php:47 msgid "A resource already exists at the destination." -msgstr "" +msgstr "Ya existe un recurso en ese destino." #: htdocs/setup.php:319 msgid "AWL Library version " @@ -164,7 +166,7 @@ msgstr "Todo" #: inc/ui/principal-edit.php:866 msgid "All collection data will be unrecoverably deleted." -msgstr "" +msgstr "Todos los datos de la colección serán eliminados de forma permanente" #: htdocs/tools.php:154 #, php-format @@ -182,7 +184,7 @@ msgstr "Todos los privilegios" #: inc/caldav-PROPPATCH.php:331 msgid "All requested changes were made." -msgstr "" +msgstr "Todos los cambios propuestos fueron realizados" #: inc/CalDAVRequest.php:741 msgid "" @@ -195,15 +197,15 @@ msgstr "" #: htdocs/public.php:51 msgid "Anonymous users are not allowed to modify calendars" -msgstr "" +msgstr "Los usuarios anónimos no tienen permitido modificar calendarios" #: htdocs/public.php:33 msgid "Anonymous users may only access public calendars" -msgstr "" +msgstr "Los usuarios anónimos sólo tienen acceso a calendarios públicos" #: inc/ui/collection-edit.php:31 msgid "Append" -msgstr "" +msgstr "Anexar" #: htdocs/upgrade.php:45 msgid "Application DB User" @@ -223,7 +225,7 @@ msgstr "Adjunto" #: inc/drivers_ldap.php:341 inc/drivers_ldap.php:345 msgid "Authentication server unavailable." -msgstr "" +msgstr "El servidor de autenticación no está disponible" msgid "Binding deleted" msgstr "" @@ -242,7 +244,7 @@ msgstr "" #: inc/autodiscover-handler.php:48 msgid "Body contains no XML data!" -msgstr "" +msgstr "El cuerpo no contiene datos de tipo XML!" #: inc/ui/collection-edit.php:536 inc/ui/principal-edit.php:877 #: inc/ui/principal-edit.php:914 @@ -261,7 +263,7 @@ msgstr "Ocupado" #: inc/ui/collection-edit.php:119 scripts/load_calendar.php:122 #, php-format msgid "Calendar \"%s\" was loaded from file." -msgstr "Calendario \"%s\" fue cargado desde un archivo." +msgstr "El calendario \"%s\" fue cargado desde un archivo." #: inc/ui/principal-browse.php:5 msgid "Calendar Principals" @@ -269,7 +271,7 @@ msgstr "Calendario principal" #: inc/ui/collection-edit.php:228 msgid "Calendar Timezone" -msgstr "" +msgstr "Zona horaria para el calendario" #: inc/ui/principal-edit.php:727 msgid "Can only add tickets for existing collection paths which you own" @@ -285,7 +287,7 @@ msgstr "Cambiar password" #: inc/ui/principal-browse.php:42 inc/ui/external-browse.php:21 msgid "Click to display user details" -msgstr "" +msgstr "Click para desplegar detalles de usuario" #: inc/ui/collection-edit.php:482 inc/ui/principal-edit.php:471 #: inc/ui/principal-edit.php:559 inc/ui/principal-edit.php:674 @@ -304,10 +306,10 @@ msgstr "" #: inc/ui/collection-edit.php:214 msgid "Collection ID" -msgstr "" +msgstr "ID de la colección" msgid "Collection deleted" -msgstr "" +msgstr "Colección elminada" #: inc/caldav-MKCOL.php:83 msgid "" @@ -323,7 +325,7 @@ msgstr "" #: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52 #: htdocs/setup.php:403 htdocs/index.php:51 msgid "Configuring DAViCal" -msgstr "" +msgstr "Configurando DAViCal" msgid "Confirm" msgstr "Confirmar" @@ -342,7 +344,7 @@ msgstr "" #: inc/ui/principal-edit.php:820 msgid "Confirm Deletion of the Ticket" -msgstr "" +msgstr "Confirmar borrado del ticket" #: inc/ui/principal-edit.php:279 msgid "Confirm Password" @@ -364,7 +366,7 @@ msgstr "Craer colección" #: inc/ui/collection-edit.php:169 inc/ui/principal-edit.php:16 msgid "Create Events/Collections" -msgstr "Crear Evento/Colección" +msgstr "Crear Eventos/Colecciones" #: inc/ui/collection-edit.php:151 msgid "Create New Collection" @@ -384,10 +386,10 @@ msgstr "" #: inc/CalDAVRequest.php:727 msgid "Create a resource or collection" -msgstr "" +msgstr "Crear un recurso o colección" msgid "Creating new Collection." -msgstr "" +msgstr "Creando nueva colección" msgid "Creating new Principal record." msgstr "" @@ -398,7 +400,7 @@ msgstr "" #: htdocs/setup.php:318 msgid "Current DAViCal version " -msgstr "" +msgstr "Vesión DAViCal actual" #: inc/ui/collection-edit.php:216 msgid "DAV Path" @@ -411,7 +413,7 @@ msgstr "" #: inc/page-header.php:4 msgid "DAViCal CalDAV Server" -msgstr "" +msgstr "Servidor DAViCal CalDAV" #: htdocs/setup.php:324 msgid "DAViCal DB Schema version " @@ -419,11 +421,11 @@ msgstr "" #: inc/interactive-page.php:20 msgid "DAViCal Homepage" -msgstr "" +msgstr "Página principal del proyecto DAViCal" #: inc/interactive-page.php:21 msgid "DAViCal Wiki" -msgstr "" +msgstr "Wiki DAViCal" #: inc/caldav-BIND.php:99 msgid "DAViCal only allows BIND requests for collections at present." @@ -431,7 +433,7 @@ msgstr "" #: inc/iSchedule.php:652 msgid "DKIM signature missing" -msgstr "" +msgstr "Firma DKIM extraviada" #: inc/iSchedule.php:663 msgid "DKIM signature validation failed(DNS ERROR)" @@ -453,7 +455,7 @@ msgstr "" #: inc/CalDAVRequest.php:696 inc/CalDAVRequest.php:798 inc/caldav-BIND.php:64 #: inc/caldav-BIND.php:84 inc/caldav-BIND.php:89 inc/caldav-BIND.php:139 msgid "Database Error" -msgstr "" +msgstr "Error de la base de datos" #: htdocs/upgrade.php:43 msgid "Database Host" @@ -461,53 +463,53 @@ msgstr "" #: htdocs/upgrade.php:39 msgid "Database Name" -msgstr "" +msgstr "Nombre de la base de datos" #: htdocs/upgrade.php:47 msgid "Database Owner" -msgstr "" +msgstr "Propietario de la bae de datos" #: htdocs/upgrade.php:41 msgid "Database Password" -msgstr "" +msgstr "Contraseña de la base de datos" #: htdocs/upgrade.php:42 msgid "Database Port" -msgstr "" +msgstr "Puerto del equipo de bases de datos" #: htdocs/upgrade.php:40 msgid "Database Username" -msgstr "" +msgstr "Usuario de la base de datos" #: inc/caldav-PUT-functions.php:43 inc/caldav-REPORT-sync-collection.php:63 #: inc/caldav-REPORT-sync-collection.php:72 #: inc/caldav-REPORT-sync-collection.php:182 msgid "Database error" -msgstr "" +msgstr "Error de la base de datos" #: htdocs/setup.php:323 msgid "Database is Connected" -msgstr "" +msgstr "Base de datos conectada" #: inc/ui/principal-edit.php:283 msgid "Date Format Style" -msgstr "" +msgstr "Estilo del formato de la fecha" msgid "Date Style" -msgstr "" +msgstr "Estilo de la fecha" #: inc/ui/collection-edit.php:225 msgid "Default Privileges" -msgstr "" +msgstr "Privilegios por defecto" msgid "Default relationships added." -msgstr "" +msgstr "Relacionespor defecto agregadas" #: inc/ui/collection-edit.php:510 inc/ui/collection-edit.php:540 #: inc/ui/principal-edit.php:791 inc/ui/principal-edit.php:841 #: inc/ui/principal-edit.php:882 inc/ui/principal-edit.php:918 msgid "Delete" -msgstr "" +msgstr "Borrar" #: inc/ui/collection-edit.php:170 inc/ui/principal-edit.php:17 msgid "Delete Events/Collections" @@ -519,7 +521,7 @@ msgstr "" #: inc/CalDAVRequest.php:728 msgid "Delete a resource or collection" -msgstr "" +msgstr "Borrar un recurso o colección" #: inc/ui/principal-edit.php:611 msgid "Deleted a grant from this Principal" @@ -539,7 +541,7 @@ msgstr "" #: inc/ui/principal-edit.php:818 msgid "Deleting Ticket:" -msgstr "" +msgstr "Borrando ticket" #: inc/CalDAVRequest.php:739 msgid "" @@ -552,15 +554,15 @@ msgstr "" #: htdocs/setup.php:375 htdocs/setup.php:377 msgid "Dependencies" -msgstr "" +msgstr "Dependencias" #: htdocs/setup.php:376 htdocs/setup.php:378 msgid "Dependency" -msgstr "" +msgstr "Dependencia" #: htdocs/feed.php:176 inc/ui/collection-edit.php:226 msgid "Description" -msgstr "" +msgstr "Descripción" #: inc/caldav-MOVE.php:34 inc/caldav-PUT-default.php:52 msgid "Destination collection does not exist" @@ -568,7 +570,7 @@ msgstr "" #: htdocs/tools.php:94 msgid "Directory on the server" -msgstr "" +msgstr "DIrectorio en el servidor" #: inc/ui/principal-browse.php:18 inc/ui/collection-edit.php:466 #: inc/ui/external-browse.php:9 inc/ui/principal-edit.php:281 @@ -586,34 +588,34 @@ msgstr "" #: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119 msgid "Domain" -msgstr "" +msgstr "Dominio" #: inc/ui/principal-browse.php:19 msgid "EMail" -msgstr "" +msgstr "Correo eletrónico" msgid "EMail OK" -msgstr "" +msgstr "Correo electrónico OK" msgid "ERROR: The full name may not be blank." -msgstr "" +msgstr "ERROR: el nombre completo no puede estar en blanco" msgid "ERROR: The new password must match the confirmed password." -msgstr "" +msgstr "ERROR: la nueva contraseña debe coincidir con la suministrada en la confirmación" msgid "ERROR: There was a database error writing the roles information!" msgstr "" #: inc/ui/collection-edit.php:472 inc/ui/principal-edit.php:664 msgid "Edit" -msgstr "" +msgstr "Editar" msgid "Edit this user record" -msgstr "" +msgstr "Editar el registro de este usuario" #: inc/ui/principal-edit.php:282 msgid "Email Address" -msgstr "" +msgstr "Dirección de correo" msgid "" "Enter a username, if you know it, and click here, to be e-mailed a temporary" @@ -661,21 +663,21 @@ msgstr "" #: inc/ui/collection-edit.php:507 inc/ui/principal-edit.php:788 msgid "Expires" -msgstr "" +msgstr "Caduca" #: inc/ui/external-browse.php:4 msgid "External Calendars" -msgstr "" +msgstr "Calendarios externos" #: inc/ui/collection-edit.php:145 msgid "External Url" -msgstr "" +msgstr "URL externas" msgid "Fail" -msgstr "" +msgstr "Falla" msgid "Failed to write collection." -msgstr "" +msgstr "Falló al escribir la colección" #: htdocs/feed.php:45 msgid "Feeds are only supported for calendars at present." @@ -687,18 +689,18 @@ msgstr "" #: inc/caldav-GET.php:64 msgid "Forbidden" -msgstr "" +msgstr "Prohibido" #: inc/ui/collection-edit.php:233 inc/ui/principal-edit.php:384 msgid "Free/Busy" -msgstr "" +msgstr "Libre/Ocupado" msgid "Full Name" -msgstr "" +msgstr "Nombre completo" #: inc/ui/principal-edit.php:280 msgid "Fullname" -msgstr "" +msgstr "Nombre Completo" #: inc/caldav-GET-functions.php:38 msgid "GET requests on collections are only supported for calendars." @@ -706,10 +708,10 @@ msgstr "" #: htdocs/setup.php:325 msgid "GNU gettext support" -msgstr "" +msgstr "Soporte para GNU gettext" msgid "GO!" -msgstr "" +msgstr "VAMOS!" #: inc/interactive-page.php:22 msgid "Go to the DAViCal Feature Requests" @@ -725,19 +727,19 @@ msgstr "" #. Translators: in the sense of a group of people msgid "Group" -msgstr "" +msgstr "Grupo" #: inc/ui/principal-edit.php:538 msgid "Group Members" -msgstr "" +msgstr "Miembros de grupo" #: inc/ui/principal-edit.php:456 msgid "Group Memberships" -msgstr "" +msgstr "Membresía de grupo" #: inc/ui/principal-browse.php:10 msgid "Group Principals" -msgstr "" +msgstr "Grupos principales" #: inc/ui/principal-browse.php:23 inc/ui/collection-edit.php:468 #: inc/ui/principal-edit.php:463 inc/ui/principal-edit.php:546 @@ -747,7 +749,7 @@ msgstr "" #: inc/interactive-page.php:48 msgid "Help" -msgstr "" +msgstr "Ayuda" #: inc/interactive-page.php:48 msgid "Help on the current screen" @@ -772,17 +774,17 @@ msgstr "" #: inc/ui/principal-edit.php:540 inc/ui/principal-edit.php:832 #: inc/ui/principal-edit.php:874 inc/ui/principal-edit.php:910 msgid "ID" -msgstr "" +msgstr "ID" msgid "ISO Format" -msgstr "" +msgstr "Formato ISO" msgid "ISO Format (YYYY-MM-DD)" msgstr "" #. Translators: short for 'Identifier' msgid "Id" -msgstr "" +msgstr "Id" msgid "If you have forgotten your password then" msgstr "" @@ -824,11 +826,11 @@ msgstr "" #: inc/ui/collection-edit.php:222 msgid "Is a Calendar" -msgstr "" +msgstr "Es un calendario" #: inc/ui/collection-edit.php:223 msgid "Is an Addressbook" -msgstr "" +msgstr "Es una libreta de direcciones" msgid "Is this user active?" msgstr "" @@ -838,7 +840,7 @@ msgid "Items in Collection" msgstr "" msgid "Joined" -msgstr "" +msgstr "Unido" msgid "Language" msgstr "Idiomas" @@ -913,7 +915,7 @@ msgstr "" #. Translators: not 'Yes' #: inc/ui/principal-edit.php:837 msgid "No" -msgstr "" +msgstr "No" #: inc/WritableCollection.php:47 inc/caldav-PUT-functions.php:1230 #: inc/caldav-PUT-functions.php:1231 @@ -953,7 +955,7 @@ msgid "Not overwriting existing destination resource" msgstr "" msgid "Opaque" -msgstr "" +msgstr "Opaco" #: inc/iSchedule.php:656 msgid "Organizer Missing" @@ -985,7 +987,7 @@ msgstr "" #: htdocs/setup.php:321 msgid "PHP PDO module available" -msgstr "" +msgstr "PHP PDO módulo disponible" #: htdocs/setup.php:331 msgid "PHP calendar extension available" @@ -993,7 +995,7 @@ msgstr "" #: htdocs/setup.php:332 msgid "PHP curl support" -msgstr "" +msgstr "PHP curl soportado" #: htdocs/setup.php:326 msgid "PHP iconv support" @@ -1075,7 +1077,7 @@ msgstr "" #: inc/ui/principal-edit.php:789 inc/ui/principal-edit.php:838 #: inc/ui/principal-edit.php:880 inc/ui/principal-edit.php:916 msgid "Privileges" -msgstr "" +msgstr "Privilegios" #: inc/ui/principal-edit.php:288 msgid "Privileges granted to All Users" @@ -1097,7 +1099,7 @@ msgstr "" #. Translators: in the sense of being available to all users #: inc/ui/principal-edit.php:837 msgid "Public" -msgstr "" +msgstr "Público" #: inc/ui/collection-edit.php:221 msgid "Publicly Readable" @@ -1123,7 +1125,7 @@ msgstr "" #: inc/ui/collection-edit.php:167 inc/ui/principal-edit.php:14 msgid "Read Access Controls" -msgstr "" +msgstr "Leer controles de acceso" #: inc/ui/collection-edit.php:168 inc/ui/principal-edit.php:15 msgid "Read Current User's Access" @@ -1152,7 +1154,7 @@ msgstr "Leer/escribir" #: inc/ui/external-browse.php:10 msgid "References" -msgstr "" +msgstr "Referencias" #: inc/ui/principal-edit.php:549 msgid "Remove" @@ -1172,7 +1174,7 @@ msgstr "Reportar un error" #: inc/interactive-page.php:23 msgid "Report a bug in the system" -msgstr "" +msgstr "Reportar un error en el sistema" #: inc/interactive-page.php:22 msgid "Request Feature" @@ -1185,7 +1187,7 @@ msgstr "" #. Translators a thing which might be booked: a room, a carpark, a #. projector... msgid "Resource" -msgstr "" +msgstr "Recurso" #: inc/ui/principal-browse.php:9 msgid "Resource Calendar Principals" @@ -1193,7 +1195,7 @@ msgstr "" #: htdocs/feed.php:40 inc/caldav-GET.php:23 msgid "Resource Not Found." -msgstr "" +msgstr "Recurso no encontrado" #: inc/caldav-DELETE.php:73 msgid "Resource has changed on server - not deleted" @@ -1205,11 +1207,11 @@ msgstr "" #: inc/ui/collection-edit.php:471 inc/ui/principal-edit.php:663 msgid "Revoke" -msgstr "" +msgstr "Revocar" #: htdocs/iSchedule.php:111 htdocs/iSchedule.php:121 msgid "SRV Record" -msgstr "" +msgstr "Registro SRV" #: inc/ui/collection-edit.php:234 inc/ui/principal-edit.php:385 msgid "Schedule Deliver" @@ -1217,7 +1219,7 @@ msgstr "" #: inc/ui/collection-edit.php:235 inc/ui/principal-edit.php:386 msgid "Schedule Send" -msgstr "" +msgstr "Calendario enviado" #: inc/ui/collection-edit.php:227 msgid "Schedule Transparency" @@ -1307,11 +1309,11 @@ msgstr "" #: htdocs/setup.php:380 htdocs/setup.php:382 msgid "Site Statistics" -msgstr "" +msgstr "Estadísticas del sitio" #: htdocs/setup.php:298 htdocs/setup.php:310 msgid "Site Statistics require the database to be available!" -msgstr "" +msgstr "Las estadísticas del sitio requieren que la base de datos esté disponible" #: inc/caldav-PROPPATCH.php:292 msgid "Some properties were not able to be changed." @@ -1323,7 +1325,7 @@ msgstr "" #: inc/caldav-MOVE.php:47 msgid "Source resource does not exist." -msgstr "" +msgstr "Algunos recursos no existen" #: inc/caldav-MOVE.php:56 msgid "" @@ -1332,7 +1334,7 @@ msgstr "" #: inc/ui/collection-edit.php:224 msgid "Specific Privileges" -msgstr "" +msgstr "Privilegios específicos" #, php-format msgid "Stable: %s, We have: %s !" @@ -1340,7 +1342,7 @@ msgstr "" #: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379 msgid "Status" -msgstr "" +msgstr "Estado" #: inc/caldav-PUT-functions.php:57 #, php-format @@ -1349,7 +1351,7 @@ msgstr "" #: htdocs/tools.php:61 htdocs/tools.php:70 htdocs/tools.php:98 msgid "Submit" -msgstr "" +msgstr "Enviar" #: htdocs/setup.php:328 msgid "Suhosin \"server.strip\" disabled" @@ -1361,11 +1363,11 @@ msgstr "" #: htdocs/tools.php:51 msgid "Sync LDAP with DAViCal" -msgstr "" +msgstr "Sincronizar LDAP con DAViCal" #: inc/ui/collection-edit.php:506 inc/ui/principal-edit.php:787 msgid "Target" -msgstr "" +msgstr "Destino" #: inc/caldav-BIND.php:38 msgid "That destination name contains invalid characters." @@ -1373,7 +1375,7 @@ msgstr "" #: inc/caldav-PROPFIND.php:261 msgid "That resource is not present on this server." -msgstr "" +msgstr "El recurso solicitado no se encuentra presente en este servidor" #: inc/caldav-BIND.php:95 msgid "The BIND Request MUST identify an existing resource." @@ -1394,11 +1396,11 @@ msgstr "" #: inc/interactive-page.php:20 msgid "The DAViCal Home Page" -msgstr "" +msgstr "Página principal del proyecto DAViCal" #: inc/ui/principal-edit.php:821 msgid "The access ticket will be deleted." -msgstr "" +msgstr "El ticket de acceso será borrado" #: inc/caldav-REPORT-cardquery.php:201 inc/caldav-REPORT-cardquery.php:260 msgid "" @@ -1407,7 +1409,7 @@ msgstr "" #: htdocs/tz.php:32 msgid "The application failed to understand that request." -msgstr "" +msgstr "La aplicación falló al entender la petición" #: htdocs/public.php:62 htdocs/feed.php:205 htdocs/caldav.php:152 #: inc/well-known.php:36 inc/well-known.php:50 inc/well-known.php:61 @@ -1439,11 +1441,11 @@ msgid "" msgstr "" msgid "The collection name may not be blank." -msgstr "" +msgstr "El nombre de la colección no puede estar en blanco" #: inc/caldav-PUT-vcard.php:54 msgid "The destination collection does not exist" -msgstr "" +msgstr "La colección de destino no existe" #: inc/caldav-PROPPATCH.php:107 msgid "" @@ -1456,18 +1458,18 @@ msgstr "" #: htdocs/tools.php:139 #, php-format msgid "The file \"%s\" is not UTF-8 encoded, please check error for more details" -msgstr "" +msgstr "El archivo \"%s\" no se encuentra en formarto UTF-8, por favor, chequee los errores para mayores detalles " msgid "" "The file is not UTF-8 encoded, please check the error for more details." -msgstr "" +msgstr "El archivo no se encuentra en formarto UTF-8, por favor, chequee los errores para mayores detalles " #: inc/ui/principal-edit.php:170 msgid "The full name for this person, group or other type of principal." msgstr "" msgid "The full name must not be blank." -msgstr "" +msgstr "El nombre completo no puede estar en blanco" msgid "The name this user can log into the system with." msgstr "" @@ -1478,7 +1480,7 @@ msgstr "" #: inc/ui/principal-edit.php:169 msgid "The preferred language for this person." -msgstr "" +msgstr "Lenguaje preferido para esta persona" #: htdocs/tools.php:145 #, php-format @@ -1486,13 +1488,13 @@ msgid "The principal \"%s\" does not exist" msgstr "" msgid "The style of dates used for this person." -msgstr "" +msgstr "El estilo de datos usados por esta persona" msgid "The user's e-mail address." -msgstr "" +msgstr "La dirección de correo del usuario" msgid "The user's full name." -msgstr "" +msgstr "El nombre complet del usuario" msgid "The user's password for logging in." msgstr "" @@ -1501,10 +1503,10 @@ msgid "The username must not be blank, and may not contain a slash" msgstr "" msgid "There was an error reading from the database." -msgstr "" +msgstr "Hubo un error leyendo la base de datos" msgid "There was an error writing to the database." -msgstr "" +msgstr "Hubo un error al escribir a la base de datos" #: htdocs/tools.php:67 msgid "" @@ -1547,7 +1549,7 @@ msgstr "" #: inc/ui/principal-edit.php:786 inc/ui/principal-edit.php:879 #: inc/ui/principal-edit.php:915 msgid "Ticket ID" -msgstr "" +msgstr "Identificación del ticket" #: htdocs/feed.php:134 msgid "Time" @@ -1567,37 +1569,37 @@ msgstr "" #: inc/interactive-page.php:36 msgid "Tools" -msgstr "" +msgstr "Herramientas" msgid "Transparent" -msgstr "" +msgstr "Transparente" #: htdocs/feed.php:161 msgid "URL" -msgstr "" +msgstr "URL" msgid "US Format" -msgstr "" +msgstr "Formato EEUU" #: inc/Principal.php:269 msgid "Unauthenticated User" -msgstr "" +msgstr "Usuario no autenticado " msgid "United States of America (m/d/y)" -msgstr "" +msgstr "Estados Unidos de Norteamérica (m/d/y)" #: inc/caldav-PROPPATCH.php:147 msgid "Unsupported resourcetype modification." msgstr "" msgid "Update" -msgstr "" +msgstr "Actualizar" msgid "Updated" -msgstr "" +msgstr "Actualizado" msgid "Updating Collection record." -msgstr "" +msgstr "Actualizando registros de la colección" #: inc/ui/principal-edit.php:494 msgid "Updating Member of this Group Principal" @@ -1616,7 +1618,7 @@ msgstr "" #: htdocs/upgrade.php:29 inc/interactive-page.php:35 msgid "Upgrade Database" -msgstr "" +msgstr "Base de datos actualizada" #: inc/ui/collection-edit.php:27 msgid "Upload an iCalendar file or VCard file to replace this collection." @@ -1627,23 +1629,23 @@ msgid "User Calendar Principals" msgstr "" msgid "User Details" -msgstr "" +msgstr "Detalles de usuario" #: inc/interactive-page.php:46 msgid "User Functions" -msgstr "" +msgstr "Funciones de usuario" msgid "User Name" -msgstr "" +msgstr "Nombre de usuario" msgid "User Roles" -msgstr "" +msgstr "Roles de usuario" msgid "User is active" -msgstr "" +msgstr "Usuario activo" msgid "User record written." -msgstr "" +msgstr "Registro de usuario escritos" #: inc/ui/principal-edit.php:277 msgid "Username" @@ -1651,18 +1653,18 @@ msgstr "Nombre de usuario" #: inc/interactive-page.php:26 msgid "View My Details" -msgstr "" +msgstr "Ver mis detalles" #: inc/interactive-page.php:26 msgid "View my own principal record" -msgstr "" +msgstr "Ver mi propio registro" msgid "View this user record" -msgstr "" +msgstr "Ver el registro del usuario" #: inc/interactive-page.php:21 msgid "Visit the DAViCal Wiki" -msgstr "" +msgstr "Visite el Wiki DAViCal" #, php-format msgid "Want: %s, Currently: %s" @@ -1686,23 +1688,23 @@ msgstr "" #: inc/ui/collection-edit.php:171 inc/ui/principal-edit.php:18 msgid "Write Access Controls" -msgstr "" +msgstr "Escribir controles de acceso" #: inc/ui/collection-edit.php:165 inc/ui/principal-edit.php:12 msgid "Write Data" -msgstr "" +msgstr "Escribir datos" #: inc/ui/collection-edit.php:164 inc/ui/principal-edit.php:11 msgid "Write Metadata" -msgstr "" +msgstr "Escribir metadata" #: inc/CalDAVRequest.php:729 msgid "Write content" -msgstr "" +msgstr "Escribir contenido" #: inc/CalDAVRequest.php:730 msgid "Write properties" -msgstr "" +msgstr "Escribir propiedades" #: inc/ui/principal-edit.php:837 msgid "Yes" @@ -1718,14 +1720,14 @@ msgid "You are viewing" msgstr "Estás viendo..." msgid "You do not have permission to modify this record." -msgstr "" +msgstr "No posees permiso para modificar este registro" #: inc/caldav-PUT-vcard.php:61 inc/caldav-PUT-default.php:59 msgid "You may not PUT to a collection URL" msgstr "" msgid "You must log in to use this system." -msgstr "" +msgstr "Debe autenticarte para usar este sistema" #: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406 msgid "Your configuration produced PHP errors which should be corrected" @@ -1782,7 +1784,7 @@ msgstr "" #. Translators: this is a colloquial phrase in english (the name of a flower) #. and is an option allowing people to log in automatically in future msgid "forget me not" -msgstr "Mantender la sesión activa" +msgstr "Mantener la sesión activa" #: inc/ui/principal-edit.php:839 msgid "from principal" @@ -1790,11 +1792,11 @@ msgstr "" #: htdocs/iSchedule.php:108 htdocs/iSchedule.php:118 msgid "iSchedule Domains" -msgstr "" +msgstr "Dominio iSchedule" #: inc/iSchedule-POST.php:132 inc/iSchedule-POST.php:137 msgid "invalid request" -msgstr "" +msgstr "petición inválida" #: htdocs/tools.php:87 msgid "path to store your ics" @@ -1856,11 +1858,11 @@ msgstr "" #: htdocs/index.php:18 #, php-format msgid "You are logged on as %s (%s)" -msgstr "" +msgstr "Te encuentras conectado como %s (%s) " #: htdocs/index.php:20 msgid "Administration Functions" -msgstr "" +msgstr "Funciones de administración" #: htdocs/index.php:21 msgid "" @@ -1982,7 +1984,7 @@ msgstr "" #: htdocs/iSchedule.php:25 msgid "ERROR" -msgstr "" +msgstr "ERROR" #: htdocs/iSchedule.php:26 msgid "" @@ -1992,7 +1994,7 @@ msgstr "" #: htdocs/iSchedule.php:28 msgid "WARNING" -msgstr "" +msgstr "ADVERTENCIA" #: htdocs/iSchedule.php:29 msgid "" @@ -2021,7 +2023,7 @@ msgstr "" #: htdocs/iSchedule.php:66 msgid "please add the following section to your DAViCal configuration file" -msgstr "" +msgstr "por favor, agrega la siguiente sección a tu archivo de configuración de DAViCal" #: htdocs/iSchedule.php:69 #, php-format @@ -2046,4 +2048,4 @@ msgstr "" #: htdocs/setup.php:388 htdocs/setup.php:392 msgid "Statistics unavailable" -msgstr "" +msgstr "Estadísticas no disponibles" diff --git a/po/fr.po b/po/fr.po index cdb42c89..d2369a1f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-10-22 22:39+0200\n" -"PO-Revision-Date: 2014-10-23 14:04+0000\n" +"PO-Revision-Date: 2014-10-23 14:15+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: French (http://www.transifex.com/projects/p/davical/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/po/sk_SK.po b/po/sk_SK.po index f5d965fb..765fe90b 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sevo , 2014 # sevo , 2012 msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \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 \n" +"PO-Revision-Date: 2014-10-25 11:20+0000\n" +"Last-Translator: sevo \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." @@ -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" @@ -487,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" @@ -761,7 +762,7 @@ msgid "Home" msgstr "Domov" msgid "Home " -msgstr "" +msgstr "Domov" #: inc/interactive-page.php:45 msgid "Home Page" @@ -801,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: " @@ -926,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" @@ -1299,7 +1300,7 @@ 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" @@ -1426,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é." @@ -1470,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." @@ -1588,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ť" @@ -1820,11 +1821,11 @@ 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:395 msgid "PHP Information" -msgstr "" +msgstr "PHP Informácia" #: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399 #: htdocs/index.php:47 @@ -1832,66 +1833,66 @@ msgid "" "The client setup page on the " "DAViCal website has information on how to configure Evolution, Sunbird, " "Lightning and Mulberry to use remotely hosted calendars." -msgstr "" +msgstr "Na klientskej DAViCal webovej stránke sú informácie ako nakonfigurovať Evolution, Sunbird, Lightning a Mulberry na pužitie vzdialených kalendárov." #: 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/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 installation page on" " the DAViCal website has some further information on how to install and " "configure this application." -msgstr "" +msgstr "Na stránke popisu DAViCal inštalácie 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 "" +msgstr "Si prihlásený/á ako %s (%s)" #: htdocs/index.php:20 msgid "Administration Functions" -msgstr "" +msgstr "Administračné funkcie" #: htdocs/index.php:21 msgid "" "The administration of this application should be fairly simple. You can " "administer:" -msgstr "" +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 "" +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 "" +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 "" +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 "" +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 "" +msgstr "Položky: Užívatelia, Zdroje a Skupiny" #: htdocs/index.php:28 msgid "" From 1db21c0bf2674ffcccc95d1c3eb88bda191ab564 Mon Sep 17 00:00:00 2001 From: Cyril Giraud Date: Mon, 27 Oct 2014 22:16:06 +0100 Subject: [PATCH 4/7] Localization update according to Transifex (Englis, French, German and Slovak at 100%). --- po/de.po | 93 +++++++++++++++++++++++++++-------------------------- po/es_VE.po | 24 +++++++------- po/nb_NO.po | 87 ++++++++++++++++++++++++------------------------- po/sk_SK.po | 62 +++++++++++++++++------------------ 4 files changed, 134 insertions(+), 132 deletions(-) diff --git a/po/de.po b/po/de.po index 4f0a1d96..bd55511d 100644 --- a/po/de.po +++ b/po/de.po @@ -6,6 +6,7 @@ # Andrew McMillan , 2011 # fmms , 2011 # fmms , 2011, 2012 +# Matthias Althaus , 2014 # mike.f , 2012 # mweil , 2012 # spasstl , 2011 @@ -15,8 +16,8 @@ msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \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 \n" +"PO-Revision-Date: 2014-10-27 12:11+0000\n" +"Last-Translator: Matthias Althaus \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" @@ -1342,7 +1343,7 @@ msgstr "Sonderrechte" #, php-format msgid "Stable: %s, We have: %s !" -msgstr "" +msgstr "Stable: %s, wir haben: %s !" #: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379 msgid "Status" @@ -1436,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 "" @@ -1826,11 +1827,11 @@ 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:395 msgid "PHP Information" -msgstr "" +msgstr "PHP-Informationen" #: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399 #: htdocs/index.php:47 @@ -1838,134 +1839,134 @@ msgid "" "The client setup page on the " "DAViCal website has information on how to configure Evolution, Sunbird, " "Lightning and Mulberry to use remotely hosted calendars." -msgstr "" +msgstr "Auf der DAViCal-Webseite gibt es Informationen darüber, wie man Evolution, Sunbird, Lightning und Mulberry einrichtet, so dass sie gehostete Kalender benutzen." #: 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/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 installation page on" " the DAViCal website has some further information on how to install and " "configure this application." -msgstr "" +msgstr "Auf der DAViCal-Webseite 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 "" +msgstr "Sie sind als %s (%s) eingeloggt." #: htdocs/index.php:20 msgid "Administration Functions" -msgstr "" +msgstr "Adminfunktionen" #: htdocs/index.php:21 msgid "" "The administration of this application should be fairly simple. You can " "administer:" -msgstr "" +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 "" +msgstr "Benutzer (oder Ressourcen oder Gruppen) und deren Beziehung untereinander" #: htdocs/index.php:23 msgid "The types of relationships that are available" -msgstr "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 & Grants" -msgstr "" +msgstr "Gruppen & Rechte" #: htdocs/index.php:42 htdocs/index.php:41 msgid "Grants specify the access rights to a collection or a principal" -msgstr "" +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 "" +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 "" +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 DAViCal installation" " page on the DAViCal website has some further information on how to " "install and configure this application." -msgstr "" +msgstr "Auf der DAViCal-Webseite gibt es weitere Informationen darüber, wie Sie diese Anwendungen installieren und konfigurieren können." #: htdocs/iSchedule.php:12 msgid "iSchedule Configuration" -msgstr "" +msgstr "iSchedule - Konfiguration" #: htdocs/iSchedule.php:13 msgid "" @@ -1974,7 +1975,7 @@ msgid "" " 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 "" +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 "" @@ -1984,72 +1985,72 @@ msgid "" "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 "" +msgstr "Die iSchedule-Konfiguration 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 "" +msgstr "FEHLER" #: htdocs/iSchedule.php:26 msgid "" "scheduling_dkim_domain not set (please check your DAViCal configuration " "file)" -msgstr "" +msgstr "Kein Wert für \"scheduling_dkim_domain\" gesetzt (bitte überprüfen Sie Ihre DAViCal-Konfigurationsdatei)" #: htdocs/iSchedule.php:28 msgid "WARNING" -msgstr "" +msgstr "WARNUNG" #: htdocs/iSchedule.php:29 msgid "" "scheduling_dkim_domain does not match server name (please check your DAViCal" " configuration file)" -msgstr "" +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 "" +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 "" +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 "" +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 "" +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 %s._domainkey.%s that contains:" -msgstr "" +msgstr "und erzeugen Sie einen DNS-TXT-Eintrag für %s._domainkey.%s, der Folgendes beinhaltet:" #: htdocs/iSchedule.php:76 #, php-format msgid "TXT record corrupt for %s._domainkey.%s or DNS failure" -msgstr "" +msgstr "Der TXT-Eintrag für %s._domainkey.%s ist fehlerhaft oder DNS-Fehler." #: htdocs/iSchedule.php:78 msgid "iSchedule OK" -msgstr "" +msgstr "iSchedule OK" #: htdocs/setup.php:339 #, php-format msgid "" "Explanation on " "DAViCal Wiki" -msgstr "" +msgstr "Erklärung im DAViCal-Wiki" #: htdocs/setup.php:388 htdocs/setup.php:392 msgid "Statistics unavailable" -msgstr "" +msgstr "Statistiken nicht verfügbar" diff --git a/po/es_VE.po b/po/es_VE.po index 00c2a7e7..9bd6d8fb 100644 --- a/po/es_VE.po +++ b/po/es_VE.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-10-22 22:39+0200\n" -"PO-Revision-Date: 2014-10-25 05:10+0000\n" +"PO-Revision-Date: 2014-10-25 23:20+0000\n" "Last-Translator: Hector Colina \n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/projects/p/davical/language/es_VE/)\n" "MIME-Version: 1.0\n" @@ -948,7 +948,7 @@ msgstr "" #: htdocs/setup.php:289 msgid "No. of Resources" -msgstr "Nñum. de recursos" +msgstr "Núm. de recursos" #: inc/caldav-MOVE.php:38 msgid "Not overwriting existing destination resource" @@ -967,7 +967,7 @@ msgstr "" #: htdocs/setup.php:322 msgid "PDO PostgreSQL drivers" -msgstr "" +msgstr "Controlador PDO de PostgreSQL" #: htdocs/setup.php:327 msgid "PHP DateTime class" @@ -991,7 +991,7 @@ msgstr "PHP PDO módulo disponible" #: htdocs/setup.php:331 msgid "PHP calendar extension available" -msgstr "" +msgstr "Extensión PHP calendar disponible" #: htdocs/setup.php:332 msgid "PHP curl support" @@ -1003,7 +1003,7 @@ msgstr "PHP iconv soportado" #: htdocs/setup.php:320 msgid "PHP not using Apache Filter mode" -msgstr "" +msgstr "PHP no está usando Apache Filter mode" #: inc/external-fetch.php:18 inc/external-fetch.php:46 msgid "PHP5 curl support is required for external binds" @@ -1022,7 +1022,7 @@ msgid "" msgstr "" msgid "Passed" -msgstr "" +msgstr "Pasado" msgid "Password" msgstr "Contraseña" @@ -1081,7 +1081,7 @@ msgstr "Privilegios" #: inc/ui/principal-edit.php:288 msgid "Privileges granted to All Users" -msgstr "" +msgstr "Privilegios otorgados a todos los usuarios" #: inc/ui/collection-edit.php:234 inc/ui/principal-edit.php:385 msgid "Privileges to allow delivery of scheduling messages" @@ -1162,7 +1162,7 @@ msgstr "Remover" #: inc/CalDAVRequest.php:736 msgid "Remove a lock" -msgstr "" +msgstr "Remover un bloqueo" #: inc/ui/external-browse.php:35 msgid "Remove dangling external calendars" @@ -1305,7 +1305,7 @@ msgstr "" #: inc/page-header.php:26 msgid "Show help on" -msgstr "" +msgstr "Mostrar ayuda" #: htdocs/setup.php:380 htdocs/setup.php:382 msgid "Site Statistics" @@ -1347,7 +1347,7 @@ msgstr "Estado" #: inc/caldav-PUT-functions.php:57 #, php-format msgid "Status: %d, Message: %s, User: %d, Path: %s" -msgstr "" +msgstr "Estado: %d, Mensaje: %s, Usuario: %d, Ruta: %s" #: htdocs/tools.php:61 htdocs/tools.php:70 htdocs/tools.php:98 msgid "Submit" @@ -1453,7 +1453,7 @@ msgid "" msgstr "" msgid "The email address really should not be blank." -msgstr "" +msgstr "La dirección de correo no debe estar en blanco" #: htdocs/tools.php:139 #, php-format @@ -1497,7 +1497,7 @@ msgid "The user's full name." msgstr "El nombre complet del usuario" msgid "The user's password for logging in." -msgstr "" +msgstr "La contraseña del usuario para conectarse" msgid "The username must not be blank, and may not contain a slash" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index 8a6d0e2e..a9431d41 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# bruberg , 2014 # aleksand , 2011 # Daniel , 2011 # Sven Olsen , 2011 @@ -11,8 +12,8 @@ msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \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 \n" +"PO-Revision-Date: 2014-10-27 07:42+0000\n" +"Last-Translator: bruberg \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" @@ -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" @@ -437,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 @@ -459,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 @@ -489,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" @@ -588,7 +589,7 @@ msgstr "Har brukeren rettigheter til denne rollen?" #: htdocs/iSchedule.php:109 htdocs/iSchedule.php:119 msgid "Domain" -msgstr "" +msgstr "Domene" #: inc/ui/principal-browse.php:19 msgid "EMail" @@ -760,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" @@ -777,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" @@ -928,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" @@ -959,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" @@ -995,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" @@ -1301,7 +1302,7 @@ 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" @@ -1387,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 "" @@ -1432,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 "" @@ -1590,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" @@ -1622,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" @@ -1796,7 +1797,7 @@ 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" @@ -1826,7 +1827,7 @@ msgstr "" #: htdocs/setup.php:393 htdocs/setup.php:395 msgid "PHP Information" -msgstr "" +msgstr "PHP-informasjon" #: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399 #: htdocs/index.php:47 @@ -1846,7 +1847,7 @@ msgstr "" #: 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 "" @@ -1862,7 +1863,7 @@ msgstr "" #: htdocs/index.php:20 msgid "Administration Functions" -msgstr "" +msgstr "Administrasjonsfunksjoner" #: htdocs/index.php:21 msgid "" @@ -1893,7 +1894,7 @@ msgstr "" #: htdocs/index.php:27 msgid "Principals: Users, Resources and Groups" -msgstr "" +msgstr "Kontoer: Brukere, ressurser og grupper" #: htdocs/index.php:28 msgid "" @@ -1903,7 +1904,7 @@ msgstr "" #: htdocs/index.php:31 msgid "Here is a list of users (maybe :-)" -msgstr "" +msgstr "Her er (kanskje :-) en liste over brukere" #: htdocs/index.php:32 msgid "" @@ -1913,18 +1914,18 @@ msgstr "" #: htdocs/index.php:35 htdocs/index.php:34 msgid "The primary differences between them are as follows:" -msgstr "" +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 "" +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 "" +msgstr "Ressurser har kalendre, men vil normalt ikke logge inn." #: htdocs/index.php:38 htdocs/index.php:37 msgid "" @@ -1934,11 +1935,11 @@ msgstr "" #: htdocs/index.php:41 htdocs/index.php:40 msgid "Groups & Grants" -msgstr "" +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 "" +msgstr "Tilganger angir rettighetene til en samling eller en konto" #: htdocs/index.php:43 htdocs/index.php:42 msgid "" @@ -2048,4 +2049,4 @@ msgstr "" #: htdocs/setup.php:388 htdocs/setup.php:392 msgid "Statistics unavailable" -msgstr "" +msgstr "Statistikk utilgjengelig" diff --git a/po/sk_SK.po b/po/sk_SK.po index 765fe90b..5669a2de 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-10-22 22:39+0200\n" -"PO-Revision-Date: 2014-10-25 11:20+0000\n" +"PO-Revision-Date: 2014-10-26 15:50+0000\n" "Last-Translator: sevo \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/davical/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -1337,7 +1337,7 @@ msgstr "Osobitné oprávnenia" #, php-format msgid "Stable: %s, We have: %s !" -msgstr "" +msgstr "Stabilné: %s, Máme: %s !" #: htdocs/setup.php:377 htdocs/iSchedule.php:31 htdocs/setup.php:379 msgid "Status" @@ -1621,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" @@ -1898,69 +1898,69 @@ msgstr "Položky: Užívatelia, Zdroje a Skupiny" msgid "" "These are the things which may have collections of calendar resources (i.e. " "calendars)." -msgstr "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 "" +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 & Grants" -msgstr "" +msgstr "Skupiny & Povolenia" #: htdocs/index.php:42 htdocs/index.php:41 msgid "Grants specify the access rights to a collection or a principal" -msgstr "" +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 "" +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 "" +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 DAViCal installation" " page on the DAViCal website has some further information on how to " "install and configure this application." -msgstr "" +msgstr "Na stránke popisu DAViCal inštalácie je viac informácií ako nainštalovať a konfigurovať túto applikáciu." #: htdocs/iSchedule.php:12 msgid "iSchedule Configuration" -msgstr "" +msgstr "iSchedule konfigurácia" #: htdocs/iSchedule.php:13 msgid "" @@ -1969,7 +1969,7 @@ msgid "" " 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 "" +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 "" @@ -1979,72 +1979,72 @@ msgid "" "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 "" +msgstr "iSchedule konfigurácia 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 "" +msgstr "ERROR" #: htdocs/iSchedule.php:26 msgid "" "scheduling_dkim_domain not set (please check your DAViCal configuration " "file)" -msgstr "" +msgstr "Nie je zadaná scheduling_dkim_domain položka (skontroluj DAViCal konfiguračný súbor)" #: htdocs/iSchedule.php:28 msgid "WARNING" -msgstr "" +msgstr "VAROVANIE" #: htdocs/iSchedule.php:29 msgid "" "scheduling_dkim_domain does not match server name (please check your DAViCal" " configuration file)" -msgstr "" +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 "" +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 "" +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 "" +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 "" +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 %s._domainkey.%s that contains:" -msgstr "" +msgstr "a pre %s._domainkey%s 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 "" +msgstr "TXT záznam pre %s._domainkey.%s je poškodený alebo zlyhal DNS" #: htdocs/iSchedule.php:78 msgid "iSchedule OK" -msgstr "" +msgstr "iSchedule OK" #: htdocs/setup.php:339 #, php-format msgid "" "Explanation on " "DAViCal Wiki" -msgstr "" +msgstr "Vysvetlenie je na DAViCal Wiki" #: htdocs/setup.php:388 htdocs/setup.php:392 msgid "Statistics unavailable" -msgstr "" +msgstr "Štatistiky sú nedostupné" From 1ec4ce95b54253027bad4a58e73d233b88af88ef Mon Sep 17 00:00:00 2001 From: Cyril Giraud Date: Mon, 10 Nov 2014 22:02:51 +0100 Subject: [PATCH 5/7] Update from Transifex. --- po/es_VE.po | 230 ++++++++++++++++++++++++++-------------------------- 1 file changed, 115 insertions(+), 115 deletions(-) diff --git a/po/es_VE.po b/po/es_VE.po index 9bd6d8fb..50c2e756 100644 --- a/po/es_VE.po +++ b/po/es_VE.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-10-22 22:39+0200\n" -"PO-Revision-Date: 2014-10-25 23:20+0000\n" +"PO-Revision-Date: 2014-11-02 13:41+0000\n" "Last-Translator: Hector Colina \n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/projects/p/davical/language/es_VE/)\n" "MIME-Version: 1.0\n" @@ -115,7 +115,7 @@ msgstr "Ya existe una colección en esta localización" #: inc/caldav-PROPPATCH.php:143 msgid "A collection may not be both a calendar and an addressbook." -msgstr "Una colección no uede er al mismo tiempo un calendario y una agenda de direcciones" +msgstr "Una colección no puede ser al mismo tiempo un calendario y una agenda de direcciones" #: inc/caldav-BIND.php:47 msgid "A resource already exists at the destination." @@ -150,7 +150,7 @@ msgstr "Agregando un nuevo miembro al grupo principal" #. Translators: in the sense of 'systems admin' msgid "Admin" -msgstr "Administrador del Sistema" +msgstr "Administrador" #: inc/interactive-page.php:47 htdocs/index.php:17 msgid "Administration" @@ -171,7 +171,7 @@ msgstr "Todos los datos de la colección serán eliminados de forma permanente" #: htdocs/tools.php:154 #, php-format msgid "All events of user \"%s\" were deleted and replaced by those from file %s" -msgstr "" +msgstr "Todos los eventos del usuario \"%s\" fueron eliminados y reeemplazados por los definidos en el archivo %s" #: inc/ui/principal-edit.php:447 msgid "" @@ -320,7 +320,7 @@ msgstr "" #: 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 "" +msgstr "Configurando los clientes de calendario para DAViCal" #: htdocs/setup.php:394 htdocs/setup.php:398 htdocs/index.php:52 #: htdocs/setup.php:403 htdocs/index.php:51 @@ -336,7 +336,7 @@ msgstr "" #: inc/ui/principal-edit.php:865 msgid "Confirm Deletion of the Collection" -msgstr "" +msgstr "Confirmar borrado de la colección" #: inc/ui/principal-edit.php:446 msgid "Confirm Deletion of the Principal" @@ -409,7 +409,7 @@ msgstr "Ruta DAV" #: inc/caldav-PROPPATCH.php:237 msgid "" "DAV::resourcetype may only be set to a new value, it may not be removed." -msgstr "" +msgstr "DAV::resourcetype sólo puede ser configurado hacia un nuevo valir, no puede ser removido" #: inc/page-header.php:4 msgid "DAViCal CalDAV Server" @@ -437,19 +437,19 @@ msgstr "Firma DKIM extraviada" #: inc/iSchedule.php:663 msgid "DKIM signature validation failed(DNS ERROR)" -msgstr "" +msgstr "La validación de la firma DKIM falló (Error DNS)" #: inc/iSchedule.php:665 msgid "DKIM signature validation failed(KEY Parse ERROR)" -msgstr "" +msgstr "La validación de la firma DKIM falló (KEY Parse ERROR)" #: inc/iSchedule.php:667 msgid "DKIM signature validation failed(KEY Validation ERROR)" -msgstr "" +msgstr "La validación de la firma DKIM falló (KEY Validation ERROR)" #: inc/iSchedule.php:670 msgid "DKIM signature validation failed(Signature verification ERROR)" -msgstr "" +msgstr "La validación de la firma DKIM falló (ERROR en la verificación de la firma)" #: htdocs/feed.php:78 inc/caldav-GET-functions.php:65 #: inc/CalDAVRequest.php:696 inc/CalDAVRequest.php:798 inc/caldav-BIND.php:64 @@ -459,7 +459,7 @@ msgstr "Error de la base de datos" #: htdocs/upgrade.php:43 msgid "Database Host" -msgstr "" +msgstr "Equipo de la Base de Datos" #: htdocs/upgrade.php:39 msgid "Database Name" @@ -503,7 +503,7 @@ msgid "Default Privileges" msgstr "Privilegios por defecto" msgid "Default relationships added." -msgstr "Relacionespor defecto agregadas" +msgstr "Relaciones por defecto agregadas" #: inc/ui/collection-edit.php:510 inc/ui/collection-edit.php:540 #: inc/ui/principal-edit.php:791 inc/ui/principal-edit.php:841 @@ -513,7 +513,7 @@ msgstr "Borrar" #: inc/ui/collection-edit.php:170 inc/ui/principal-edit.php:17 msgid "Delete Events/Collections" -msgstr "" +msgstr "Borrar Eventos/Colecciones" #: inc/ui/principal-edit.php:298 msgid "Delete Principal" @@ -533,7 +533,7 @@ msgstr "" #: inc/ui/principal-edit.php:863 msgid "Deleting Collection:" -msgstr "" +msgstr "Borrando colección" #: inc/ui/principal-edit.php:445 msgid "Deleting Principal:" @@ -566,11 +566,11 @@ msgstr "Descripción" #: inc/caldav-MOVE.php:34 inc/caldav-PUT-default.php:52 msgid "Destination collection does not exist" -msgstr "" +msgstr "La colección de destino no existe" #: htdocs/tools.php:94 msgid "Directory on the server" -msgstr "DIrectorio en el servidor" +msgstr "Directorio en el servidor" #: inc/ui/principal-browse.php:18 inc/ui/collection-edit.php:466 #: inc/ui/external-browse.php:9 inc/ui/principal-edit.php:281 @@ -604,7 +604,7 @@ msgid "ERROR: The new password must match the confirmed password." msgstr "ERROR: la nueva contraseña debe coincidir con la suministrada en la confirmación" msgid "ERROR: There was a database error writing the roles information!" -msgstr "" +msgstr "ERROR: hubo un problema en la base de datos al escribir los roles de información" #: inc/ui/collection-edit.php:472 inc/ui/principal-edit.php:664 msgid "Edit" @@ -645,13 +645,13 @@ msgstr "" #: inc/caldav-MKCOL.php:215 msgid "Error writing calendar properties to database." -msgstr "" +msgstr "Error escribiendo las propiedades del calendario a la base de datos" msgid "European" -msgstr "" +msgstr "Europea" msgid "European (d/m/y)" -msgstr "" +msgstr "Europea (d/m/y)" #: inc/caldav-MOVE.php:78 msgid "Existing resource does not match \"If-Match\" header - not accepted." @@ -685,7 +685,7 @@ msgstr "" #: inc/DAViCalSession.php:167 msgid "For access to the" -msgstr "" +msgstr "Para acceder a:" #: inc/caldav-GET.php:64 msgid "Forbidden" @@ -745,7 +745,7 @@ msgstr "Grupos principales" #: inc/ui/principal-edit.php:463 inc/ui/principal-edit.php:546 #: inc/ui/principal-edit.php:660 msgid "Has Members" -msgstr "" +msgstr "Tiene miembros" #: inc/interactive-page.php:48 msgid "Help" @@ -753,21 +753,21 @@ msgstr "Ayuda" #: inc/interactive-page.php:48 msgid "Help on the current screen" -msgstr "" +msgstr "Ayuda para la pantalla actual" msgid "Help! I've forgotten my password!" -msgstr "" +msgstr "Ayuda! Olvidé mi contraseña" #: inc/interactive-page.php:45 msgid "Home" -msgstr "" +msgstr "Inicio" msgid "Home " -msgstr "" +msgstr "Inicio" #: inc/interactive-page.php:45 msgid "Home Page" -msgstr "" +msgstr "Página de inicio" #: inc/ui/principal-browse.php:14 inc/ui/collection-edit.php:534 #: inc/ui/external-browse.php:6 inc/ui/principal-edit.php:458 @@ -787,19 +787,19 @@ msgid "Id" msgstr "Id" msgid "If you have forgotten your password then" -msgstr "" +msgstr "Si has olvidado tu contraseña, entonces" #: inc/DAViCalSession.php:171 msgid "If you would like to request access, please e-mail" -msgstr "" +msgstr "Si deseas solicitar acceso, por favor, envía un correo" #: htdocs/tools.php:79 msgid "Import all .ics files of a directory" -msgstr "" +msgstr "Importar todos los archivos .ics desde un directorio" #: inc/interactive-page.php:36 msgid "Import calendars and Synchronise LDAP." -msgstr "" +msgstr "Importar caledarios y sincronizar LDAP" #: inc/interactive-page.php:37 msgid "Inactive Principals" @@ -807,22 +807,22 @@ msgstr "" #: inc/caldav-PUT-default.php:45 msgid "Incorrect content type for addressbook: " -msgstr "" +msgstr "Tipo de contenidos incorrectos para la libreta de direcciones" #: inc/caldav-PUT-default.php:41 msgid "Incorrect content type for calendar: " -msgstr "" +msgstr "Tipo de contenidos incorrectos para el calendario:" msgid "Invalid user name or password." -msgstr "" +msgstr "Nombre o contraseña incorrectas" msgid "Invalid username or password." -msgstr "" +msgstr "Nombre de usuario o contraseña incorrecta" #: inc/ui/principal-browse.php:20 inc/ui/principal-edit.php:462 #: inc/ui/principal-edit.php:545 msgid "Is Member of" -msgstr "" +msgstr "Es miembro de" #: inc/ui/collection-edit.php:222 msgid "Is a Calendar" @@ -833,11 +833,11 @@ msgid "Is an Addressbook" msgstr "Es una libreta de direcciones" msgid "Is this user active?" -msgstr "" +msgstr "Se encuentra activo el usuario" #: inc/ui/collection-edit.php:220 msgid "Items in Collection" -msgstr "" +msgstr "Items en la colección" msgid "Joined" msgstr "Unido" @@ -846,31 +846,31 @@ msgid "Language" msgstr "Idiomas" msgid "Last used" -msgstr "" +msgstr "Último uso" #: inc/interactive-page.php:30 inc/interactive-page.php:39 msgid "List External Calendars" -msgstr "" +msgstr "Listar calendarios externos" #: inc/interactive-page.php:29 msgid "List Groups" -msgstr "" +msgstr "Listar grupos" #: inc/interactive-page.php:28 msgid "List Resources" -msgstr "" +msgstr "Listar recursos" #: inc/interactive-page.php:27 msgid "List Users" -msgstr "" +msgstr "Listar usuarios" #: inc/ui/collection-edit.php:218 msgid "Load From File" -msgstr "" +msgstr "Cargar desde un archivo" #: inc/ui/principal-edit.php:286 msgid "Locale" -msgstr "" +msgstr "Local" #: htdocs/feed.php:151 msgid "Location" @@ -886,7 +886,7 @@ msgstr "Desconectarse de DAViCal" #: inc/interactive-page.php:6 msgid "Logout" -msgstr "Deconectar" +msgstr "Desconectar" #: inc/ui/principal-edit.php:508 msgid "Member deleted from this Group Principal" @@ -924,11 +924,11 @@ msgstr "No hay contenido en el calendario" #: inc/caldav-OPTIONS.php:24 msgid "No collection found at that location." -msgstr "" +msgstr "Ninguna colección fue encontrada en la ubicación." #: inc/CalDAVRequest.php:1135 msgid "No resource exists at the destination." -msgstr "" +msgstr "No existen recursos en ese destino" #: htdocs/feed.php:126 msgid "No summary" @@ -959,7 +959,7 @@ msgstr "Opaco" #: inc/iSchedule.php:656 msgid "Organizer Missing" -msgstr "" +msgstr "Organizadir extraviado" #: inc/ui/collection-edit.php:166 inc/ui/principal-edit.php:13 msgid "Override a Lock" @@ -971,11 +971,11 @@ msgstr "Controlador PDO de PostgreSQL" #: htdocs/setup.php:327 msgid "PHP DateTime class" -msgstr "" +msgstr "Clase PHP DateTime" #: htdocs/setup.php:336 msgid "PHP LDAP module available" -msgstr "" +msgstr "Módulo de PHP LDAP disponible" #: htdocs/setup.php:329 msgid "PHP Magic Quotes GPC off" @@ -1007,7 +1007,7 @@ msgstr "PHP no está usando Apache Filter mode" #: inc/external-fetch.php:18 inc/external-fetch.php:46 msgid "PHP5 curl support is required for external binds" -msgstr "" +msgstr "El soporte para curl en PHP5 es requerido para una petición externa" #: inc/caldav-PUT-default.php:61 msgid "" @@ -1035,7 +1035,7 @@ msgid "Person" msgstr "Persona" msgid "Please confirm deletion of access ticket - see below" -msgstr "" +msgstr "Por favor, confirme el borrado de los tickets de acceso - ver más abajo" msgid "Please confirm deletion of binding - see below" msgstr "" @@ -1059,7 +1059,7 @@ msgstr "" #: inc/ui/principal-edit.php:652 msgid "Principal Grants" -msgstr "" +msgstr "Privilegios concedidos" #: inc/ui/principal-edit.php:275 msgid "Principal ID" @@ -1089,12 +1089,12 @@ msgstr "" #: inc/ui/collection-edit.php:235 inc/ui/principal-edit.php:386 msgid "Privileges to delegate scheduling decisions" -msgstr "" +msgstr "Privilegios para delegar decisiones de calendarios" #: inc/caldav-MKCOL.php:139 inc/caldav-PROPPATCH.php:215 #: inc/caldav-PROPPATCH.php:267 msgid "Property is read-only" -msgstr "" +msgstr "La propiedad es de sólo lectura " #. Translators: in the sense of being available to all users #: inc/ui/principal-edit.php:837 @@ -1107,12 +1107,12 @@ msgstr "Públicamente legible" #: inc/caldav-REPORT.php:27 msgid "REPORT body contains no XML data!" -msgstr "" +msgstr "REPORTE el cuerpo no contiene data XML" #: inc/autodiscover-handler.php:53 inc/caldav-REPORT.php:32 #: inc/iSchedule.php:283 msgid "REPORT body is not valid XML data!" -msgstr "" +msgstr "REPORTE el cuerpo no contiene data XML válida" #: inc/ui/collection-edit.php:163 inc/ui/collection-edit.php:232 #: inc/ui/principal-edit.php:10 inc/ui/principal-edit.php:383 @@ -1121,7 +1121,7 @@ msgstr "Leer" #: inc/CalDAVRequest.php:733 msgid "Read ACLs for a resource or collection" -msgstr "" +msgstr "Leer ACL para un recurso o colección" #: inc/ui/collection-edit.php:167 inc/ui/principal-edit.php:14 msgid "Read Access Controls" @@ -1129,24 +1129,24 @@ msgstr "Leer controles de acceso" #: inc/ui/collection-edit.php:168 inc/ui/principal-edit.php:15 msgid "Read Current User's Access" -msgstr "" +msgstr "Leer accesos actuales para el usuario" #: inc/ui/collection-edit.php:172 inc/ui/principal-edit.php:19 msgid "Read Free/Busy Information" -msgstr "" +msgstr "Leer información libre/ocupado" #: inc/CalDAVRequest.php:725 msgid "Read the content of a resource or collection" -msgstr "" +msgstr "Leer el contenido de un recurso o colección" #: inc/CalDAVRequest.php:734 msgid "" "Read the details of the current user's access control to this resource." -msgstr "" +msgstr "Leer los detalles del control de acceso a este recurso por parte del usuario actual" #: inc/CalDAVRequest.php:732 msgid "Read the free/busy information for a calendar collection" -msgstr "" +msgstr "Leer la información libre/ocupado para una colección del calendario" #: inc/ui/collection-edit.php:231 inc/ui/principal-edit.php:382 msgid "Read/Write" @@ -1178,7 +1178,7 @@ msgstr "Reportar un error en el sistema" #: inc/interactive-page.php:22 msgid "Request Feature" -msgstr "" +msgstr "Característica solicitada" #: inc/caldav-PROPFIND.php:29 msgid "Request body is not valid XML data!" @@ -1199,7 +1199,7 @@ msgstr "Recurso no encontrado" #: inc/caldav-DELETE.php:73 msgid "Resource has changed on server - not deleted" -msgstr "" +msgstr "El recurso ha cambiado en el servidor no borrado" #: inc/caldav-PROPPATCH.php:151 msgid "Resources may not be changed to / from collections." @@ -1215,7 +1215,7 @@ msgstr "Registro SRV" #: inc/ui/collection-edit.php:234 inc/ui/principal-edit.php:385 msgid "Schedule Deliver" -msgstr "" +msgstr "Calendario enviado" #: inc/ui/collection-edit.php:235 inc/ui/principal-edit.php:386 msgid "Schedule Send" @@ -1227,35 +1227,35 @@ msgstr "" #: inc/ui/collection-edit.php:174 inc/ui/principal-edit.php:21 msgid "Scheduling: Deliver a Reply" -msgstr "" +msgstr "Agendando: enviar una réplica" #: inc/ui/collection-edit.php:173 inc/ui/principal-edit.php:20 msgid "Scheduling: Deliver an Invitation" -msgstr "" +msgstr "Agendando: entregar una invitación" #: inc/ui/collection-edit.php:180 inc/ui/principal-edit.php:27 msgid "Scheduling: Delivery" -msgstr "" +msgstr "Agendando: entregado" #: inc/ui/collection-edit.php:175 inc/ui/principal-edit.php:22 msgid "Scheduling: Query free/busy" -msgstr "" +msgstr "Calendario: Petición libre/ocupado" #: inc/ui/collection-edit.php:177 inc/ui/principal-edit.php:24 msgid "Scheduling: Send a Reply" -msgstr "" +msgstr "Agendando: enviar una réplica" #: inc/ui/collection-edit.php:176 inc/ui/principal-edit.php:23 msgid "Scheduling: Send an Invitation" -msgstr "" +msgstr "Agendando: enviar una invitación" #: inc/ui/collection-edit.php:178 inc/ui/principal-edit.php:25 msgid "Scheduling: Send free/busy" -msgstr "" +msgstr "Agendando: enviar libre/ocupado" #: inc/ui/collection-edit.php:181 inc/ui/principal-edit.php:28 msgid "Scheduling: Sending" -msgstr "" +msgstr "Agendando: enviando" #: inc/CalDAVRequest.php:747 msgid "Send free/busy enquiries" @@ -1275,21 +1275,21 @@ msgstr "" #: inc/ui/collection-edit.php:233 inc/ui/principal-edit.php:384 msgid "Set free/busy privileges" -msgstr "" +msgstr "Configurar privilegios de libre/ocupado" #: inc/ui/collection-edit.php:232 inc/ui/principal-edit.php:383 msgid "Set read privileges" -msgstr "" +msgstr "Configurar privilegios de lectura" #: inc/ui/collection-edit.php:231 inc/ui/principal-edit.php:382 msgid "Set read+write privileges" -msgstr "" +msgstr "Configurar privilegios de lectura/escritura" #: htdocs/tools.php:89 msgid "" "Set the path to store your ics e.g. 'calendar' will be referenced as " "/caldav.php/username/calendar/" -msgstr "" +msgstr "Configure la ruta para almacenar tu ics. Por ejemplo si colocas 'calendario' éste será referenciado como /caldav.php/username/calendar/ " #: htdocs/setup.php:359 inc/interactive-page.php:34 htdocs/setup.php:361 msgid "Setup" @@ -1317,7 +1317,7 @@ msgstr "Las estadísticas del sitio requieren que la base de datos esté disponi #: inc/caldav-PROPPATCH.php:292 msgid "Some properties were not able to be changed." -msgstr "" +msgstr "No pudieron canbiarse algunas propiedades" #: inc/caldav-MKCOL.php:176 msgid "Some properties were not able to be set." @@ -1355,11 +1355,11 @@ msgstr "Enviar" #: htdocs/setup.php:328 msgid "Suhosin \"server.strip\" disabled" -msgstr "" +msgstr "Suhosin \"server.strip\" deshabilitado" #: htdocs/tools.php:63 msgid "Sync LDAP Groups with DAViCal" -msgstr "" +msgstr "Sincronizar el grupo LDAP con DAViCal" #: htdocs/tools.php:51 msgid "Sync LDAP with DAViCal" @@ -1371,7 +1371,7 @@ msgstr "Destino" #: inc/caldav-BIND.php:38 msgid "That destination name contains invalid characters." -msgstr "" +msgstr "El nombre del destino contiene caracteres inválidos" #: inc/caldav-PROPFIND.php:261 msgid "That resource is not present on this server." @@ -1414,7 +1414,7 @@ msgstr "La aplicación falló al entender la petición" #: htdocs/public.php:62 htdocs/feed.php:205 htdocs/caldav.php:152 #: inc/well-known.php:36 inc/well-known.php:50 inc/well-known.php:61 msgid "The application program does not understand that request." -msgstr "" +msgstr "La aplicación no entiende la petición" #: inc/ui/principal-edit.php:901 inc/ui/principal-edit.php:937 msgid "The binding will be deleted." @@ -1422,7 +1422,7 @@ msgstr "" #: inc/CalDAVRequest.php:176 msgid "The calendar path contains illegal characters." -msgstr "" +msgstr "La ruta del calendario contiene caracteres ilegales" #: inc/caldav-PROPPATCH.php:171 msgid "" @@ -1476,7 +1476,7 @@ msgstr "" #: htdocs/tools.php:95 msgid "The path on the server where your .ics files are." -msgstr "" +msgstr "La ruta en el servudor donde se encuentra localizdo tu archivo .ics" #: inc/ui/principal-edit.php:169 msgid "The preferred language for this person." @@ -1553,15 +1553,15 @@ msgstr "Identificación del ticket" #: htdocs/feed.php:134 msgid "Time" -msgstr "" +msgstr "Tiempo" #: inc/ui/principal-edit.php:878 msgid "To Collection" -msgstr "" +msgstr "Para Colección" #: inc/ui/collection-edit.php:462 inc/ui/principal-edit.php:654 msgid "To ID" -msgstr "" +msgstr "Para ID" #: inc/ui/collection-edit.php:230 inc/ui/principal-edit.php:381 msgid "Toggle all privileges" @@ -1590,7 +1590,7 @@ msgstr "Estados Unidos de Norteamérica (m/d/y)" #: inc/caldav-PROPPATCH.php:147 msgid "Unsupported resourcetype modification." -msgstr "" +msgstr "Modificación del tipo de recurso no soportada" msgid "Update" msgstr "Actualizar" @@ -1614,7 +1614,7 @@ msgstr "" #: inc/interactive-page.php:35 msgid "Upgrade DAViCal database schema" -msgstr "" +msgstr "Actualice el esquema de la base de datos DAViCal" #: htdocs/upgrade.php:29 inc/interactive-page.php:35 msgid "Upgrade Database" @@ -1668,7 +1668,7 @@ msgstr "Visite el Wiki DAViCal" #, php-format msgid "Want: %s, Currently: %s" -msgstr "" +msgstr "Deseado: %s, Actual: %s" msgid "" "Warning: there are no active admin users! You should fix this before logging" @@ -1676,7 +1676,7 @@ msgid "" msgstr "" msgid "When the user's e-mail account was validated." -msgstr "" +msgstr "Cuando el correo electrónico del usuarios fue validado" #: inc/ui/collection-edit.php:179 inc/ui/principal-edit.php:26 msgid "Write" @@ -1731,11 +1731,11 @@ msgstr "Debe autenticarte para usar este sistema" #: htdocs/setup.php:396 htdocs/setup.php:401 htdocs/setup.php:406 msgid "Your configuration produced PHP errors which should be corrected" -msgstr "" +msgstr "Tu configuración produce errores en PHP que deben ser corregidos " #: inc/caldav-PROPPATCH.php:195 inc/caldav-PROPPATCH.php:246 msgid "calendar-timezone property is only valid for a calendar." -msgstr "" +msgstr "la propiedad zona horaria-calendario sólo es válida para un calendario" #, php-format msgid "directory %s is not readable" @@ -1744,10 +1744,10 @@ msgstr "El directorio %s no es legible" msgid "" "drivers_imap_pam : imap_url parameter not configured in " "/etc/davical/*-conf.php" -msgstr "" +msgstr "drivers_imap_pam : parámetros de imap_url no configurados en /etc/davical/*-conf.php " msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" -msgstr "" +msgstr "drivers_ldap: no se puede comenzar TLS: ldap_start_tls() falló" #, php-format msgid "" @@ -1757,7 +1757,7 @@ msgstr "" msgid "" "drivers_ldap : Failed to set LDAP to use protocol version 3, TLS not " "supported" -msgstr "" +msgstr "drivers_ldap: hubo una falla al configirar LDAP usando la versión 3 del protocolo. TLS no soportado" msgid "" "drivers_ldap : Unable to bind to LDAP - check your configuration for bindDN " @@ -1767,19 +1767,19 @@ msgstr "" #: inc/drivers_ldap.php:58 inc/drivers_ldap.php:60 #, php-format msgid "drivers_ldap : Unable to connect to LDAP with port %s on host %s" -msgstr "" +msgstr "drivers_ldap: incapaz de conectarse al servidor LDAP en %s utilizando el puerto %s " msgid "" "drivers_ldap : function ldap_connect not defined, check your php_ldap module" -msgstr "" +msgstr "drivers_ldap : función ldap_connect no definida, chequea tu módulo php_ldap" #, php-format msgid "drivers_pwauth_pam : Unable to find %s file" -msgstr "" +msgstr "driver_pwauth_pam: Incapaz de encontrar el archivo %s" #, php-format msgid "drivers_squid_pam : Unable to find %s file" -msgstr "" +msgstr "driver_squid_pam: Incapaz de encontrar el archivo %s" #. Translators: this is a colloquial phrase in english (the name of a flower) #. and is an option allowing people to log in automatically in future @@ -1822,11 +1822,11 @@ msgstr "" #: htdocs/help.php:8 msgid "DAViCal CalDAV Server - Configuration Help" -msgstr "" +msgstr "Servidor DAViCal CAlDAV - Ayuda de configuración" #: htdocs/setup.php:393 htdocs/setup.php:395 msgid "PHP Information" -msgstr "" +msgstr "Información PHP" #: htdocs/setup.php:396 htdocs/index.php:48 htdocs/setup.php:399 #: htdocs/index.php:47 @@ -1841,12 +1841,12 @@ msgstr "" msgid "" "The administrative interface has no facility for viewing or modifying " "calendar data." -msgstr "" +msgstr "La interfaz administrativa no tiene facilidades para ver o modificar datos del calendario" #: 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 "Si puedes leer esto entomces casi todo lo demás está trabajando " #: htdocs/setup.php:404 msgid "" @@ -1876,7 +1876,7 @@ msgstr "" #: htdocs/index.php:23 msgid "The types of relationships that are available" -msgstr "" +msgstr "Tipos de relaciones que están disponibles" #: htdocs/index.php:24 msgid "" @@ -1913,7 +1913,7 @@ msgstr "" #: htdocs/index.php:35 htdocs/index.php:34 msgid "The primary differences between them are as follows:" -msgstr "" +msgstr "Las diferencias primarias entre ellos son las siguientes" #: htdocs/index.php:36 htdocs/index.php:39 htdocs/index.php:35 #: htdocs/index.php:38 @@ -1934,7 +1934,7 @@ msgstr "" #: htdocs/index.php:41 htdocs/index.php:40 msgid "Groups & Grants" -msgstr "" +msgstr "Grupos & Privilegios" #: htdocs/index.php:42 htdocs/index.php:41 msgid "Grants specify the access rights to a collection or a principal" @@ -1961,7 +1961,7 @@ msgstr "" #: htdocs/iSchedule.php:12 msgid "iSchedule Configuration" -msgstr "" +msgstr "Configuración iSchedule" #: htdocs/iSchedule.php:13 msgid "" @@ -1990,7 +1990,7 @@ msgstr "ERROR" msgid "" "scheduling_dkim_domain not set (please check your DAViCal configuration " "file)" -msgstr "" +msgstr "scheduling_dkim_domain no configurado (por favor chequea tu archivo de configuración DAViCal" #: htdocs/iSchedule.php:28 msgid "WARNING" @@ -2019,7 +2019,7 @@ msgstr "" msgid "" "TXT record missing for \"%s._domainkey.%s\" or DNS failure, Private RSA key " "is configured" -msgstr "" +msgstr "registro TXT extraviado para \"%s._domainkey.%s\" o falla en el servidor DNS, clave RSA privada " #: htdocs/iSchedule.php:66 msgid "please add the following section to your DAViCal configuration file" @@ -2028,7 +2028,7 @@ msgstr "por favor, agrega la siguiente sección a tu archivo de configuración d #: htdocs/iSchedule.php:69 #, php-format msgid "and create a DNS TXT record for %s._domainkey.%s that contains:" -msgstr "" +msgstr "y crea un registro DNS de tipo TXT para %s._domainkey.%s que contenga:" #: htdocs/iSchedule.php:76 #, php-format @@ -2037,7 +2037,7 @@ msgstr "" #: htdocs/iSchedule.php:78 msgid "iSchedule OK" -msgstr "" +msgstr "iSchedule Ok" #: htdocs/setup.php:339 #, php-format From 1cdb8adf5cb9cc17130d2a5b67538a6f4695aecb Mon Sep 17 00:00:00 2001 From: Cyril Giraud Date: Tue, 18 Nov 2014 22:41:56 +0100 Subject: [PATCH 6/7] Typo fixes, thanks to Jim. --- htdocs/index.php | 2 +- htdocs/setup.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/index.php b/htdocs/index.php index d1ccc252..4c36beaf 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -15,7 +15,7 @@ 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)); +$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:'); diff --git a/htdocs/setup.php b/htdocs/setup.php index 6da52d67..f6a5fabb 100644 --- a/htdocs/setup.php +++ b/htdocs/setup.php @@ -342,7 +342,7 @@ function build_dependencies_table( ) { $dep_tpl = ' %s %s - $translated_failure_code + '.$translated_failure_code.' '; foreach( $dependencies AS $k => $v ) { From 70265e7539cf5d6fba3556ac270923d58fd4233f Mon Sep 17 00:00:00 2001 From: Jim Fenton Date: Thu, 20 Nov 2014 22:19:36 -0800 Subject: [PATCH 7/7] Remove extraneous line space --- htdocs/iSchedule.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/iSchedule.php b/htdocs/iSchedule.php index 1eb94e2b..51c9f414 100644 --- a/htdocs/iSchedule.php +++ b/htdocs/iSchedule.php @@ -17,8 +17,8 @@ $content_sched2 = translate('The