Conflicts: apps/contacts/lib/vcard.php apps/files_sharing/sharedstorage.phpremotes/origin/stable45
commit
78cd1153f0
@ -0,0 +1,12 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2012 Georg Ehrke <ownClouddev at georgswebsite.de> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
$l10n = OC_L10N::get('calendar'); |
||||
OCP\JSON::checkLoggedIn(); |
||||
OCP\JSON::checkAppEnabled('calendar'); |
||||
$tmpl = new OCP\Template('calendar', 'part.choosecalendar'); |
||||
$tmpl->printpage(); |
@ -1,51 +1,52 @@ |
||||
<div id="choosecalendar_dialog" title="<?php echo $l->t("Choose active calendars"); ?>">
|
||||
<p><b><?php echo $l->t('Your calendars'); ?>:</b></p>
|
||||
<table width="100%" style="border: 0;"> |
||||
<?php |
||||
$option_calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser()); |
||||
for($i = 0; $i < count($option_calendars); $i++){ |
||||
echo "<tr>"; |
||||
$tmpl = new OCP\Template('calendar', 'part.choosecalendar.rowfields'); |
||||
$tmpl->assign('calendar', $option_calendars[$i]); |
||||
if(OC_Calendar_Share::allUsersSharedwith($option_calendars[$i]['id'], OC_Calendar_Share::CALENDAR) == array()){ |
||||
$shared = false; |
||||
}else{ |
||||
$shared = true; |
||||
<form id="calendar"> |
||||
<p><b><?php echo $l->t('Your calendars'); ?>:</b></p>
|
||||
<table width="100%" style="border: 0;"> |
||||
<?php |
||||
$option_calendars = OC_Calendar_Calendar::allCalendars(OCP\USER::getUser()); |
||||
for($i = 0; $i < count($option_calendars); $i++){ |
||||
echo "<tr>"; |
||||
$tmpl = new OCP\Template('calendar', 'part.choosecalendar.rowfields'); |
||||
$tmpl->assign('calendar', $option_calendars[$i]); |
||||
if(OC_Calendar_Share::allUsersSharedwith($option_calendars[$i]['id'], OC_Calendar_Share::CALENDAR) == array()){ |
||||
$shared = false; |
||||
}else{ |
||||
$shared = true; |
||||
} |
||||
$tmpl->assign('shared', $shared); |
||||
$tmpl->printpage(); |
||||
echo "</tr>"; |
||||
} |
||||
$tmpl->assign('shared', $shared); |
||||
$tmpl->printpage(); |
||||
echo "</tr>"; |
||||
} |
||||
?> |
||||
<tr> |
||||
<td colspan="6"> |
||||
<a href="#" onclick="Calendar.UI.Calendar.newCalendar(this);"><input type="button" value="<?php echo $l->t('New Calendar') ?>"></a>
|
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td colspan="6"> |
||||
<p style="margin: 0 auto;width: 90%;"><input style="display:none;width: 90%;float: left;" type="text" id="caldav_url" onmouseover="$('#caldav_url').select();" title="<?php echo $l->t("CalDav Link"); ?>"><img id="caldav_url_close" style="height: 20px;vertical-align: middle;display: none;" src="<?php echo OCP\Util::imagePath('core', 'actions/delete.svg') ?>" alt="close" onclick="$('#caldav_url').hide();$('#caldav_url_close').hide();"/></p>
|
||||
</td> |
||||
</tr> |
||||
</table><br> |
||||
<p><b><?php echo $l->t('Shared calendars'); ?>: </b></p>
|
||||
<table width="100%" style="border: 0;"> |
||||
<?php |
||||
$share = OC_Calendar_Share::allSharedwithuser(OCP\USER::getUser(), OC_Calendar_Share::CALENDAR); |
||||
$count = count($share); |
||||
for($i = 0; $i < $count; $i++){ |
||||
$share[$i]['calendar'] = OC_Calendar_App::getCalendar($share[$i]['calendarid'], false, false); |
||||
echo '<tr>'; |
||||
$tmpl = new OCP\Template('calendar', 'part.choosecalendar.rowfields.shared'); |
||||
$tmpl->assign('share', $share[$i]); |
||||
$tmpl->printpage(); |
||||
echo '</tr>'; |
||||
} |
||||
?> |
||||
</table> |
||||
<?php |
||||
if($count == 0){ |
||||
echo '<p style="text-align:center;"><b>' . $l->t('No shared calendars') . '</b></p>'; |
||||
} |
||||
?> |
||||
</div> |
||||
?> |
||||
<tr> |
||||
<td colspan="6"> |
||||
<a href="#" onclick="Calendar.UI.Calendar.newCalendar(this);"><input type="button" value="<?php echo $l->t('New Calendar') ?>"></a>
|
||||
</td> |
||||
</tr> |
||||
<tr> |
||||
<td colspan="6"> |
||||
<p style="margin: 0 auto;width: 90%;"><input style="display:none;width: 90%;float: left;" type="text" id="caldav_url" onmouseover="$('#caldav_url').select();" title="<?php echo $l->t("CalDav Link"); ?>"><img id="caldav_url_close" style="height: 20px;vertical-align: middle;display: none;" src="<?php echo OCP\Util::imagePath('core', 'actions/delete.svg') ?>" alt="close" onclick="$('#caldav_url').hide();$('#caldav_url_close').hide();"/></p>
|
||||
</td> |
||||
</tr> |
||||
</table><br> |
||||
<p><b><?php echo $l->t('Shared calendars'); ?>: </b></p>
|
||||
<table width="100%" style="border: 0;"> |
||||
<?php |
||||
$share = OC_Calendar_Share::allSharedwithuser(OCP\USER::getUser(), OC_Calendar_Share::CALENDAR); |
||||
$count = count($share); |
||||
for($i = 0; $i < $count; $i++){ |
||||
$share[$i]['calendar'] = OC_Calendar_App::getCalendar($share[$i]['calendarid'], false, false); |
||||
echo '<tr>'; |
||||
$tmpl = new OCP\Template('calendar', 'part.choosecalendar.rowfields.shared'); |
||||
$tmpl->assign('share', $share[$i]); |
||||
$tmpl->printpage(); |
||||
echo '</tr>'; |
||||
} |
||||
?> |
||||
</table> |
||||
<?php |
||||
if($count == 0){ |
||||
echo '<p style="text-align:center;"><b>' . $l->t('No shared calendars') . '</b></p>'; |
||||
} |
||||
?> |
||||
</fieldset> |
||||
</form> |
@ -1,9 +1,3 @@ |
||||
<?php |
||||
|
||||
// no need for apps |
||||
$RUNTIME_NOAPPS=false; |
||||
|
||||
// Init owncloud |
||||
|
||||
|
||||
print OC_Helper::mimetypeIcon($_GET['mime']); |
||||
|
@ -0,0 +1,28 @@ |
||||
<section id="main"> |
||||
<div id="oauth"> |
||||
<h2><img src="<?php echo image_path('', 'remoteStorage-big.png'); ?>" alt="remoteStorage" /></h2>
|
||||
<p><strong><?php echo $_['host'] ?></strong>
|
||||
requests read & write access to your |
||||
<?php |
||||
$categories = $_['categories']; |
||||
if(!count($categories)) { |
||||
echo $categories[0]; |
||||
} else { |
||||
echo '<em>'.$categories[0].'</em>'; |
||||
if(count($categories)==2) { |
||||
echo ' and <em>'.$categories[1].'</em>'; |
||||
} else if(count($categories)>2) { |
||||
for($i=1; $i<count($categories)-1; $i++) { |
||||
echo ', <em>'.$categories[$i].'</em>'; |
||||
} |
||||
echo ', and <em>'.$categories[$i].'</em>'; |
||||
} |
||||
} |
||||
?>. |
||||
</p> |
||||
<form accept-charset="UTF-8" method="post"> |
||||
<input id="allow-auth" name="allow" type="submit" value="Allow" /> |
||||
<input id="deny-auth" name="deny" type="submit" value="Deny" /> |
||||
</form> |
||||
</div> |
||||
</section> |
@ -0,0 +1,60 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2012-07-27 22:17+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: appinfo/app.php:14 |
||||
msgid "Bookmarks" |
||||
msgstr "" |
||||
|
||||
#: bookmarksHelper.php:99 |
||||
msgid "unnamed" |
||||
msgstr "" |
||||
|
||||
#: templates/bookmarklet.php:5 |
||||
msgid "" |
||||
"Drag this to your browser bookmarks and click it, when you want to bookmark " |
||||
"a webpage quickly:" |
||||
msgstr "" |
||||
|
||||
#: templates/bookmarklet.php:7 |
||||
msgid "Read later" |
||||
msgstr "" |
||||
|
||||
#: templates/list.php:13 |
||||
msgid "Address" |
||||
msgstr "" |
||||
|
||||
#: templates/list.php:14 |
||||
msgid "Title" |
||||
msgstr "" |
||||
|
||||
#: templates/list.php:15 |
||||
msgid "Tags" |
||||
msgstr "" |
||||
|
||||
#: templates/list.php:16 |
||||
msgid "Save bookmark" |
||||
msgstr "" |
||||
|
||||
#: templates/list.php:22 |
||||
msgid "You have no bookmarks" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:11 |
||||
msgid "Bookmarklet <br />" |
||||
msgstr "" |
@ -0,0 +1,814 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2011-09-03 16:52+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: ajax/cache/status.php:19 |
||||
msgid "Not all calendars are completely cached" |
||||
msgstr "" |
||||
|
||||
#: ajax/cache/status.php:21 |
||||
msgid "Everything seems to be completely cached" |
||||
msgstr "" |
||||
|
||||
#: ajax/categories/rescan.php:29 |
||||
msgid "No calendars found." |
||||
msgstr "" |
||||
|
||||
#: ajax/categories/rescan.php:37 |
||||
msgid "No events found." |
||||
msgstr "" |
||||
|
||||
#: ajax/event/edit.form.php:20 |
||||
msgid "Wrong calendar" |
||||
msgstr "" |
||||
|
||||
#: ajax/import/dropimport.php:29 ajax/import/import.php:64 |
||||
msgid "" |
||||
"The file contained either no events or all events are already saved in your " |
||||
"calendar." |
||||
msgstr "" |
||||
|
||||
#: ajax/import/dropimport.php:31 ajax/import/import.php:67 |
||||
msgid "events has been saved in the new calendar" |
||||
msgstr "" |
||||
|
||||
#: ajax/import/import.php:56 |
||||
msgid "Import failed" |
||||
msgstr "" |
||||
|
||||
#: ajax/import/import.php:69 |
||||
msgid "events has been saved in your calendar" |
||||
msgstr "" |
||||
|
||||
#: ajax/settings/guesstimezone.php:25 |
||||
msgid "New Timezone:" |
||||
msgstr "" |
||||
|
||||
#: ajax/settings/settimezone.php:23 |
||||
msgid "Timezone changed" |
||||
msgstr "" |
||||
|
||||
#: ajax/settings/settimezone.php:25 |
||||
msgid "Invalid request" |
||||
msgstr "" |
||||
|
||||
#: appinfo/app.php:35 templates/calendar.php:15 |
||||
#: templates/part.eventform.php:33 templates/part.showevent.php:33 |
||||
#: templates/settings.php:12 |
||||
msgid "Calendar" |
||||
msgstr "" |
||||
|
||||
#: js/calendar.js:828 |
||||
msgid "ddd" |
||||
msgstr "" |
||||
|
||||
#: js/calendar.js:829 |
||||
msgid "ddd M/d" |
||||
msgstr "" |
||||
|
||||
#: js/calendar.js:830 |
||||
msgid "dddd M/d" |
||||
msgstr "" |
||||
|
||||
#: js/calendar.js:833 |
||||
msgid "MMMM yyyy" |
||||
msgstr "" |
||||
|
||||
#: js/calendar.js:835 |
||||
msgid "MMM d[ yyyy]{ '—'[ MMM] d yyyy}" |
||||
msgstr "" |
||||
|
||||
#: js/calendar.js:837 |
||||
msgid "dddd, MMM d, yyyy" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:121 |
||||
msgid "Birthday" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:122 |
||||
msgid "Business" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:123 |
||||
msgid "Call" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:124 |
||||
msgid "Clients" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:125 |
||||
msgid "Deliverer" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:126 |
||||
msgid "Holidays" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:127 |
||||
msgid "Ideas" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:128 |
||||
msgid "Journey" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:129 |
||||
msgid "Jubilee" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:130 |
||||
msgid "Meeting" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:131 |
||||
msgid "Other" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:132 |
||||
msgid "Personal" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:133 |
||||
msgid "Projects" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:134 |
||||
msgid "Questions" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:135 |
||||
msgid "Work" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:351 lib/app.php:361 |
||||
msgid "by" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:359 lib/app.php:399 |
||||
msgid "unnamed" |
||||
msgstr "" |
||||
|
||||
#: lib/import.php:184 templates/calendar.php:12 |
||||
#: templates/part.choosecalendar.php:22 |
||||
msgid "New Calendar" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:372 |
||||
msgid "Does not repeat" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:373 |
||||
msgid "Daily" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:374 |
||||
msgid "Weekly" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:375 |
||||
msgid "Every Weekday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:376 |
||||
msgid "Bi-Weekly" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:377 |
||||
msgid "Monthly" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:378 |
||||
msgid "Yearly" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:388 |
||||
msgid "never" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:389 |
||||
msgid "by occurrences" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:390 |
||||
msgid "by date" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:400 |
||||
msgid "by monthday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:401 |
||||
msgid "by weekday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:411 templates/calendar.php:5 templates/settings.php:42 |
||||
msgid "Monday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:412 templates/calendar.php:5 |
||||
msgid "Tuesday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:413 templates/calendar.php:5 |
||||
msgid "Wednesday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:414 templates/calendar.php:5 |
||||
msgid "Thursday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:415 templates/calendar.php:5 |
||||
msgid "Friday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:416 templates/calendar.php:5 |
||||
msgid "Saturday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:417 templates/calendar.php:5 templates/settings.php:43 |
||||
msgid "Sunday" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:427 |
||||
msgid "events week of month" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:428 |
||||
msgid "first" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:429 |
||||
msgid "second" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:430 |
||||
msgid "third" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:431 |
||||
msgid "fourth" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:432 |
||||
msgid "fifth" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:433 |
||||
msgid "last" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:467 templates/calendar.php:7 |
||||
msgid "January" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:468 templates/calendar.php:7 |
||||
msgid "February" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:469 templates/calendar.php:7 |
||||
msgid "March" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:470 templates/calendar.php:7 |
||||
msgid "April" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:471 templates/calendar.php:7 |
||||
msgid "May" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:472 templates/calendar.php:7 |
||||
msgid "June" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:473 templates/calendar.php:7 |
||||
msgid "July" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:474 templates/calendar.php:7 |
||||
msgid "August" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:475 templates/calendar.php:7 |
||||
msgid "September" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:476 templates/calendar.php:7 |
||||
msgid "October" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:477 templates/calendar.php:7 |
||||
msgid "November" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:478 templates/calendar.php:7 |
||||
msgid "December" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:488 |
||||
msgid "by events date" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:489 |
||||
msgid "by yearday(s)" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:490 |
||||
msgid "by weeknumber(s)" |
||||
msgstr "" |
||||
|
||||
#: lib/object.php:491 |
||||
msgid "by day and month" |
||||
msgstr "" |
||||
|
||||
#: lib/search.php:35 lib/search.php:37 lib/search.php:40 |
||||
msgid "Date" |
||||
msgstr "" |
||||
|
||||
#: lib/search.php:43 |
||||
msgid "Cal." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:6 |
||||
msgid "Sun." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:6 |
||||
msgid "Mon." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:6 |
||||
msgid "Tue." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:6 |
||||
msgid "Wed." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:6 |
||||
msgid "Thu." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:6 |
||||
msgid "Fri." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:6 |
||||
msgid "Sat." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Jan." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Feb." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Mar." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Apr." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "May." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Jun." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Jul." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Aug." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Sep." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Oct." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Nov." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:8 |
||||
msgid "Dec." |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:11 |
||||
msgid "All day" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:13 |
||||
msgid "Missing fields" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:14 templates/part.eventform.php:19 |
||||
#: templates/part.showevent.php:11 |
||||
msgid "Title" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:16 |
||||
msgid "From Date" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:17 |
||||
msgid "From Time" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:18 |
||||
msgid "To Date" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:19 |
||||
msgid "To Time" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:20 |
||||
msgid "The event ends before it starts" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:21 |
||||
msgid "There was a database fail" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:38 |
||||
msgid "Week" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:39 |
||||
msgid "Month" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:40 |
||||
msgid "List" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:44 |
||||
msgid "Today" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:45 |
||||
msgid "Calendars" |
||||
msgstr "" |
||||
|
||||
#: templates/calendar.php:59 |
||||
msgid "There was a fail, while parsing the file." |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.php:1 |
||||
msgid "Choose active calendars" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.php:2 |
||||
msgid "Your calendars" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.php:27 |
||||
#: templates/part.choosecalendar.rowfields.php:11 |
||||
msgid "CalDav Link" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.php:31 |
||||
msgid "Shared calendars" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.php:48 |
||||
msgid "No shared calendars" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.rowfields.php:8 |
||||
msgid "Share Calendar" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.rowfields.php:14 |
||||
msgid "Download" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.rowfields.php:17 |
||||
msgid "Edit" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.rowfields.php:20 |
||||
#: templates/part.editevent.php:9 |
||||
msgid "Delete" |
||||
msgstr "" |
||||
|
||||
#: templates/part.choosecalendar.rowfields.shared.php:4 |
||||
msgid "shared with you by" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editcalendar.php:9 |
||||
msgid "New calendar" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editcalendar.php:9 |
||||
msgid "Edit calendar" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editcalendar.php:12 |
||||
msgid "Displayname" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editcalendar.php:23 |
||||
msgid "Active" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editcalendar.php:29 |
||||
msgid "Calendar color" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editcalendar.php:42 |
||||
msgid "Save" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editcalendar.php:42 templates/part.editevent.php:8 |
||||
#: templates/part.newevent.php:6 |
||||
msgid "Submit" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editcalendar.php:43 |
||||
msgid "Cancel" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editevent.php:1 |
||||
msgid "Edit an event" |
||||
msgstr "" |
||||
|
||||
#: templates/part.editevent.php:10 |
||||
msgid "Export" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:8 templates/part.showevent.php:3 |
||||
msgid "Eventinfo" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:9 templates/part.showevent.php:4 |
||||
msgid "Repeating" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:10 templates/part.showevent.php:5 |
||||
msgid "Alarm" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:11 templates/part.showevent.php:6 |
||||
msgid "Attendees" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:13 |
||||
msgid "Share" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:21 |
||||
msgid "Title of the Event" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:27 templates/part.showevent.php:19 |
||||
msgid "Category" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:29 |
||||
msgid "Separate categories with commas" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:30 |
||||
msgid "Edit categories" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:56 templates/part.showevent.php:52 |
||||
msgid "All Day Event" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:60 templates/part.showevent.php:56 |
||||
msgid "From" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:68 templates/part.showevent.php:64 |
||||
msgid "To" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:76 templates/part.showevent.php:72 |
||||
msgid "Advanced options" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:81 templates/part.showevent.php:77 |
||||
msgid "Location" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:83 |
||||
msgid "Location of the Event" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:89 templates/part.showevent.php:85 |
||||
msgid "Description" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:91 |
||||
msgid "Description of the Event" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:100 templates/part.showevent.php:95 |
||||
msgid "Repeat" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:107 templates/part.showevent.php:102 |
||||
msgid "Advanced" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:151 templates/part.showevent.php:146 |
||||
msgid "Select weekdays" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:164 templates/part.eventform.php:177 |
||||
#: templates/part.showevent.php:159 templates/part.showevent.php:172 |
||||
msgid "Select days" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:169 templates/part.showevent.php:164 |
||||
msgid "and the events day of year." |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:182 templates/part.showevent.php:177 |
||||
msgid "and the events day of month." |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:190 templates/part.showevent.php:185 |
||||
msgid "Select months" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:203 templates/part.showevent.php:198 |
||||
msgid "Select weeks" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:208 templates/part.showevent.php:203 |
||||
msgid "and the events week of year." |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:214 templates/part.showevent.php:209 |
||||
msgid "Interval" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:220 templates/part.showevent.php:215 |
||||
msgid "End" |
||||
msgstr "" |
||||
|
||||
#: templates/part.eventform.php:233 templates/part.showevent.php:228 |
||||
msgid "occurrences" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:14 |
||||
msgid "create a new calendar" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:17 |
||||
msgid "Import a calendar file" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:24 |
||||
msgid "Please choose a calendar" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:36 |
||||
msgid "Name of new calendar" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:44 |
||||
msgid "Take an available name!" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:45 |
||||
msgid "" |
||||
"A Calendar with this name already exists. If you continue anyhow, these " |
||||
"calendars will be merged." |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:47 |
||||
msgid "Import" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:56 |
||||
msgid "Close Dialog" |
||||
msgstr "" |
||||
|
||||
#: templates/part.newevent.php:1 |
||||
msgid "Create a new event" |
||||
msgstr "" |
||||
|
||||
#: templates/part.showevent.php:1 |
||||
msgid "View an event" |
||||
msgstr "" |
||||
|
||||
#: templates/part.showevent.php:23 |
||||
msgid "No categories selected" |
||||
msgstr "" |
||||
|
||||
#: templates/part.showevent.php:37 |
||||
msgid "of" |
||||
msgstr "" |
||||
|
||||
#: templates/part.showevent.php:59 templates/part.showevent.php:67 |
||||
msgid "at" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:14 |
||||
msgid "Timezone" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:31 |
||||
msgid "Check always for changes of the timezone" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:33 |
||||
msgid "Timeformat" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:35 |
||||
msgid "24h" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:36 |
||||
msgid "12h" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:40 |
||||
msgid "First day of the week" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:47 |
||||
msgid "Cache" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:48 |
||||
msgid "Clear cache for repeating events" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:53 |
||||
msgid "Calendar CalDAV syncing addresses" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:53 |
||||
msgid "more info" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:55 |
||||
msgid "Primary address (Kontact et al)" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:57 |
||||
msgid "iOS/OS X" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:59 |
||||
msgid "Read only iCalendar link(s)" |
||||
msgstr "" |
||||
|
||||
#: templates/share.dropdown.php:20 |
||||
msgid "Users" |
||||
msgstr "" |
||||
|
||||
#: templates/share.dropdown.php:21 |
||||
msgid "select users" |
||||
msgstr "" |
||||
|
||||
#: templates/share.dropdown.php:36 templates/share.dropdown.php:62 |
||||
msgid "Editable" |
||||
msgstr "" |
||||
|
||||
#: templates/share.dropdown.php:48 |
||||
msgid "Groups" |
||||
msgstr "" |
||||
|
||||
#: templates/share.dropdown.php:49 |
||||
msgid "select groups" |
||||
msgstr "" |
||||
|
||||
#: templates/share.dropdown.php:75 |
||||
msgid "make public" |
||||
msgstr "" |
@ -0,0 +1,870 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2011-09-23 17:10+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: ajax/addressbook/activate.php:24 ajax/addressbook/update.php:32 |
||||
msgid "Error (de)activating addressbook." |
||||
msgstr "" |
||||
|
||||
#: ajax/addressbook/delete.php:31 ajax/addressbook/update.php:20 |
||||
#: ajax/contact/addproperty.php:42 ajax/contact/delete.php:30 |
||||
#: ajax/contact/saveproperty.php:37 |
||||
msgid "id is not set." |
||||
msgstr "" |
||||
|
||||
#: ajax/addressbook/update.php:24 |
||||
msgid "Cannot update addressbook with an empty name." |
||||
msgstr "" |
||||
|
||||
#: ajax/addressbook/update.php:28 |
||||
msgid "Error updating addressbook." |
||||
msgstr "" |
||||
|
||||
#: ajax/categories/categoriesfor.php:17 |
||||
msgid "No ID provided" |
||||
msgstr "" |
||||
|
||||
#: ajax/categories/categoriesfor.php:34 |
||||
msgid "Error setting checksum." |
||||
msgstr "" |
||||
|
||||
#: ajax/categories/delete.php:19 |
||||
msgid "No categories selected for deletion." |
||||
msgstr "" |
||||
|
||||
#: ajax/categories/delete.php:26 |
||||
msgid "No address books found." |
||||
msgstr "" |
||||
|
||||
#: ajax/categories/delete.php:34 |
||||
msgid "No contacts found." |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/add.php:47 |
||||
msgid "There was an error adding the contact." |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/addproperty.php:39 ajax/contact/saveproperty.php:34 |
||||
msgid "element name is not set." |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/addproperty.php:46 |
||||
msgid "Could not parse contact: " |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/addproperty.php:56 |
||||
msgid "Cannot add empty property." |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/addproperty.php:67 |
||||
msgid "At least one of the address fields has to be filled out." |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/addproperty.php:76 |
||||
msgid "Trying to add duplicate property: " |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/addproperty.php:144 |
||||
msgid "Error adding contact property: " |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/deleteproperty.php:36 |
||||
msgid "Information about vCard is incorrect. Please reload the page." |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/deleteproperty.php:43 |
||||
msgid "Error deleting contact property." |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/details.php:31 |
||||
msgid "Missing ID" |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/details.php:36 |
||||
msgid "Error parsing VCard for ID: \"" |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/saveproperty.php:40 |
||||
msgid "checksum is not set." |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/saveproperty.php:60 |
||||
msgid "Information about vCard is incorrect. Please reload the page: " |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/saveproperty.php:67 |
||||
msgid "Something went FUBAR. " |
||||
msgstr "" |
||||
|
||||
#: ajax/contact/saveproperty.php:142 |
||||
msgid "Error updating contact property." |
||||
msgstr "" |
||||
|
||||
#: ajax/currentphoto.php:30 ajax/oc_photo.php:28 ajax/uploadphoto.php:36 |
||||
#: ajax/uploadphoto.php:68 |
||||
msgid "No contact ID was submitted." |
||||
msgstr "" |
||||
|
||||
#: ajax/currentphoto.php:36 |
||||
msgid "Error reading contact photo." |
||||
msgstr "" |
||||
|
||||
#: ajax/currentphoto.php:48 |
||||
msgid "Error saving temporary file." |
||||
msgstr "" |
||||
|
||||
#: ajax/currentphoto.php:51 |
||||
msgid "The loading photo is not valid." |
||||
msgstr "" |
||||
|
||||
#: ajax/editname.php:31 |
||||
msgid "Contact ID is missing." |
||||
msgstr "" |
||||
|
||||
#: ajax/oc_photo.php:32 |
||||
msgid "No photo path was submitted." |
||||
msgstr "" |
||||
|
||||
#: ajax/oc_photo.php:39 |
||||
msgid "File doesn't exist:" |
||||
msgstr "" |
||||
|
||||
#: ajax/oc_photo.php:44 ajax/oc_photo.php:47 |
||||
msgid "Error loading image." |
||||
msgstr "" |
||||
|
||||
#: ajax/savecrop.php:69 |
||||
msgid "Error getting contact object." |
||||
msgstr "" |
||||
|
||||
#: ajax/savecrop.php:79 |
||||
msgid "Error getting PHOTO property." |
||||
msgstr "" |
||||
|
||||
#: ajax/savecrop.php:98 |
||||
msgid "Error saving contact." |
||||
msgstr "" |
||||
|
||||
#: ajax/savecrop.php:108 |
||||
msgid "Error resizing image" |
||||
msgstr "" |
||||
|
||||
#: ajax/savecrop.php:111 |
||||
msgid "Error cropping image" |
||||
msgstr "" |
||||
|
||||
#: ajax/savecrop.php:114 |
||||
msgid "Error creating temporary image" |
||||
msgstr "" |
||||
|
||||
#: ajax/savecrop.php:117 |
||||
msgid "Error finding image: " |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadimport.php:44 ajax/uploadimport.php:76 |
||||
msgid "Error uploading contacts to storage." |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadimport.php:61 ajax/uploadphoto.php:77 |
||||
msgid "There is no error, the file uploaded with success" |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadimport.php:62 ajax/uploadphoto.php:78 |
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadimport.php:63 ajax/uploadphoto.php:79 |
||||
msgid "" |
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " |
||||
"the HTML form" |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadimport.php:64 ajax/uploadphoto.php:80 |
||||
msgid "The uploaded file was only partially uploaded" |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadimport.php:65 ajax/uploadphoto.php:81 |
||||
msgid "No file was uploaded" |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadimport.php:66 ajax/uploadphoto.php:82 |
||||
msgid "Missing a temporary folder" |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadphoto.php:59 ajax/uploadphoto.php:109 |
||||
msgid "Couldn't save temporary image: " |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadphoto.php:62 ajax/uploadphoto.php:112 |
||||
msgid "Couldn't load temporary image: " |
||||
msgstr "" |
||||
|
||||
#: ajax/uploadphoto.php:71 |
||||
msgid "No file was uploaded. Unknown error" |
||||
msgstr "" |
||||
|
||||
#: appinfo/app.php:19 |
||||
msgid "Contacts" |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:71 |
||||
msgid "Sorry, this functionality has not been implemented yet" |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:71 |
||||
msgid "Not implemented" |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:76 |
||||
msgid "Couldn't get a valid address." |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:76 js/contacts.js:365 js/contacts.js:381 js/contacts.js:393 |
||||
#: js/contacts.js:675 js/contacts.js:715 js/contacts.js:741 js/contacts.js:850 |
||||
#: js/contacts.js:856 js/contacts.js:868 js/contacts.js:902 |
||||
#: js/contacts.js:1165 js/contacts.js:1173 js/contacts.js:1182 |
||||
#: js/contacts.js:1217 js/contacts.js:1249 js/contacts.js:1261 |
||||
#: js/contacts.js:1284 js/contacts.js:1421 js/contacts.js:1452 |
||||
#: js/settings.js:25 js/settings.js:42 js/settings.js:67 |
||||
msgid "Error" |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:715 |
||||
msgid "This property has to be non-empty." |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:741 |
||||
msgid "Couldn't serialize elements." |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:850 js/contacts.js:868 |
||||
msgid "" |
||||
"'deleteProperty' called without type argument. Please report at " |
||||
"bugs.owncloud.org" |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:884 |
||||
msgid "Edit name" |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:1165 |
||||
msgid "No files selected for upload." |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:1173 |
||||
msgid "" |
||||
"The file you are trying to upload exceed the maximum size for file uploads " |
||||
"on this server." |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:1337 js/contacts.js:1371 |
||||
msgid "Select type" |
||||
msgstr "" |
||||
|
||||
#: js/contacts.js:1390 |
||||
msgid "" |
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for " |
||||
"them to be deleted." |
||||
msgstr "" |
||||
|
||||
#: js/loader.js:49 |
||||
msgid "Result: " |
||||
msgstr "" |
||||
|
||||
#: js/loader.js:49 |
||||
msgid " imported, " |
||||
msgstr "" |
||||
|
||||
#: js/loader.js:49 |
||||
msgid " failed." |
||||
msgstr "" |
||||
|
||||
#: js/settings.js:67 |
||||
msgid "Displayname cannot be empty." |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:36 |
||||
msgid "Addressbook not found: " |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:49 |
||||
msgid "This is not your addressbook." |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:68 |
||||
msgid "Contact could not be found." |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:112 templates/part.contact.php:117 |
||||
msgid "Address" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:113 |
||||
msgid "Telephone" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:114 templates/part.contact.php:116 |
||||
msgid "Email" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:115 templates/part.contact.php:39 templates/part.contact.php:40 |
||||
#: templates/part.contact.php:112 |
||||
msgid "Organization" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:127 lib/app.php:134 lib/app.php:144 lib/app.php:197 |
||||
msgid "Work" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:128 lib/app.php:132 lib/app.php:145 |
||||
msgid "Home" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:133 |
||||
msgid "Mobile" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:135 |
||||
msgid "Text" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:136 |
||||
msgid "Voice" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:137 |
||||
msgid "Message" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:138 |
||||
msgid "Fax" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:139 |
||||
msgid "Video" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:140 |
||||
msgid "Pager" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:146 |
||||
msgid "Internet" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:183 templates/part.contact.php:45 |
||||
#: templates/part.contact.php:114 |
||||
msgid "Birthday" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:184 |
||||
msgid "Business" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:185 |
||||
msgid "Call" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:186 |
||||
msgid "Clients" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:187 |
||||
msgid "Deliverer" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:188 |
||||
msgid "Holidays" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:189 |
||||
msgid "Ideas" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:190 |
||||
msgid "Journey" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:191 |
||||
msgid "Jubilee" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:192 |
||||
msgid "Meeting" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:193 |
||||
msgid "Other" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:194 |
||||
msgid "Personal" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:195 |
||||
msgid "Projects" |
||||
msgstr "" |
||||
|
||||
#: lib/app.php:196 |
||||
msgid "Questions" |
||||
msgstr "" |
||||
|
||||
#: lib/hooks.php:102 |
||||
msgid "{name}'s Birthday" |
||||
msgstr "" |
||||
|
||||
#: lib/search.php:15 |
||||
msgid "Contact" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:14 |
||||
msgid "Add Contact" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:15 templates/index.php:16 templates/part.import.php:17 |
||||
msgid "Import" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:18 |
||||
msgid "Settings" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:18 templates/settings.php:9 |
||||
msgid "Addressbooks" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:36 templates/part.import.php:24 |
||||
msgid "Close" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:37 |
||||
msgid "Keyboard shortcuts" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:39 |
||||
msgid "Navigation" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:42 |
||||
msgid "Next contact in list" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:44 |
||||
msgid "Previous contact in list" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:46 |
||||
msgid "Expand/collapse current addressbook" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:48 |
||||
msgid "Next addressbook" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:50 |
||||
msgid "Previous addressbook" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:54 |
||||
msgid "Actions" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:57 |
||||
msgid "Refresh contacts list" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:59 |
||||
msgid "Add new contact" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:61 |
||||
msgid "Add new addressbook" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:63 |
||||
msgid "Delete current contact" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:17 |
||||
msgid "Drop photo to upload" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:19 |
||||
msgid "Delete current photo" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:20 |
||||
msgid "Edit current photo" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:21 |
||||
msgid "Upload new photo" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:22 |
||||
msgid "Select photo from ownCloud" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:35 |
||||
msgid "Format custom, Short name, Full name, Reverse or Reverse with comma" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:36 |
||||
msgid "Edit name details" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:40 templates/part.contact.php:42 |
||||
#: templates/part.contact.php:44 templates/part.contact.php:46 |
||||
#: templates/part.contact.php:50 templates/settings.php:33 |
||||
msgid "Delete" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:41 templates/part.contact.php:113 |
||||
msgid "Nickname" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:42 |
||||
msgid "Enter nickname" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:43 templates/part.contact.php:119 |
||||
msgid "Web site" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:44 |
||||
msgid "http://www.somesite.com" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:44 |
||||
msgid "Go to web site" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:46 |
||||
msgid "dd-mm-yyyy" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:47 templates/part.contact.php:120 |
||||
msgid "Groups" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:49 |
||||
msgid "Separate groups with commas" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:50 |
||||
msgid "Edit groups" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:63 templates/part.contact.php:77 |
||||
msgid "Preferred" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:64 |
||||
msgid "Please specify a valid email address." |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:64 |
||||
msgid "Enter email address" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:68 |
||||
msgid "Mail to address" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:69 |
||||
msgid "Delete email address" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:78 |
||||
msgid "Enter phone number" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:82 |
||||
msgid "Delete phone number" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:92 |
||||
msgid "View on map" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:92 |
||||
msgid "Edit address details" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:103 |
||||
msgid "Add notes here." |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:110 |
||||
msgid "Add field" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:115 |
||||
msgid "Phone" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:118 |
||||
msgid "Note" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:123 |
||||
msgid "Download contact" |
||||
msgstr "" |
||||
|
||||
#: templates/part.contact.php:124 |
||||
msgid "Delete contact" |
||||
msgstr "" |
||||
|
||||
#: templates/part.cropphoto.php:65 |
||||
msgid "The temporary image has been removed from cache." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:6 |
||||
msgid "Edit address" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:10 |
||||
msgid "Type" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:18 |
||||
#: templates/part.edit_address_dialog.php:21 |
||||
msgid "PO Box" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:24 |
||||
msgid "Street address" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:27 |
||||
msgid "Street and number" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:30 |
||||
msgid "Extended" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:33 |
||||
msgid "Apartment number etc." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:36 |
||||
#: templates/part.edit_address_dialog.php:39 |
||||
msgid "City" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:42 |
||||
msgid "Region" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:45 |
||||
msgid "E.g. state or province" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:48 |
||||
msgid "Zipcode" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:51 |
||||
msgid "Postal code" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_address_dialog.php:54 |
||||
#: templates/part.edit_address_dialog.php:57 |
||||
msgid "Country" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:16 |
||||
msgid "Addressbook" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:23 |
||||
msgid "Hon. prefixes" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:27 |
||||
msgid "Miss" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:28 |
||||
msgid "Ms" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:29 |
||||
msgid "Mr" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:30 |
||||
msgid "Sir" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:31 |
||||
msgid "Mrs" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:32 |
||||
msgid "Dr" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:35 |
||||
msgid "Given name" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:37 |
||||
msgid "Additional names" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:39 |
||||
msgid "Family name" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:41 |
||||
msgid "Hon. suffixes" |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:45 |
||||
msgid "J.D." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:46 |
||||
msgid "M.D." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:47 |
||||
msgid "D.O." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:48 |
||||
msgid "D.C." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:49 |
||||
msgid "Ph.D." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:50 |
||||
msgid "Esq." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:51 |
||||
msgid "Jr." |
||||
msgstr "" |
||||
|
||||
#: templates/part.edit_name_dialog.php:52 |
||||
msgid "Sn." |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:1 |
||||
msgid "Import a contacts file" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:6 |
||||
msgid "Please choose the addressbook" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:10 |
||||
msgid "create a new addressbook" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:15 |
||||
msgid "Name of new addressbook" |
||||
msgstr "" |
||||
|
||||
#: templates/part.import.php:20 |
||||
msgid "Importing contacts" |
||||
msgstr "" |
||||
|
||||
#: templates/part.no_contacts.php:3 |
||||
msgid "You have no contacts in your addressbook." |
||||
msgstr "" |
||||
|
||||
#: templates/part.no_contacts.php:5 |
||||
msgid "Add contact" |
||||
msgstr "" |
||||
|
||||
#: templates/part.no_contacts.php:6 |
||||
msgid "Configure addressbooks" |
||||
msgstr "" |
||||
|
||||
#: templates/part.selectaddressbook.php:1 |
||||
msgid "Select Address Books" |
||||
msgstr "" |
||||
|
||||
#: templates/part.selectaddressbook.php:20 |
||||
msgid "Enter name" |
||||
msgstr "" |
||||
|
||||
#: templates/part.selectaddressbook.php:22 |
||||
msgid "Enter description" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:3 |
||||
msgid "CardDAV syncing addresses" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:3 |
||||
msgid "more info" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:5 |
||||
msgid "Primary address (Kontact et al)" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:7 |
||||
msgid "iOS/OS X" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:20 |
||||
msgid "Show CardDav link" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:23 |
||||
msgid "Show read-only VCF link" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:26 |
||||
msgid "Download" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:30 |
||||
msgid "Edit" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:40 |
||||
msgid "New Address Book" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:41 |
||||
msgid "Name" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:42 |
||||
msgid "Description" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:43 |
||||
msgid "Save" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:44 |
||||
msgid "Cancel" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:49 |
||||
msgid "More..." |
||||
msgstr "" |
@ -0,0 +1,268 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2011-07-25 16:05+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 |
||||
msgid "Application name not provided." |
||||
msgstr "" |
||||
|
||||
#: ajax/vcategories/add.php:29 |
||||
msgid "No category to add?" |
||||
msgstr "" |
||||
|
||||
#: ajax/vcategories/add.php:36 |
||||
msgid "This category already exists: " |
||||
msgstr "" |
||||
|
||||
#: js/jquery-ui-1.8.16.custom.min.js:511 |
||||
msgid "ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:185 templates/layout.user.php:64 templates/layout.user.php:65 |
||||
msgid "Settings" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:572 |
||||
msgid "January" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:572 |
||||
msgid "February" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:572 |
||||
msgid "March" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:572 |
||||
msgid "April" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:572 |
||||
msgid "May" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:572 |
||||
msgid "June" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:573 |
||||
msgid "July" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:573 |
||||
msgid "August" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:573 |
||||
msgid "September" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:573 |
||||
msgid "October" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:573 |
||||
msgid "November" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:573 |
||||
msgid "December" |
||||
msgstr "" |
||||
|
||||
#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 |
||||
msgid "Cancel" |
||||
msgstr "" |
||||
|
||||
#: js/oc-dialogs.js:159 |
||||
msgid "No" |
||||
msgstr "" |
||||
|
||||
#: js/oc-dialogs.js:160 |
||||
msgid "Yes" |
||||
msgstr "" |
||||
|
||||
#: js/oc-dialogs.js:177 |
||||
msgid "Ok" |
||||
msgstr "" |
||||
|
||||
#: js/oc-vcategories.js:68 |
||||
msgid "No categories selected for deletion." |
||||
msgstr "" |
||||
|
||||
#: js/oc-vcategories.js:68 |
||||
msgid "Error" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/index.php:26 |
||||
msgid "ownCloud password reset" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/email.php:1 |
||||
msgid "Use the following link to reset your password: {link}" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/lostpassword.php:3 |
||||
msgid "You will receive a link to reset your password via Email." |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/lostpassword.php:5 |
||||
msgid "Requested" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/lostpassword.php:8 |
||||
msgid "Login failed!" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:25 |
||||
#: templates/login.php:9 |
||||
msgid "Username" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/lostpassword.php:15 |
||||
msgid "Request reset" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/resetpassword.php:4 |
||||
msgid "Your password was reset" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/resetpassword.php:5 |
||||
msgid "To login page" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/resetpassword.php:8 |
||||
msgid "New password" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/resetpassword.php:11 |
||||
msgid "Reset password" |
||||
msgstr "" |
||||
|
||||
#: strings.php:5 |
||||
msgid "Personal" |
||||
msgstr "" |
||||
|
||||
#: strings.php:6 |
||||
msgid "Users" |
||||
msgstr "" |
||||
|
||||
#: strings.php:7 |
||||
msgid "Apps" |
||||
msgstr "" |
||||
|
||||
#: strings.php:8 |
||||
msgid "Admin" |
||||
msgstr "" |
||||
|
||||
#: strings.php:9 |
||||
msgid "Help" |
||||
msgstr "" |
||||
|
||||
#: templates/403.php:12 |
||||
msgid "Access forbidden" |
||||
msgstr "" |
||||
|
||||
#: templates/404.php:12 |
||||
msgid "Cloud not found" |
||||
msgstr "" |
||||
|
||||
#: templates/edit_categories_dialog.php:4 |
||||
msgid "Edit categories" |
||||
msgstr "" |
||||
|
||||
#: templates/edit_categories_dialog.php:14 |
||||
msgid "Add" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:23 |
||||
msgid "Create an <strong>admin account</strong>" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:29 templates/login.php:13 |
||||
msgid "Password" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:35 |
||||
msgid "Advanced" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:37 |
||||
msgid "Data folder" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:44 |
||||
msgid "Configure the database" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:49 templates/installation.php:60 |
||||
#: templates/installation.php:70 |
||||
msgid "will be used" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:82 |
||||
msgid "Database user" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:86 |
||||
msgid "Database password" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:90 |
||||
msgid "Database name" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:96 |
||||
msgid "Database host" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:101 |
||||
msgid "Finish setup" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:42 |
||||
msgid "web services under your control" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.user.php:49 |
||||
msgid "Log out" |
||||
msgstr "" |
||||
|
||||
#: templates/login.php:6 |
||||
msgid "Lost your password?" |
||||
msgstr "" |
||||
|
||||
#: templates/login.php:17 |
||||
msgid "remember" |
||||
msgstr "" |
||||
|
||||
#: templates/login.php:18 |
||||
msgid "Log in" |
||||
msgstr "" |
||||
|
||||
#: templates/logout.php:1 |
||||
msgid "You are logged out." |
||||
msgstr "" |
||||
|
||||
#: templates/part.pagenavi.php:3 |
||||
msgid "prev" |
||||
msgstr "" |
||||
|
||||
#: templates/part.pagenavi.php:20 |
||||
msgid "next" |
||||
msgstr "" |
@ -0,0 +1,222 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2011-08-13 02:19+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: ajax/upload.php:20 |
||||
msgid "There is no error, the file uploaded with success" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:21 |
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:22 |
||||
msgid "" |
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " |
||||
"the HTML form" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:23 |
||||
msgid "The uploaded file was only partially uploaded" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:24 |
||||
msgid "No file was uploaded" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:25 |
||||
msgid "Missing a temporary folder" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:26 |
||||
msgid "Failed to write to disk" |
||||
msgstr "" |
||||
|
||||
#: appinfo/app.php:6 |
||||
msgid "Files" |
||||
msgstr "" |
||||
|
||||
#: js/fileactions.js:95 |
||||
msgid "Unshare" |
||||
msgstr "" |
||||
|
||||
#: js/fileactions.js:97 templates/index.php:56 |
||||
msgid "Delete" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:141 |
||||
msgid "already exists" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:141 |
||||
msgid "replace" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:141 |
||||
msgid "cancel" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:195 |
||||
msgid "replaced" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:195 |
||||
msgid "with" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:195 js/filelist.js:256 |
||||
msgid "undo" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:256 |
||||
msgid "deleted" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:170 |
||||
msgid "generating ZIP-file, it may take some time." |
||||
msgstr "" |
||||
|
||||
#: js/files.js:199 |
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:199 |
||||
msgid "Upload Error" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:227 js/files.js:318 js/files.js:347 |
||||
msgid "Pending" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:332 |
||||
msgid "Upload cancelled." |
||||
msgstr "" |
||||
|
||||
#: js/files.js:456 |
||||
msgid "Invalid name, '/' is not allowed." |
||||
msgstr "" |
||||
|
||||
#: js/files.js:694 templates/index.php:55 |
||||
msgid "Size" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:695 templates/index.php:56 |
||||
msgid "Modified" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:722 |
||||
msgid "folder" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:724 |
||||
msgid "folders" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:732 |
||||
msgid "file" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:734 |
||||
msgid "files" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:5 |
||||
msgid "File handling" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:7 |
||||
msgid "Maximum upload size" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:7 |
||||
msgid "max. possible: " |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:9 |
||||
msgid "Needed for multi-file and folder downloads." |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:9 |
||||
msgid "Enable ZIP-download" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:11 |
||||
msgid "0 is unlimited" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:12 |
||||
msgid "Maximum input size for ZIP files" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:7 |
||||
msgid "New" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:9 |
||||
msgid "Text file" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:10 |
||||
msgid "Folder" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:11 |
||||
msgid "From url" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:21 |
||||
msgid "Upload" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:27 |
||||
msgid "Cancel upload" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:39 |
||||
msgid "Nothing in here. Upload something!" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:47 |
||||
msgid "Name" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:49 |
||||
msgid "Share" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:51 |
||||
msgid "Download" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:64 |
||||
msgid "Upload too large" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:66 |
||||
msgid "" |
||||
"The files you are trying to upload exceed the maximum size for file uploads " |
||||
"on this server." |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:71 |
||||
msgid "Files are being scanned, please wait." |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:74 |
||||
msgid "Current scanning" |
||||
msgstr "" |
@ -0,0 +1,58 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2012-01-15 13:48+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: appinfo/app.php:39 |
||||
msgid "Pictures" |
||||
msgstr "" |
||||
|
||||
#: js/pictures.js:12 |
||||
msgid "Share gallery" |
||||
msgstr "" |
||||
|
||||
#: js/pictures.js:32 |
||||
msgid "Error: " |
||||
msgstr "" |
||||
|
||||
#: js/pictures.js:32 |
||||
msgid "Internal error" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:27 |
||||
msgid "Slideshow" |
||||
msgstr "" |
||||
|
||||
#: templates/view_album.php:19 |
||||
msgid "Back" |
||||
msgstr "" |
||||
|
||||
#: templates/view_album.php:36 |
||||
msgid "Remove confirmation" |
||||
msgstr "" |
||||
|
||||
#: templates/view_album.php:37 |
||||
msgid "Do you want to remove album" |
||||
msgstr "" |
||||
|
||||
#: templates/view_album.php:40 |
||||
msgid "Change album name" |
||||
msgstr "" |
||||
|
||||
#: templates/view_album.php:43 |
||||
msgid "New album name" |
||||
msgstr "" |
@ -0,0 +1,112 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2012-07-27 22:23+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: app.php:288 |
||||
msgid "Help" |
||||
msgstr "" |
||||
|
||||
#: app.php:295 |
||||
msgid "Personal" |
||||
msgstr "" |
||||
|
||||
#: app.php:300 |
||||
msgid "Settings" |
||||
msgstr "" |
||||
|
||||
#: app.php:305 |
||||
msgid "Users" |
||||
msgstr "" |
||||
|
||||
#: app.php:312 |
||||
msgid "Apps" |
||||
msgstr "" |
||||
|
||||
#: app.php:314 |
||||
msgid "Admin" |
||||
msgstr "" |
||||
|
||||
#: files.php:245 |
||||
msgid "ZIP download is turned off." |
||||
msgstr "" |
||||
|
||||
#: files.php:246 |
||||
msgid "Files need to be downloaded one by one." |
||||
msgstr "" |
||||
|
||||
#: files.php:246 files.php:271 |
||||
msgid "Back to Files" |
||||
msgstr "" |
||||
|
||||
#: files.php:270 |
||||
msgid "Selected files too large to generate zip file." |
||||
msgstr "" |
||||
|
||||
#: json.php:28 |
||||
msgid "Application is not enabled" |
||||
msgstr "" |
||||
|
||||
#: json.php:39 json.php:63 json.php:75 |
||||
msgid "Authentication error" |
||||
msgstr "" |
||||
|
||||
#: json.php:51 |
||||
msgid "Token expired. Please reload page." |
||||
msgstr "" |
||||
|
||||
#: template.php:86 |
||||
msgid "seconds ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:87 |
||||
msgid "1 minute ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:88 |
||||
#, php-format |
||||
msgid "%d minutes ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:91 |
||||
msgid "today" |
||||
msgstr "" |
||||
|
||||
#: template.php:92 |
||||
msgid "yesterday" |
||||
msgstr "" |
||||
|
||||
#: template.php:93 |
||||
#, php-format |
||||
msgid "%d days ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:94 |
||||
msgid "last month" |
||||
msgstr "" |
||||
|
||||
#: template.php:95 |
||||
msgid "months ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:96 |
||||
msgid "last year" |
||||
msgstr "" |
||||
|
||||
#: template.php:97 |
||||
msgid "years ago" |
||||
msgstr "" |
@ -0,0 +1,66 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2011-08-13 02:19+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: appinfo/app.php:45 templates/player.php:8 |
||||
msgid "Music" |
||||
msgstr "" |
||||
|
||||
#: js/music.js:18 |
||||
msgid "Add album to playlist" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:3 templates/player.php:12 |
||||
msgid "Play" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:4 templates/music.php:26 templates/player.php:13 |
||||
msgid "Pause" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:5 |
||||
msgid "Previous" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:6 templates/player.php:14 |
||||
msgid "Next" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:7 |
||||
msgid "Mute" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:8 |
||||
msgid "Unmute" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:25 |
||||
msgid "Rescan Collection" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:37 |
||||
msgid "Artist" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:38 |
||||
msgid "Album" |
||||
msgstr "" |
||||
|
||||
#: templates/music.php:39 |
||||
msgid "Title" |
||||
msgstr "" |
@ -0,0 +1,222 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-08-09 02:02+0200\n" |
||||
"PO-Revision-Date: 2011-07-25 16:05+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: fi\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n" |
||||
|
||||
#: ajax/apps/ocs.php:23 |
||||
msgid "Unable to load list from App Store" |
||||
msgstr "" |
||||
|
||||
#: ajax/lostpassword.php:14 |
||||
msgid "Email saved" |
||||
msgstr "" |
||||
|
||||
#: ajax/lostpassword.php:16 |
||||
msgid "Invalid email" |
||||
msgstr "" |
||||
|
||||
#: ajax/openid.php:16 |
||||
msgid "OpenID Changed" |
||||
msgstr "" |
||||
|
||||
#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 |
||||
msgid "Invalid request" |
||||
msgstr "" |
||||
|
||||
#: ajax/removeuser.php:13 ajax/setquota.php:18 ajax/togglegroups.php:18 |
||||
msgid "Authentication error" |
||||
msgstr "" |
||||
|
||||
#: ajax/setlanguage.php:18 |
||||
msgid "Language changed" |
||||
msgstr "" |
||||
|
||||
#: js/apps.js:18 |
||||
msgid "Error" |
||||
msgstr "" |
||||
|
||||
#: js/apps.js:39 js/apps.js:73 |
||||
msgid "Disable" |
||||
msgstr "" |
||||
|
||||
#: js/apps.js:39 js/apps.js:62 |
||||
msgid "Enable" |
||||
msgstr "" |
||||
|
||||
#: js/personal.js:69 |
||||
msgid "Saving..." |
||||
msgstr "" |
||||
|
||||
#: personal.php:46 personal.php:47 |
||||
msgid "__language_name__" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:14 |
||||
msgid "Security Warning" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:28 |
||||
msgid "Log" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:56 |
||||
msgid "More" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:10 |
||||
msgid "Add your App" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:26 |
||||
msgid "Select an App" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:29 |
||||
msgid "See application page at apps.owncloud.com" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:30 |
||||
msgid "-licensed" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:30 |
||||
msgid "by" |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:8 |
||||
msgid "Documentation" |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:9 |
||||
msgid "Managing Big Files" |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:10 |
||||
msgid "Ask a question" |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:22 |
||||
msgid "Problems connecting to help database." |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:23 |
||||
msgid "Go there manually." |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:31 |
||||
msgid "Answer" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:8 |
||||
msgid "You use" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:8 |
||||
msgid "of the available" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:12 |
||||
msgid "Desktop and Mobile Syncing Clients" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:13 |
||||
msgid "Download" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:19 |
||||
msgid "Your password got changed" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:20 |
||||
msgid "Unable to change your password" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:21 |
||||
msgid "Current password" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:22 |
||||
msgid "New password" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:23 |
||||
msgid "show" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:24 |
||||
msgid "Change password" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:30 |
||||
msgid "Email" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:31 |
||||
msgid "Your email address" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:32 |
||||
msgid "Fill in an email address to enable password recovery" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:38 templates/personal.php:39 |
||||
msgid "Language" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:44 |
||||
msgid "Help translate" |
||||
msgstr "" |
||||
|
||||
#: templates/personal.php:51 |
||||
msgid "use this address to connect to your ownCloud in your file manager" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:21 templates/users.php:76 |
||||
msgid "Name" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:23 templates/users.php:77 |
||||
msgid "Password" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:26 templates/users.php:78 templates/users.php:98 |
||||
msgid "Groups" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:32 |
||||
msgid "Create" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:35 |
||||
msgid "Default Quota" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:55 templates/users.php:138 |
||||
msgid "Other" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:80 templates/users.php:112 |
||||
msgid "SubAdmin" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:82 |
||||
msgid "Quota" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:146 |
||||
msgid "Delete" |
||||
msgstr "" |
@ -1,93 +0,0 @@ |
||||
<?php |
||||
/** |
||||
* ownCloud |
||||
* |
||||
* @author Georg Ehrke |
||||
* @copyright 2012 georg@owncloud.com |
||||
* |
||||
* This library is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE |
||||
* License as published by the Free Software Foundation; either |
||||
* version 3 of the License, or any later version. |
||||
* |
||||
* This library is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU AFFERO GENERAL PUBLIC LICENSE for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public |
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
class OC_Exception extends Exception{ |
||||
|
||||
function __construct($message = null, $code = 0, $file = null, $line = null){ |
||||
parent::__construct($message, $code); |
||||
if(!is_null($file)){ |
||||
$this->file = $file; |
||||
} |
||||
if(!is_null($line)){ |
||||
$this->line = $line; |
||||
} |
||||
$this->writelog(); |
||||
} |
||||
|
||||
private function writelog(){ |
||||
@OC_Log::write(OC_App::getCurrentApp(), $this->getMessage() . '-' . $this->getFile() . '-' . $this->getLine(), OC_Log::FATAL); |
||||
} |
||||
|
||||
private function generatesysinfo(){ |
||||
return array('phpversion' => PHP_VERSION, |
||||
'os' => php_uname('s'), |
||||
'osrelease' => php_uname('r'), |
||||
'osarchitecture' => php_uname('m'), |
||||
'phpserverinterface' => php_sapi_name(), |
||||
'serverprotocol' => $_SERVER['SERVER_PROTOCOL'], |
||||
'requestmethod' => $_SERVER['REQUEST_METHOD'], |
||||
'https' => ($_SERVER['HTTPS']==''?'false':'true'), |
||||
'database'=>(@OC_Config::getValue('dbtype')!=''?@OC_Config::getValue('dbtype'):'') |
||||
); |
||||
} |
||||
|
||||
function __toString(){ |
||||
$tmpl = new OC_Template('core', 'exception', 'guest'); |
||||
$tmpl->assign('showsysinfo', true); |
||||
$tmpl->assign('message', $this->getMessage()); |
||||
$tmpl->assign('code', $this->getCode()); |
||||
$tmpl->assign('file', $this->getFile()); |
||||
$tmpl->assign('line', $this->getLine()); |
||||
$tmpl->assign('sysinfo', $this->generatesysinfo()); |
||||
$tmpl->printPage(); |
||||
} |
||||
} |
||||
|
||||
function oc_exceptionhandler($exception){ |
||||
switch($exception->getCode()){ |
||||
case E_NOTICE: |
||||
case E_DEPRECATED: |
||||
case E_USER_NOTICE: |
||||
case E_USER_DEPRECATED: |
||||
break; |
||||
default: |
||||
throw new OC_Exception($exception->getMessage(), $exception->getCode(), $exception->getFile(), $exception->getLine()); |
||||
break; |
||||
} |
||||
return true; |
||||
} |
||||
|
||||
function oc_errorhandler($errno , $errstr , $errfile , $errline){ |
||||
switch($errno){ |
||||
case E_NOTICE: |
||||
case E_DEPRECATED: |
||||
case E_USER_NOTICE: |
||||
case E_USER_DEPRECATED: |
||||
break; |
||||
default: |
||||
throw new OC_Exception($errstr, $errno, $errfile, $errline); |
||||
break; |
||||
} |
||||
return true; |
||||
} |
||||
set_exception_handler('oc_exceptionhandler'); |
||||
set_error_handler('oc_errorhandler'); |
||||
error_reporting(E_ERROR | E_WARNING | E_PARSE); |
Loading…
Reference in new issue