commit
98f42d314c
@ -1,5 +1,6 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Encryption" => "Шифровање", |
||||
"Exclude the following file types from encryption" => "Не шифруј следеће типове датотека", |
||||
"None" => "Ништа", |
||||
"Enable Encryption" => "Омогући шифровање" |
||||
); |
||||
|
||||
@ -0,0 +1,9 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Password" => "Şifre", |
||||
"Submit" => "Gönder", |
||||
"%s shared the folder %s with you" => "%s sizinle paylaşılan %s klasör", |
||||
"%s shared the file %s with you" => "%s sizinle paylaşılan %s klasör", |
||||
"Download" => "İndir", |
||||
"No preview available for" => "Kullanılabilir önizleme yok", |
||||
"web services under your control" => "Bilgileriniz güvenli ve şifreli" |
||||
); |
||||
@ -0,0 +1,3 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"WebDAV URL: http://" => "WebDAV URL: http://" |
||||
); |
||||
@ -0,0 +1,164 @@ |
||||
/** |
||||
* @license In-Field Label jQuery Plugin |
||||
* http://fuelyourcoding.com/scripts/infield.html
|
||||
* |
||||
* Copyright (c) 2009-2010 Doug Neiner |
||||
* Dual licensed under the MIT and GPL licenses. |
||||
* Uses the same license as jQuery, see: |
||||
* http://docs.jquery.com/License
|
||||
* |
||||
* @version 0.1.6 |
||||
*/ |
||||
(function ($) { |
||||
|
||||
$.InFieldLabels = function (label, field, options) { |
||||
// To avoid scope issues, use 'base' instead of 'this'
|
||||
// to reference this class from internal events and functions.
|
||||
var base = this; |
||||
|
||||
// Access to jQuery and DOM versions of each element
|
||||
base.$label = $(label); |
||||
base.label = label; |
||||
|
||||
base.$field = $(field); |
||||
base.field = field; |
||||
|
||||
base.$label.data("InFieldLabels", base); |
||||
base.showing = true; |
||||
|
||||
base.init = function () { |
||||
// Merge supplied options with default options
|
||||
base.options = $.extend({}, $.InFieldLabels.defaultOptions, options); |
||||
|
||||
// Check if the field is already filled in
|
||||
// add a short delay to handle autocomplete
|
||||
setTimeout(function() { |
||||
if (base.$field.val() !== "") { |
||||
base.$label.hide(); |
||||
base.showing = false; |
||||
} |
||||
}, 200); |
||||
|
||||
base.$field.focus(function () { |
||||
base.fadeOnFocus(); |
||||
}).blur(function () { |
||||
base.checkForEmpty(true); |
||||
}).bind('keydown.infieldlabel', function (e) { |
||||
// Use of a namespace (.infieldlabel) allows us to
|
||||
// unbind just this method later
|
||||
base.hideOnChange(e); |
||||
}).bind('paste', function (e) { |
||||
// Since you can not paste an empty string we can assume
|
||||
// that the fieldis not empty and the label can be cleared.
|
||||
base.setOpacity(0.0); |
||||
}).change(function (e) { |
||||
base.checkForEmpty(); |
||||
}).bind('onPropertyChange', function () { |
||||
base.checkForEmpty(); |
||||
}).bind('keyup.infieldlabel', function () { |
||||
base.checkForEmpty() |
||||
}); |
||||
setInterval(function(){ |
||||
if(base.$field.val() != ""){ |
||||
base.$label.hide(); |
||||
base.showing = false; |
||||
}; |
||||
},100); |
||||
}; |
||||
|
||||
// If the label is currently showing
|
||||
// then fade it down to the amount
|
||||
// specified in the settings
|
||||
base.fadeOnFocus = function () { |
||||
if (base.showing) { |
||||
base.setOpacity(base.options.fadeOpacity); |
||||
} |
||||
}; |
||||
|
||||
base.setOpacity = function (opacity) { |
||||
base.$label.stop().animate({ opacity: opacity }, base.options.fadeDuration); |
||||
base.showing = (opacity > 0.0); |
||||
}; |
||||
|
||||
// Checks for empty as a fail safe
|
||||
// set blur to true when passing from
|
||||
// the blur event
|
||||
base.checkForEmpty = function (blur) { |
||||
if (base.$field.val() === "") { |
||||
base.prepForShow(); |
||||
base.setOpacity(blur ? 1.0 : base.options.fadeOpacity); |
||||
} else { |
||||
base.setOpacity(0.0); |
||||
} |
||||
}; |
||||
|
||||
base.prepForShow = function (e) { |
||||
if (!base.showing) { |
||||
// Prepare for a animate in...
|
||||
base.$label.css({opacity: 0.0}).show(); |
||||
|
||||
// Reattach the keydown event
|
||||
base.$field.bind('keydown.infieldlabel', function (e) { |
||||
base.hideOnChange(e); |
||||
}); |
||||
} |
||||
}; |
||||
|
||||
base.hideOnChange = function (e) { |
||||
if ( |
||||
(e.keyCode === 16) || // Skip Shift
|
||||
(e.keyCode === 9) // Skip Tab
|
||||
) { |
||||
return;
|
||||
} |
||||
|
||||
if (base.showing) { |
||||
base.$label.hide(); |
||||
base.showing = false; |
||||
} |
||||
|
||||
// Remove keydown event to save on CPU processing
|
||||
base.$field.unbind('keydown.infieldlabel'); |
||||
}; |
||||
|
||||
// Run the initialization method
|
||||
base.init(); |
||||
}; |
||||
|
||||
$.InFieldLabels.defaultOptions = { |
||||
fadeOpacity: 0.5, // Once a field has focus, how transparent should the label be
|
||||
fadeDuration: 300 // How long should it take to animate from 1.0 opacity to the fadeOpacity
|
||||
}; |
||||
|
||||
|
||||
$.fn.inFieldLabels = function (options) { |
||||
return this.each(function () { |
||||
// Find input or textarea based on for= attribute
|
||||
// The for attribute on the label must contain the ID
|
||||
// of the input or textarea element
|
||||
var for_attr = $(this).attr('for'), $field; |
||||
if (!for_attr) { |
||||
return; // Nothing to attach, since the for field wasn't used
|
||||
} |
||||
|
||||
// Find the referenced input or textarea element
|
||||
$field = $( |
||||
"input#" + for_attr + "[type='text']," +
|
||||
"input#" + for_attr + "[type='search']," +
|
||||
"input#" + for_attr + "[type='tel']," +
|
||||
"input#" + for_attr + "[type='url']," +
|
||||
"input#" + for_attr + "[type='email']," +
|
||||
"input#" + for_attr + "[type='password']," +
|
||||
"textarea#" + for_attr |
||||
); |
||||
|
||||
if ($field.length === 0) { |
||||
return; // Again, nothing to attach
|
||||
}
|
||||
|
||||
// Only create object for input[text], input[password], or textarea
|
||||
(new $.InFieldLabels(this, $field[0], options)); |
||||
}); |
||||
}; |
||||
|
||||
}(jQuery)); |
||||
@ -1,12 +0,0 @@ |
||||
/* |
||||
In-Field Label jQuery Plugin |
||||
http://fuelyourcoding.com/scripts/infield.html
|
||||
|
||||
Copyright (c) 2009-2010 Doug Neiner |
||||
Dual licensed under the MIT and GPL licenses. |
||||
Uses the same license as jQuery, see: |
||||
http://docs.jquery.com/License
|
||||
|
||||
@version 0.1.5 |
||||
*/ |
||||
(function($){$.InFieldLabels=function(label,field,options){var base=this;base.$label=$(label);base.label=label;base.$field=$(field);base.field=field;base.$label.data("InFieldLabels",base);base.showing=true;base.init=function(){base.options=$.extend({},$.InFieldLabels.defaultOptions,options);setTimeout(function(){if(base.$field.val()!==""){base.$label.hide();base.showing=false}},200);base.$field.focus(function(){base.fadeOnFocus()}).blur(function(){base.checkForEmpty(true)}).bind('keydown.infieldlabel',function(e){base.hideOnChange(e)}).bind('paste',function(e){base.setOpacity(0.0)}).change(function(e){base.checkForEmpty()}).bind('onPropertyChange',function(){base.checkForEmpty()}).bind('keyup.infieldlabel',function(){base.checkForEmpty()})};base.fadeOnFocus=function(){if(base.showing){base.setOpacity(base.options.fadeOpacity)}};base.setOpacity=function(opacity){base.$label.stop().animate({opacity:opacity},base.options.fadeDuration);base.showing=(opacity>0.0)};base.checkForEmpty=function(blur){if(base.$field.val()===""){base.prepForShow();base.setOpacity(blur?1.0:base.options.fadeOpacity)}else{base.setOpacity(0.0)}};base.prepForShow=function(e){if(!base.showing){base.$label.css({opacity:0.0}).show();base.$field.bind('keydown.infieldlabel',function(e){base.hideOnChange(e)})}};base.hideOnChange=function(e){if((e.keyCode===16)||(e.keyCode===9)){return}if(base.showing){base.$label.hide();base.showing=false}base.$field.unbind('keydown.infieldlabel')};base.init()};$.InFieldLabels.defaultOptions={fadeOpacity:0.5,fadeDuration:300};$.fn.inFieldLabels=function(options){return this.each(function(){var for_attr=$(this).attr('for'),$field;if(!for_attr){return}$field=$("input#"+for_attr+"[type='text'],"+"input#"+for_attr+"[type='search'],"+"input#"+for_attr+"[type='tel'],"+"input#"+for_attr+"[type='url'],"+"input#"+for_attr+"[type='email'],"+"input#"+for_attr+"[type='password'],"+"textarea#"+for_attr);if($field.length===0){return}(new $.InFieldLabels(this,$field[0],options))})}}(jQuery)); |
||||
@ -0,0 +1,36 @@ |
||||
<?php $TRANSLATIONS = array( |
||||
"Category type not provided." => "Flokkur ekki gefin", |
||||
"seconds ago" => "sek síðan", |
||||
"1 minute ago" => "1 min síðan", |
||||
"{minutes} minutes ago" => "{minutes} min síðan", |
||||
"today" => "í dag", |
||||
"yesterday" => "í gær", |
||||
"{days} days ago" => "{days} dagar síðan", |
||||
"last month" => "síðasta mánuði", |
||||
"months ago" => "mánuðir síðan", |
||||
"last year" => "síðasta ári", |
||||
"years ago" => "árum síðan", |
||||
"Password" => "Lykilorð", |
||||
"Username" => "Notendanafn", |
||||
"Personal" => "Persónustillingar", |
||||
"Admin" => "Vefstjórn", |
||||
"Help" => "Help", |
||||
"Cloud not found" => "Skýið finnst eigi", |
||||
"Edit categories" => "Breyta flokkum", |
||||
"Add" => "Bæta", |
||||
"Create an <strong>admin account</strong>" => "Útbúa <strong>vefstjóra aðgang</strong>", |
||||
"January" => "Janúar", |
||||
"February" => "Febrúar", |
||||
"March" => "Mars", |
||||
"April" => "Apríl", |
||||
"May" => "Maí", |
||||
"June" => "Júní", |
||||
"July" => "Júlí", |
||||
"August" => "Ágúst", |
||||
"September" => "September", |
||||
"October" => "Október", |
||||
"Log out" => "Útskrá", |
||||
"You are logged out." => "Þú ert útskráð(ur).", |
||||
"prev" => "fyrra", |
||||
"next" => "næsta" |
||||
); |
||||
@ -0,0 +1,540 @@ |
||||
# SOME DESCRIPTIVE TITLE. |
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER |
||||
# This file is distributed under the same license as the PACKAGE package. |
||||
# |
||||
# Translators: |
||||
# <kaztraz@gmail.com>, 2012. |
||||
msgid "" |
||||
msgstr "" |
||||
"Project-Id-Version: ownCloud\n" |
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" |
||||
"POT-Creation-Date: 2012-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2012-12-05 14:23+0000\n" |
||||
"Last-Translator: kaztraz <kaztraz@gmail.com>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 |
||||
msgid "Category type not provided." |
||||
msgstr "Flokkur ekki gefin" |
||||
|
||||
#: ajax/vcategories/add.php:30 |
||||
msgid "No category to add?" |
||||
msgstr "" |
||||
|
||||
#: ajax/vcategories/add.php:37 |
||||
msgid "This category already exists: " |
||||
msgstr "" |
||||
|
||||
#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 |
||||
#: ajax/vcategories/favorites.php:24 |
||||
#: ajax/vcategories/removeFromFavorites.php:26 |
||||
msgid "Object type not provided." |
||||
msgstr "" |
||||
|
||||
#: ajax/vcategories/addToFavorites.php:30 |
||||
#: ajax/vcategories/removeFromFavorites.php:30 |
||||
#, php-format |
||||
msgid "%s ID not provided." |
||||
msgstr "" |
||||
|
||||
#: ajax/vcategories/addToFavorites.php:35 |
||||
#, php-format |
||||
msgid "Error adding %s to favorites." |
||||
msgstr "" |
||||
|
||||
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 |
||||
msgid "No categories selected for deletion." |
||||
msgstr "" |
||||
|
||||
#: ajax/vcategories/removeFromFavorites.php:35 |
||||
#, php-format |
||||
msgid "Error removing %s from favorites." |
||||
msgstr "" |
||||
|
||||
#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 |
||||
msgid "Settings" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:704 |
||||
msgid "seconds ago" |
||||
msgstr "sek síðan" |
||||
|
||||
#: js/js.js:705 |
||||
msgid "1 minute ago" |
||||
msgstr "1 min síðan" |
||||
|
||||
#: js/js.js:706 |
||||
msgid "{minutes} minutes ago" |
||||
msgstr "{minutes} min síðan" |
||||
|
||||
#: js/js.js:707 |
||||
msgid "1 hour ago" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:708 |
||||
msgid "{hours} hours ago" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:709 |
||||
msgid "today" |
||||
msgstr "í dag" |
||||
|
||||
#: js/js.js:710 |
||||
msgid "yesterday" |
||||
msgstr "í gær" |
||||
|
||||
#: js/js.js:711 |
||||
msgid "{days} days ago" |
||||
msgstr "{days} dagar síðan" |
||||
|
||||
#: js/js.js:712 |
||||
msgid "last month" |
||||
msgstr "síðasta mánuði" |
||||
|
||||
#: js/js.js:713 |
||||
msgid "{months} months ago" |
||||
msgstr "" |
||||
|
||||
#: js/js.js:714 |
||||
msgid "months ago" |
||||
msgstr "mánuðir síðan" |
||||
|
||||
#: js/js.js:715 |
||||
msgid "last year" |
||||
msgstr "síðasta ári" |
||||
|
||||
#: js/js.js:716 |
||||
msgid "years ago" |
||||
msgstr "árum síðan" |
||||
|
||||
#: js/oc-dialogs.js:126 |
||||
msgid "Choose" |
||||
msgstr "" |
||||
|
||||
#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 |
||||
msgid "Cancel" |
||||
msgstr "" |
||||
|
||||
#: js/oc-dialogs.js:162 |
||||
msgid "No" |
||||
msgstr "" |
||||
|
||||
#: js/oc-dialogs.js:163 |
||||
msgid "Yes" |
||||
msgstr "" |
||||
|
||||
#: js/oc-dialogs.js:180 |
||||
msgid "Ok" |
||||
msgstr "" |
||||
|
||||
#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 |
||||
#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 |
||||
msgid "The object type is not specified." |
||||
msgstr "" |
||||
|
||||
#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 |
||||
#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:533 |
||||
#: js/share.js:545 |
||||
msgid "Error" |
||||
msgstr "" |
||||
|
||||
#: js/oc-vcategories.js:179 |
||||
msgid "The app name is not specified." |
||||
msgstr "" |
||||
|
||||
#: js/oc-vcategories.js:194 |
||||
msgid "The required file {file} is not installed!" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:124 |
||||
msgid "Error while sharing" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:135 |
||||
msgid "Error while unsharing" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:142 |
||||
msgid "Error while changing permissions" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:151 |
||||
msgid "Shared with you and the group {group} by {owner}" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:153 |
||||
msgid "Shared with you by {owner}" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:158 |
||||
msgid "Share with" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:163 |
||||
msgid "Share with link" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:164 |
||||
msgid "Password protect" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:168 templates/installation.php:42 templates/login.php:24 |
||||
#: templates/verify.php:13 |
||||
msgid "Password" |
||||
msgstr "Lykilorð" |
||||
|
||||
#: js/share.js:173 |
||||
msgid "Set expiration date" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:174 |
||||
msgid "Expiration date" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:206 |
||||
msgid "Share via email:" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:208 |
||||
msgid "No people found" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:235 |
||||
msgid "Resharing is not allowed" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:271 |
||||
msgid "Shared in {item} with {user}" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:292 |
||||
msgid "Unshare" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:304 |
||||
msgid "can edit" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:306 |
||||
msgid "access control" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:309 |
||||
msgid "create" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:312 |
||||
msgid "update" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:315 |
||||
msgid "delete" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:318 |
||||
msgid "share" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:349 js/share.js:520 js/share.js:522 |
||||
msgid "Password protected" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:533 |
||||
msgid "Error unsetting expiration date" |
||||
msgstr "" |
||||
|
||||
#: js/share.js:545 |
||||
msgid "Error setting expiration date" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/controller.php:47 |
||||
msgid "ownCloud password reset" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/email.php:2 |
||||
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 "Reset email send." |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/lostpassword.php:8 |
||||
msgid "Request failed!" |
||||
msgstr "" |
||||
|
||||
#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 |
||||
#: templates/login.php:20 |
||||
msgid "Username" |
||||
msgstr "Notendanafn" |
||||
|
||||
#: lostpassword/templates/lostpassword.php:14 |
||||
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 "Persónustillingar" |
||||
|
||||
#: strings.php:6 |
||||
msgid "Users" |
||||
msgstr "" |
||||
|
||||
#: strings.php:7 |
||||
msgid "Apps" |
||||
msgstr "" |
||||
|
||||
#: strings.php:8 |
||||
msgid "Admin" |
||||
msgstr "Vefstjórn" |
||||
|
||||
#: strings.php:9 |
||||
msgid "Help" |
||||
msgstr "Help" |
||||
|
||||
#: templates/403.php:12 |
||||
msgid "Access forbidden" |
||||
msgstr "" |
||||
|
||||
#: templates/404.php:12 |
||||
msgid "Cloud not found" |
||||
msgstr "Skýið finnst eigi" |
||||
|
||||
#: templates/edit_categories_dialog.php:4 |
||||
msgid "Edit categories" |
||||
msgstr "Breyta flokkum" |
||||
|
||||
#: templates/edit_categories_dialog.php:16 |
||||
msgid "Add" |
||||
msgstr "Bæta" |
||||
|
||||
#: templates/installation.php:23 templates/installation.php:31 |
||||
msgid "Security Warning" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:24 |
||||
msgid "" |
||||
"No secure random number generator is available, please enable the PHP " |
||||
"OpenSSL extension." |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:26 |
||||
msgid "" |
||||
"Without a secure random number generator an attacker may be able to predict " |
||||
"password reset tokens and take over your account." |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:32 |
||||
msgid "" |
||||
"Your data directory and your files are probably accessible from the " |
||||
"internet. The .htaccess file that ownCloud provides is not working. We " |
||||
"strongly suggest that you configure your webserver in a way that the data " |
||||
"directory is no longer accessible or you move the data directory outside the" |
||||
" webserver document root." |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:36 |
||||
msgid "Create an <strong>admin account</strong>" |
||||
msgstr "Útbúa <strong>vefstjóra aðgang</strong>" |
||||
|
||||
#: templates/installation.php:48 |
||||
msgid "Advanced" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:50 |
||||
msgid "Data folder" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:57 |
||||
msgid "Configure the database" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:62 templates/installation.php:73 |
||||
#: templates/installation.php:83 templates/installation.php:93 |
||||
msgid "will be used" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:105 |
||||
msgid "Database user" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:109 |
||||
msgid "Database password" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:113 |
||||
msgid "Database name" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:121 |
||||
msgid "Database tablespace" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:127 |
||||
msgid "Database host" |
||||
msgstr "" |
||||
|
||||
#: templates/installation.php:132 |
||||
msgid "Finish setup" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17 |
||||
msgid "Sunday" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17 |
||||
msgid "Monday" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17 |
||||
msgid "Tuesday" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17 |
||||
msgid "Wednesday" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17 |
||||
msgid "Thursday" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17 |
||||
msgid "Friday" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:16 templates/layout.user.php:17 |
||||
msgid "Saturday" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "January" |
||||
msgstr "Janúar" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "February" |
||||
msgstr "Febrúar" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "March" |
||||
msgstr "Mars" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "April" |
||||
msgstr "Apríl" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "May" |
||||
msgstr "Maí" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "June" |
||||
msgstr "Júní" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "July" |
||||
msgstr "Júlí" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "August" |
||||
msgstr "Ágúst" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "September" |
||||
msgstr "September" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "October" |
||||
msgstr "Október" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "November" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:17 templates/layout.user.php:18 |
||||
msgid "December" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.guest.php:42 |
||||
msgid "web services under your control" |
||||
msgstr "" |
||||
|
||||
#: templates/layout.user.php:45 |
||||
msgid "Log out" |
||||
msgstr "Útskrá" |
||||
|
||||
#: templates/login.php:8 |
||||
msgid "Automatic logon rejected!" |
||||
msgstr "" |
||||
|
||||
#: templates/login.php:9 |
||||
msgid "" |
||||
"If you did not change your password recently, your account may be " |
||||
"compromised!" |
||||
msgstr "" |
||||
|
||||
#: templates/login.php:10 |
||||
msgid "Please change your password to secure your account again." |
||||
msgstr "" |
||||
|
||||
#: templates/login.php:15 |
||||
msgid "Lost your password?" |
||||
msgstr "" |
||||
|
||||
#: templates/login.php:27 |
||||
msgid "remember" |
||||
msgstr "" |
||||
|
||||
#: templates/login.php:28 |
||||
msgid "Log in" |
||||
msgstr "" |
||||
|
||||
#: templates/logout.php:1 |
||||
msgid "You are logged out." |
||||
msgstr "Þú ert útskráð(ur)." |
||||
|
||||
#: templates/part.pagenavi.php:3 |
||||
msgid "prev" |
||||
msgstr "fyrra" |
||||
|
||||
#: templates/part.pagenavi.php:20 |
||||
msgid "next" |
||||
msgstr "næsta" |
||||
|
||||
#: templates/verify.php:5 |
||||
msgid "Security Warning!" |
||||
msgstr "" |
||||
|
||||
#: templates/verify.php:6 |
||||
msgid "" |
||||
"Please verify your password. <br/>For security reasons you may be " |
||||
"occasionally asked to enter your password again." |
||||
msgstr "" |
||||
|
||||
#: templates/verify.php:16 |
||||
msgid "Verify" |
||||
msgstr "" |
||||
@ -0,0 +1,266 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2011-08-13 02:19+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\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:23 |
||||
msgid "" |
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " |
||||
"the HTML form" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:25 |
||||
msgid "The uploaded file was only partially uploaded" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:26 |
||||
msgid "No file was uploaded" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:27 |
||||
msgid "Missing a temporary folder" |
||||
msgstr "" |
||||
|
||||
#: ajax/upload.php:28 |
||||
msgid "Failed to write to disk" |
||||
msgstr "" |
||||
|
||||
#: appinfo/app.php:10 |
||||
msgid "Files" |
||||
msgstr "" |
||||
|
||||
#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 |
||||
msgid "Unshare" |
||||
msgstr "" |
||||
|
||||
#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 |
||||
msgid "Delete" |
||||
msgstr "" |
||||
|
||||
#: js/fileactions.js:181 |
||||
msgid "Rename" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203 |
||||
msgid "{new_name} already exists" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203 |
||||
msgid "replace" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:201 |
||||
msgid "suggest name" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:201 js/filelist.js:203 |
||||
msgid "cancel" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:250 |
||||
msgid "replaced {new_name}" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 |
||||
msgid "undo" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:252 |
||||
msgid "replaced {new_name} with {old_name}" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:284 |
||||
msgid "unshared {files}" |
||||
msgstr "" |
||||
|
||||
#: js/filelist.js:286 |
||||
msgid "deleted {files}" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:33 |
||||
msgid "" |
||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " |
||||
"allowed." |
||||
msgstr "" |
||||
|
||||
#: js/files.js:183 |
||||
msgid "generating ZIP-file, it may take some time." |
||||
msgstr "" |
||||
|
||||
#: js/files.js:218 |
||||
msgid "Unable to upload your file as it is a directory or has 0 bytes" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:218 |
||||
msgid "Upload Error" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:235 |
||||
msgid "Close" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:254 js/files.js:368 js/files.js:398 |
||||
msgid "Pending" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:274 |
||||
msgid "1 file uploading" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:277 js/files.js:331 js/files.js:346 |
||||
msgid "{count} files uploading" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:349 js/files.js:382 |
||||
msgid "Upload cancelled." |
||||
msgstr "" |
||||
|
||||
#: js/files.js:451 |
||||
msgid "" |
||||
"File upload is in progress. Leaving the page now will cancel the upload." |
||||
msgstr "" |
||||
|
||||
#: js/files.js:523 |
||||
msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:704 |
||||
msgid "{count} files scanned" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:712 |
||||
msgid "error while scanning" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:785 templates/index.php:65 |
||||
msgid "Name" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:786 templates/index.php:76 |
||||
msgid "Size" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:787 templates/index.php:78 |
||||
msgid "Modified" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:814 |
||||
msgid "1 folder" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:816 |
||||
msgid "{count} folders" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:824 |
||||
msgid "1 file" |
||||
msgstr "" |
||||
|
||||
#: js/files.js:826 |
||||
msgid "{count} files" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:5 |
||||
msgid "File handling" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:7 |
||||
msgid "Maximum upload size" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:9 |
||||
msgid "max. possible: " |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:12 |
||||
msgid "Needed for multi-file and folder downloads." |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:14 |
||||
msgid "Enable ZIP-download" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:17 |
||||
msgid "0 is unlimited" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:19 |
||||
msgid "Maximum input size for ZIP files" |
||||
msgstr "" |
||||
|
||||
#: templates/admin.php:23 |
||||
msgid "Save" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:7 |
||||
msgid "New" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:10 |
||||
msgid "Text file" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:12 |
||||
msgid "Folder" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:14 |
||||
msgid "From link" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:35 |
||||
msgid "Upload" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:43 |
||||
msgid "Cancel upload" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:57 |
||||
msgid "Nothing in here. Upload something!" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:71 |
||||
msgid "Download" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:103 |
||||
msgid "Upload too large" |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:105 |
||||
msgid "" |
||||
"The files you are trying to upload exceed the maximum size for file uploads " |
||||
"on this server." |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:110 |
||||
msgid "Files are being scanned, please wait." |
||||
msgstr "" |
||||
|
||||
#: templates/index.php:113 |
||||
msgid "Current scanning" |
||||
msgstr "" |
||||
@ -0,0 +1,34 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2012-08-12 22:33+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: templates/settings.php:3 |
||||
msgid "Encryption" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:4 |
||||
msgid "Exclude the following file types from encryption" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:5 |
||||
msgid "None" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:12 |
||||
msgid "Enable Encryption" |
||||
msgstr "" |
||||
@ -0,0 +1,107 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2012-08-12 22:34+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 |
||||
msgid "Access granted" |
||||
msgstr "" |
||||
|
||||
#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 |
||||
msgid "Error configuring Dropbox storage" |
||||
msgstr "" |
||||
|
||||
#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 |
||||
msgid "Grant access" |
||||
msgstr "" |
||||
|
||||
#: js/dropbox.js:73 js/google.js:72 |
||||
msgid "Fill out all required fields" |
||||
msgstr "" |
||||
|
||||
#: js/dropbox.js:85 |
||||
msgid "Please provide a valid Dropbox app key and secret." |
||||
msgstr "" |
||||
|
||||
#: js/google.js:26 js/google.js:73 js/google.js:78 |
||||
msgid "Error configuring Google Drive storage" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:3 |
||||
msgid "External Storage" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:7 templates/settings.php:21 |
||||
msgid "Mount point" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:8 |
||||
msgid "Backend" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:9 |
||||
msgid "Configuration" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:10 |
||||
msgid "Options" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:11 |
||||
msgid "Applicable" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:26 |
||||
msgid "Add mount point" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:84 |
||||
msgid "None set" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:85 |
||||
msgid "All Users" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:86 |
||||
msgid "Groups" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:94 |
||||
msgid "Users" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:107 templates/settings.php:108 |
||||
#: templates/settings.php:148 templates/settings.php:149 |
||||
msgid "Delete" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:123 |
||||
msgid "Enable User External Storage" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:124 |
||||
msgid "Allow users to mount their own external storage" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:138 |
||||
msgid "SSL root certificates" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:157 |
||||
msgid "Import Root Certificate" |
||||
msgstr "" |
||||
@ -0,0 +1,48 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2012-08-12 22:35+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: templates/authenticate.php:4 |
||||
msgid "Password" |
||||
msgstr "" |
||||
|
||||
#: templates/authenticate.php:6 |
||||
msgid "Submit" |
||||
msgstr "" |
||||
|
||||
#: templates/public.php:17 |
||||
#, php-format |
||||
msgid "%s shared the folder %s with you" |
||||
msgstr "" |
||||
|
||||
#: templates/public.php:19 |
||||
#, php-format |
||||
msgid "%s shared the file %s with you" |
||||
msgstr "" |
||||
|
||||
#: templates/public.php:22 templates/public.php:38 |
||||
msgid "Download" |
||||
msgstr "" |
||||
|
||||
#: templates/public.php:37 |
||||
msgid "No preview available for" |
||||
msgstr "" |
||||
|
||||
#: templates/public.php:43 |
||||
msgid "web services under your control" |
||||
msgstr "" |
||||
@ -0,0 +1,42 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2012-08-12 22:37+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: js/settings-personal.js:31 templates/settings-personal.php:10 |
||||
msgid "Expire all versions" |
||||
msgstr "" |
||||
|
||||
#: js/versions.js:16 |
||||
msgid "History" |
||||
msgstr "" |
||||
|
||||
#: templates/settings-personal.php:4 |
||||
msgid "Versions" |
||||
msgstr "" |
||||
|
||||
#: templates/settings-personal.php:7 |
||||
msgid "This will delete all existing backup versions of your files" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:3 |
||||
msgid "Files Versioning" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:4 |
||||
msgid "Enable" |
||||
msgstr "" |
||||
@ -0,0 +1,152 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2012-07-27 22:23+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: app.php:287 |
||||
msgid "Help" |
||||
msgstr "" |
||||
|
||||
#: app.php:294 |
||||
msgid "Personal" |
||||
msgstr "" |
||||
|
||||
#: app.php:299 |
||||
msgid "Settings" |
||||
msgstr "" |
||||
|
||||
#: app.php:304 |
||||
msgid "Users" |
||||
msgstr "" |
||||
|
||||
#: app.php:311 |
||||
msgid "Apps" |
||||
msgstr "" |
||||
|
||||
#: app.php:313 |
||||
msgid "Admin" |
||||
msgstr "" |
||||
|
||||
#: files.php:361 |
||||
msgid "ZIP download is turned off." |
||||
msgstr "" |
||||
|
||||
#: files.php:362 |
||||
msgid "Files need to be downloaded one by one." |
||||
msgstr "" |
||||
|
||||
#: files.php:362 files.php:387 |
||||
msgid "Back to Files" |
||||
msgstr "" |
||||
|
||||
#: files.php:386 |
||||
msgid "Selected files too large to generate zip file." |
||||
msgstr "" |
||||
|
||||
#: json.php:28 |
||||
msgid "Application is not enabled" |
||||
msgstr "" |
||||
|
||||
#: json.php:39 json.php:64 json.php:77 json.php:89 |
||||
msgid "Authentication error" |
||||
msgstr "" |
||||
|
||||
#: json.php:51 |
||||
msgid "Token expired. Please reload page." |
||||
msgstr "" |
||||
|
||||
#: search/provider/file.php:17 search/provider/file.php:35 |
||||
msgid "Files" |
||||
msgstr "" |
||||
|
||||
#: search/provider/file.php:26 search/provider/file.php:33 |
||||
msgid "Text" |
||||
msgstr "" |
||||
|
||||
#: search/provider/file.php:29 |
||||
msgid "Images" |
||||
msgstr "" |
||||
|
||||
#: template.php:103 |
||||
msgid "seconds ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:104 |
||||
msgid "1 minute ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:105 |
||||
#, php-format |
||||
msgid "%d minutes ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:106 |
||||
msgid "1 hour ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:107 |
||||
#, php-format |
||||
msgid "%d hours ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:108 |
||||
msgid "today" |
||||
msgstr "" |
||||
|
||||
#: template.php:109 |
||||
msgid "yesterday" |
||||
msgstr "" |
||||
|
||||
#: template.php:110 |
||||
#, php-format |
||||
msgid "%d days ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:111 |
||||
msgid "last month" |
||||
msgstr "" |
||||
|
||||
#: template.php:112 |
||||
#, php-format |
||||
msgid "%d months ago" |
||||
msgstr "" |
||||
|
||||
#: template.php:113 |
||||
msgid "last year" |
||||
msgstr "" |
||||
|
||||
#: template.php:114 |
||||
msgid "years ago" |
||||
msgstr "" |
||||
|
||||
#: updater.php:75 |
||||
#, php-format |
||||
msgid "%s is available. Get <a href=\"%s\">more information</a>" |
||||
msgstr "" |
||||
|
||||
#: updater.php:77 |
||||
msgid "up to date" |
||||
msgstr "" |
||||
|
||||
#: updater.php:80 |
||||
msgid "updates check is disabled" |
||||
msgstr "" |
||||
|
||||
#: vcategories.php:188 vcategories.php:249 |
||||
#, php-format |
||||
msgid "Could not find category \"%s\"" |
||||
msgstr "" |
||||
@ -0,0 +1,247 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2011-07-25 16:05+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: ajax/apps/ocs.php:20 |
||||
msgid "Unable to load list from App Store" |
||||
msgstr "" |
||||
|
||||
#: ajax/creategroup.php:10 |
||||
msgid "Group already exists" |
||||
msgstr "" |
||||
|
||||
#: ajax/creategroup.php:19 |
||||
msgid "Unable to add group" |
||||
msgstr "" |
||||
|
||||
#: ajax/enableapp.php:12 |
||||
msgid "Could not enable app. " |
||||
msgstr "" |
||||
|
||||
#: ajax/lostpassword.php:12 |
||||
msgid "Email saved" |
||||
msgstr "" |
||||
|
||||
#: ajax/lostpassword.php:14 |
||||
msgid "Invalid email" |
||||
msgstr "" |
||||
|
||||
#: ajax/openid.php:13 |
||||
msgid "OpenID Changed" |
||||
msgstr "" |
||||
|
||||
#: ajax/openid.php:15 ajax/setlanguage.php:17 ajax/setlanguage.php:20 |
||||
msgid "Invalid request" |
||||
msgstr "" |
||||
|
||||
#: ajax/removegroup.php:13 |
||||
msgid "Unable to delete group" |
||||
msgstr "" |
||||
|
||||
#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 |
||||
msgid "Authentication error" |
||||
msgstr "" |
||||
|
||||
#: ajax/removeuser.php:24 |
||||
msgid "Unable to delete user" |
||||
msgstr "" |
||||
|
||||
#: ajax/setlanguage.php:15 |
||||
msgid "Language changed" |
||||
msgstr "" |
||||
|
||||
#: ajax/togglegroups.php:12 |
||||
msgid "Admins can't remove themself from the admin group" |
||||
msgstr "" |
||||
|
||||
#: ajax/togglegroups.php:28 |
||||
#, php-format |
||||
msgid "Unable to add user to group %s" |
||||
msgstr "" |
||||
|
||||
#: ajax/togglegroups.php:34 |
||||
#, php-format |
||||
msgid "Unable to remove user from group %s" |
||||
msgstr "" |
||||
|
||||
#: js/apps.js:28 js/apps.js:67 |
||||
msgid "Disable" |
||||
msgstr "" |
||||
|
||||
#: js/apps.js:28 js/apps.js:55 |
||||
msgid "Enable" |
||||
msgstr "" |
||||
|
||||
#: js/personal.js:69 |
||||
msgid "Saving..." |
||||
msgstr "" |
||||
|
||||
#: personal.php:42 personal.php:43 |
||||
msgid "__language_name__" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:10 |
||||
msgid "Add your App" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:11 |
||||
msgid "More Apps" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:27 |
||||
msgid "Select an App" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:31 |
||||
msgid "See application page at apps.owncloud.com" |
||||
msgstr "" |
||||
|
||||
#: templates/apps.php:32 |
||||
msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:9 |
||||
msgid "Documentation" |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:10 |
||||
msgid "Managing Big Files" |
||||
msgstr "" |
||||
|
||||
#: templates/help.php:11 |
||||
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 |
||||
#, php-format |
||||
msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" |
||||
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 was 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/personal.php:61 |
||||
msgid "" |
||||
"Developed by the <a href=\"http://ownCloud.org/contact\" " |
||||
"target=\"_blank\">ownCloud community</a>, the <a " |
||||
"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " |
||||
"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " |
||||
"target=\"_blank\"><abbr title=\"Affero General Public " |
||||
"License\">AGPL</abbr></a>." |
||||
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 "Group Admin" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:82 |
||||
msgid "Quota" |
||||
msgstr "" |
||||
|
||||
#: templates/users.php:146 |
||||
msgid "Delete" |
||||
msgstr "" |
||||
@ -0,0 +1,170 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2012-08-12 22:45+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: templates/settings.php:8 |
||||
msgid "Host" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:8 |
||||
msgid "" |
||||
"You can omit the protocol, except you require SSL. Then start with ldaps://" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:9 |
||||
msgid "Base DN" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:9 |
||||
msgid "You can specify Base DN for users and groups in the Advanced tab" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:10 |
||||
msgid "User DN" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:10 |
||||
msgid "" |
||||
"The DN of the client user with which the bind shall be done, e.g. " |
||||
"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " |
||||
"empty." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:11 |
||||
msgid "Password" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:11 |
||||
msgid "For anonymous access, leave DN and Password empty." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:12 |
||||
msgid "User Login Filter" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:12 |
||||
#, php-format |
||||
msgid "" |
||||
"Defines the filter to apply, when login is attempted. %%uid replaces the " |
||||
"username in the login action." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:12 |
||||
#, php-format |
||||
msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:13 |
||||
msgid "User List Filter" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:13 |
||||
msgid "Defines the filter to apply, when retrieving users." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:13 |
||||
msgid "without any placeholder, e.g. \"objectClass=person\"." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:14 |
||||
msgid "Group Filter" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:14 |
||||
msgid "Defines the filter to apply, when retrieving groups." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:14 |
||||
msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:17 |
||||
msgid "Port" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:18 |
||||
msgid "Base User Tree" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:19 |
||||
msgid "Base Group Tree" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:20 |
||||
msgid "Group-Member association" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:21 |
||||
msgid "Use TLS" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:21 |
||||
msgid "Do not use it for SSL connections, it will fail." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:22 |
||||
msgid "Case insensitve LDAP server (Windows)" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:23 |
||||
msgid "Turn off SSL certificate validation." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:23 |
||||
msgid "" |
||||
"If connection only works with this option, import the LDAP server's SSL " |
||||
"certificate in your ownCloud server." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:23 |
||||
msgid "Not recommended, use for testing only." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:24 |
||||
msgid "User Display Name Field" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:24 |
||||
msgid "The LDAP attribute to use to generate the user`s ownCloud name." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:25 |
||||
msgid "Group Display Name Field" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:25 |
||||
msgid "The LDAP attribute to use to generate the groups`s ownCloud name." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:27 |
||||
msgid "in bytes" |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:29 |
||||
msgid "in seconds. A change empties the cache." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:30 |
||||
msgid "" |
||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD " |
||||
"attribute." |
||||
msgstr "" |
||||
|
||||
#: templates/settings.php:32 |
||||
msgid "Help" |
||||
msgstr "" |
||||
@ -0,0 +1,22 @@ |
||||
# 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-12-06 00:11+0100\n" |
||||
"PO-Revision-Date: 2012-11-09 09:06+0000\n" |
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" |
||||
"MIME-Version: 1.0\n" |
||||
"Content-Type: text/plain; charset=UTF-8\n" |
||||
"Content-Transfer-Encoding: 8bit\n" |
||||
"Language: is\n" |
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
||||
#: templates/settings.php:4 |
||||
msgid "WebDAV URL: http://" |
||||
msgstr "" |
||||
Loading…
Reference in new issue