diff --git a/CHANGELOG.md b/CHANGELOG.md index ec71b43..92f9252 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.0.1 (May 12, 2016) + +### Changed +- Smooth scroll for comment anchor links + +### Fixed +- Fixed duplicated request occasionally caused by pagination + ## 1.0.0 (April 13, 2016) ### Fixed @@ -15,7 +23,7 @@ ## 0.11.1 (April 1, 2016) ### Changed -- Use truncated post content as Open Graph description if not explicitly provided +- Use truncated post content as Open Graph description if not explicitly provided ### Fixed - Fixed comments links diff --git a/app/views/admin/comment-index.js b/app/views/admin/comment-index.js index 2ecc959..fc62c5d 100644 --- a/app/views/admin/comment-index.js +++ b/app/views/admin/comment-index.js @@ -23,24 +23,21 @@ module.exports = { ready: function () { this.Comments = this.$resource('api/blog/comment{/id}'); - this.load(); + this.$watch('config.page', this.load, {immediate: true}); UIkit.init(this.$el); }, watch: { - 'config.page': function (page, old) { - if (page == old) { - return; - } - - this.load(); - }, - 'config.filter': { handler: function (filter) { - this.load(); + if (this.config.page) { + this.config.page = 0; + } else { + this.load(); + } + this.$session.set('comments.filter', filter); }, deep: true @@ -101,13 +98,11 @@ module.exports = { }); }, - load: function (page) { - - page = page !== undefined ? page : this.$get('config.page'); + load: function () { this.cancel(); - this.Comments.query({filter: this.config.filter, post: this.config.post && this.config.post.id || 0, page: page, limit: this.config.limit}).then(function (res) { + this.Comments.query({filter: this.config.filter, post: this.config.post && this.config.post.id || 0, page: this.config.page, limit: this.config.limit}).then(function (res) { var data = res.data; @@ -115,7 +110,6 @@ module.exports = { this.$set('comments', data.comments); this.$set('pages', data.pages); this.$set('count', data.count); - this.$set('config.page', page); this.$set('selected', []); }); }, diff --git a/app/views/admin/post-index.js b/app/views/admin/post-index.js index be352ad..adf170e 100644 --- a/app/views/admin/post-index.js +++ b/app/views/admin/post-index.js @@ -18,18 +18,20 @@ module.exports = { }, ready: function () { - this.resource = this.$resource('api/blog/post{/id}'); - this.load(); + this.$watch('config.page', this.load, {immediate: true}); }, watch: { - 'config.page': 'load', - 'config.filter': { handler: function (filter) { - this.load(0); + if (this.config.page) { + this.config.page = 0; + } else { + this.load(); + } + this.$session.set('posts.filter', filter); }, deep: true @@ -110,18 +112,14 @@ module.exports = { }); }, - load: function (page) { - - page = page !== undefined ? page : this.config.page; - - this.resource.query({ filter: this.config.filter, page: page }).then(function (res) { + load: function () { + this.resource.query({ filter: this.config.filter, page: this.config.page }).then(function (res) { var data = res.data; this.$set('posts', data.posts); this.$set('pages', data.pages); this.$set('count', data.count); - this.$set('config.page', page); this.$set('selected', []); }); }, diff --git a/app/views/comments.js b/app/views/comments.js index c366b29..cab53bb 100644 --- a/app/views/comments.js +++ b/app/views/comments.js @@ -29,6 +29,14 @@ module.exports = { this.$set('post', data.posts[0]); this.$set('count', data.count); + this.$nextTick(function () { + var anchor = jQuery(window.location.hash); + + if (anchor && anchor.length) { + UIkit.Utils.scrollToElement(anchor); + } + }); + this.reply(); }); }, diff --git a/composer.json b/composer.json index 52c6778..5261d7d 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "pagekit/blog", "type": "pagekit-extension", - "version": "1.0.0", + "version": "1.0.1", "title": "Blog", "description": "A blog extensions with a built-in comment system.", "license": "MIT", diff --git a/languages/ar_EG/messages.php b/languages/ar_EG/messages.php index 99c70ef..d39da7b 100644 --- a/languages/ar_EG/messages.php +++ b/languages/ar_EG/messages.php @@ -2,10 +2,10 @@ 'Require e-mail.' => '', 'General' => '', 'Show Avatars from Gravatar.' => '', - 'Unable to comment. Please try again later.' => '', + 'Unable to comment. Please try again later.' => 'غير مسموح لك بالتعليق . الرجاء معاودة المحاولة في وقت لاحق.', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -13,13 +13,12 @@ 'Slug' => '', 'Email invalid.' => '', 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Filter by' => 'تصفية حسب', 'Comments (%count%)' => '', 'Title' => 'عنوان', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', - 'Posts View' => '', + 'Posts View' => 'مشاهدة المشاركات', 'Default post settings' => '', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', 'Comments' => '', @@ -29,14 +28,14 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => 'شكرا لتعليقك سيتم نشره عند موافقة المشرف عليه', 'Pending Review' => '', - 'Excerpt' => '', + 'Excerpt' => 'مقتطفات', 'Invalid post id.' => '', 'Blog' => '', 'Logged in as %name%' => '', 'Order comments by' => '', - 'Title cannot be blank.' => '', + 'Title cannot be blank.' => 'لايمكن ترك حقل العنوان فارغ', 'Save' => 'حفظ', 'Status' => '', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => 'إالغاء', 'Written by %name% on %date%' => '', @@ -91,7 +91,7 @@ 'Leave a comment' => '', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', 'Post' => '', - 'View' => '', + 'View' => 'مشاهدة', 'Numeric' => '', 'Name' => 'الاسم', ); \ No newline at end of file diff --git a/languages/ar_SA/messages.php b/languages/ar_SA/messages.php index 6bf0efb..e3813b9 100644 --- a/languages/ar_SA/messages.php +++ b/languages/ar_SA/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'لا يمكنك التعليق الرجاء المحاولة لاحقا', 'Submit' => 'تقديم', 'Comment' => 'تعليق', - 'Comments are closed.' => 'التعليقات مغلقة', + 'Enable Comments' => 'تمكين التعليقات', 'Appearance' => 'المظهر', 'Draft' => 'مسودة', 'Author' => 'الكاتب', @@ -14,10 +14,9 @@ 'Email invalid.' => 'البريد الإلكتروني غير صالح', 'Comment not found.' => 'يتعدر إيجاد المشاركة', 'Filter by' => 'تصنيف حسب', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'تعليقات (%count%)', 'Title' => 'العنوان', - 'Thank you! Your comment needs approval before showing up.' => 'شكرا ! ستتم مراجعة التعليق قبل نشره', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => 'أنت غير مسجل', 'Posts View' => 'عرض المشاركات', 'Default post settings' => 'الإعدادات الإفتراضية للمنشور', @@ -29,7 +28,7 @@ 'Disabled' => 'معطل', 'Approved' => 'تمت الموافقة عليه', 'Edit Post' => 'تحرير المشاركة.', - 'Enable Comments' => 'تمكين التعليقات', + 'Thank you! Your comment needs approval before showing up.' => 'شكرا ! ستتم مراجعة التعليق قبل نشره', 'Pending Review' => 'مراجعة قيد الانتظار', 'Excerpt' => 'ملخص', 'Invalid post id.' => 'معرف المشاركة خاطئ.', @@ -49,7 +48,7 @@ 'No comments found.' => 'لا توجد تعليقات', 'Publish on' => 'نشر في', 'Name cannot be blank.' => 'الرجاء إدخال الإسم', - 'Invalid slug.' => '', + 'Invalid slug.' => 'مسار غير صالح', 'Please provide valid name and email.' => 'فضلا أدخل اسما وبريدا الكترونيا صحيحين.', 'You are not allowed to post comments.' => 'غير مسموح لك بكتابة التعليقات.', 'Author cannot be blank.' => 'الرجاء إدخال اسم الكاتب', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'المحتوى لا يمكن أن يكون فارغا', 'Unknown' => 'غير معروف', 'Month and name' => 'شهر واسم', + 'Comments are closed.' => 'التعليقات مغلقة', 'Close comments on articles older than' => 'أغلق التعليقات في المواضيع الأقدم من', 'Cancel' => 'إلغاء', 'Written by %name% on %date%' => 'كتبت من قبل %name% في %date%', diff --git a/languages/az@latin/messages.php b/languages/az@latin/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/az@latin/messages.php +++ b/languages/az@latin/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/az_AZ/messages.php b/languages/az_AZ/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/az_AZ/messages.php +++ b/languages/az_AZ/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/bg_BG/messages.php b/languages/bg_BG/messages.php index 8315bcf..75e1b9d 100644 --- a/languages/bg_BG/messages.php +++ b/languages/bg_BG/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => 'Коментар', - 'Comments are closed.' => '', + 'Enable Comments' => 'Разреши коментарите', 'Appearance' => 'Външност', 'Draft' => 'Чернова', 'Author' => 'Автор', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'Коментари (%count%)', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'Одобрен', 'Edit Post' => 'Редактирай публикация', - 'Enable Comments' => 'Разреши коментарите', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => 'Чака ревю', 'Excerpt' => 'Откъс', 'Invalid post id.' => 'Невалиден идентификатор на публикация.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => 'Месец и име', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'Затвори коментарите към статиите по-стари от', 'Cancel' => '', 'Written by %name% on %date%' => 'Написан от %name% на %date%', diff --git a/languages/bn/messages.php b/languages/bn/messages.php index 914f4e4..6faff85 100644 --- a/languages/bn/messages.php +++ b/languages/bn/messages.php @@ -1,97 +1,97 @@ '', - 'General' => '', - 'Show Avatars from Gravatar.' => '', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', - 'Comment' => '', - 'Comments are closed.' => '', - 'Appearance' => '', - 'Draft' => '', - 'Author' => '', - 'Permalink' => '', - 'Slug' => '', - 'Email invalid.' => '', - 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', - 'Comments (%count%)' => '', - 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => '', - 'Posts View' => '', - 'Default post settings' => '', - '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', - 'Comments' => '', - 'Image' => '', - 'Posts' => '', - 'Pending' => '', - 'Disabled' => '', - 'Approved' => '', - 'Edit Post' => '', - 'Enable Comments' => '', - 'Pending Review' => '', - 'Excerpt' => '', - 'Invalid post id.' => '', - 'Blog' => '', - 'Logged in as %name%' => '', - 'Order comments by' => '', - 'Title cannot be blank.' => '', - 'Save' => '', - 'Status' => '', - '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', - 'Please login to leave a comment.' => '', - 'Posts per page' => '', - 'E-mail' => '', - 'latest last' => '', - 'Please wait another %seconds% seconds before commenting again.' => '', - 'Post not found.' => '', - 'No comments found.' => '', - 'Publish on' => '', - 'Name cannot be blank.' => '', - 'Invalid slug.' => '', - 'Please provide valid name and email.' => '', - 'You are not allowed to post comments.' => '', - 'Author cannot be blank.' => '', - 'latest first' => '', - 'Unpublished' => '', - 'Custom' => '', - 'Published' => '', - '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', - 'Add Post' => '', - 'Date' => '', - 'Reply' => '', - 'Parent not found.' => '', - 'URL' => '', - 'Day and name' => '', - 'Options' => '', - 'Field must be a valid email address.' => '', - 'levels deep.' => '', - 'Comments on %title%' => '', - 'Insufficient User Rights.' => '', - 'Copy' => '', - 'Post not found!' => '', - 'Blog Settings' => '', - 'days.' => '', - 'Email' => '', - 'No posts found.' => '', - 'Enable Markdown' => '', - 'Read more' => '', - 'Content cannot be blank.' => '', - 'Unknown' => '', - 'Month and name' => '', - 'Close comments on articles older than' => '', - 'Cancel' => '', - 'Written by %name% on %date%' => '', - 'Enable nested comments of' => '', - 'Restrict Access' => '', - 'Comment cannot be blank.' => '', - 'Access denied.' => '', - 'Spam' => '', - 'Leave a comment' => '', - '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', - 'Post' => '', - 'View' => '', - 'Numeric' => '', - 'Name' => '', + 'Require e-mail.' => 'ই-মেইল দরকার।', + 'General' => 'সাধারণ', + 'Show Avatars from Gravatar.' => 'গ্রেভাটার থেকে এভাটার প্রদর্শন করা হয়।', + 'Unable to comment. Please try again later.' => 'মন্তব্য করতে অক্ষম। অনুগ্রহ করে একটু পরে আবার চেষ্টা করুন।', + 'Submit' => 'সমর্পণ করা', + 'Comment' => 'মন্তব্য', + 'Enable Comments' => 'মন্তব্যগুলি সক্ষম কর', + 'Appearance' => 'উপস্থাপনার ধরণ', + 'Draft' => 'খসড়া', + 'Author' => 'কতৃপক্ষ', + 'Permalink' => 'পারমালিঙ্ক', + 'Slug' => 'স্লাগ', + 'Email invalid.' => 'ইমেল অবৈধ।', + 'Comment not found.' => 'মন্তব্য পাওয়া যায়নি।', + 'Filter by' => 'ফিল্টার হবে', + 'Comments (%count%)' => 'মন্তব্য (%count%)', + 'Title' => 'শিরোনাম', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% মন্তব্য নির্বাচিত|]1,Inf[ %count% মন্তব্য গুলি নির্বাচিত', + 'Insufficient user rights.' => 'অপর্যাপ্ত ব্যবহারকারীর অধিকার।', + 'Posts View' => 'পোস্ট দেখ', + 'Default post settings' => 'ডিফল্ট পোস্ট সেটিংস', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% পোস্ট নির্বাচিত|]1,Inf[ %count% পোস্ট গুলি নির্বাচিত', + 'Comments' => 'মন্তব্য', + 'Image' => 'ছবি', + 'Posts' => 'পোস্ট গুলি', + 'Pending' => 'অপেক্ষারত', + 'Disabled' => 'অক্ষম', + 'Approved' => 'অনুমোদিত', + 'Edit Post' => 'পোস্ট সম্পাদন কর', + 'Thank you! Your comment needs approval before showing up.' => 'ধন্যবাদ! দেখানোর আগে আপনার মন্তব্য অনুমোদনের প্রয়োজন।', + 'Pending Review' => 'অপেক্ষারত পর্যালোচনা', + 'Excerpt' => 'উদ্ধৃতাংশ', + 'Invalid post id.' => 'অবৈধ পোস্ট আইডি।', + 'Blog' => 'ব্লগ', + 'Logged in as %name%' => 'লগ ইন করুন %name%', + 'Order comments by' => 'মন্তব্য দ্বারা আদেশ', + 'Title cannot be blank.' => 'শিরোনাম ফাঁকা রাখতে পারবেন না।', + 'Save' => 'সংরক্ষণ করুন', + 'Status' => 'অবস্থা', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% মন্তব্য গুলি|{1} %count% মন্তব্য|]1,Inf[ %count% মন্তব্য গুলি', + 'Please login to leave a comment.' => 'একটি মন্তব্য করার জন্য লগইন করুন।', + 'Posts per page' => 'প্রতি পাতায় পোস্ট', + 'E-mail' => 'ইমেইল', + 'latest last' => 'সর্বশেষ গত', + 'Please wait another %seconds% seconds before commenting again.' => 'আবার মন্তব্য করার আগে আরেকটি %seconds% সেকেন্ড অপেক্ষা করুন।', + 'Post not found.' => 'পোস্ট খুঁজে পাওয়া যায়নি।', + 'No comments found.' => 'কোন মন্তব্য পাওয়া যায়নি।', + 'Publish on' => 'প্রকাশ করুন', + 'Name cannot be blank.' => 'নাম ফাঁকা রাখা যাবে না।', + 'Invalid slug.' => 'অবৈধ স্লাগ।', + 'Please provide valid name and email.' => 'বৈধ নাম এবং ই-মেইল প্রদান করুন।', + 'You are not allowed to post comments.' => 'মন্তব্য করার জন্য আপনাকে অনুমতি দেওয়া হয় নি।', + 'Author cannot be blank.' => 'লেখক ফাঁকা রাখতে পারবে না।', + 'latest first' => 'সর্বশেষ প্রথম', + 'Unpublished' => 'অপ্রকাশিত', + 'Custom' => 'চলিত প্রথা', + 'Published' => 'প্রকাশিত', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '{0} %count% পোস্ট গুলি|{1} %count% পোস্ট|]1,Inf[ %count% পোস্ট গুলি', + 'Add Post' => 'পোস্ট যোগ কর', + 'Date' => 'তারিখ', + 'Reply' => 'উত্তর', + 'Parent not found.' => 'প্যারেন্ট পাওয়া যায়নি।', + 'URL' => 'ইউআরএল', + 'Day and name' => 'দিবস ও নাম', + 'Options' => 'বিকল্প', + 'Field must be a valid email address.' => 'ফিল্ড একটি বৈধ ইমেইল ঠিকানা দিতে হবে।', + 'levels deep.' => 'লেভেলের গভীরতা।', + 'Comments on %title%' => 'মন্তব্যসমূহ হয়েছে %title%', + 'Insufficient User Rights.' => 'অপর্যাপ্ত ব্যবহারকারীর অধিকার।', + 'Copy' => 'কপি', + 'Post not found!' => 'পোস্ট খুঁজে পাওয়া যায়নি!', + 'Blog Settings' => 'ব্লগ সেটিংস', + 'days.' => 'দিনগুলি', + 'Email' => 'ইমেইল', + 'No posts found.' => 'কোনো পোস্ট পাওয়া যায়নি।', + 'Enable Markdown' => 'মার্কডাউন সক্রিয়', + 'Read more' => 'আরও পড়ুন', + 'Content cannot be blank.' => 'কনটেন্ট ফাঁকা রাখা যাবে না।', + 'Unknown' => 'অজানা', + 'Month and name' => 'মাস এবং নাম', + 'Comments are closed.' => 'মন্তব্যসমূহ বন্ধ করা হয়েছে।', + 'Close comments on articles older than' => 'নিবন্ধগুলোতে বন্ধ মন্তব্য চেয়ে পুরোনো', + 'Cancel' => 'বাতিল', + 'Written by %name% on %date%' => 'লিখেছেন %name% %date% তারিখে', + 'Enable nested comments of' => 'নেস্টেড মন্তব্য সক্ষম', + 'Restrict Access' => 'অ্যাক্সেস সীমাবদ্ধ', + 'Comment cannot be blank.' => 'মন্তব্য ফাঁকা হতে পারে না।', + 'Access denied.' => 'অ্যাক্সেস অস্বীকৃত।', + 'Spam' => 'স্প্যাম', + 'Leave a comment' => 'মতামত দিন', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} কমেন্ট নাই|{1} %num% কমেন্ট|]1,Inf[ %num% কমেন্টগুলি', + 'Post' => 'পোস্ট', + 'View' => 'দেখা', + 'Numeric' => 'সংখ্যাসূচক', + 'Name' => 'নাম', ); \ No newline at end of file diff --git a/languages/ca_ES/messages.php b/languages/ca_ES/messages.php index a452230..d8a17b0 100644 --- a/languages/ca_ES/messages.php +++ b/languages/ca_ES/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'No es pot desar el comentari. Si us plau, prova-ho més tard.', 'Submit' => '', 'Comment' => 'Comentar', - 'Comments are closed.' => '', + 'Enable Comments' => 'Habilitar comentaris', 'Appearance' => 'Aparició', 'Draft' => 'Esborrany', 'Author' => 'Autor', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => 'Comentari no trobat', 'Filter by' => 'Filtrar per', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentari seleccionat|]1,Inf[ %count% Comentaris seleccionats', 'Comments (%count%)' => 'Comentaris (%couont%)', 'Title' => 'Títol', - 'Thank you! Your comment needs approval before showing up.' => 'Gràcies! El teu comentari ha de ser aprovat abans de publicar-lo', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentari seleccionat|]1,Inf[ %count% Comentaris seleccionats', 'Insufficient user rights.' => 'Drets d\'usuari insuficients', 'Posts View' => 'Veure Post', 'Default post settings' => 'Configuració del post per defecte', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'Aprovat', 'Edit Post' => 'Editar Post', - 'Enable Comments' => 'Habilitar comentaris', + 'Thank you! Your comment needs approval before showing up.' => 'Gràcies! El teu comentari ha de ser aprovat abans de publicar-lo', 'Pending Review' => 'Pendent de revisió', 'Excerpt' => 'Extracte', 'Invalid post id.' => 'Identificazdor de post invàlid', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'El contingut no pot estar en blanc.', 'Unknown' => 'Desconegut', 'Month and name' => 'Mes i nom', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'Tancar comentaris en articles més antics de', 'Cancel' => 'Cancel·lar', 'Written by %name% on %date%' => '', diff --git a/languages/cs_CZ/messages.php b/languages/cs_CZ/messages.php index 68cee30..8f8c673 100644 --- a/languages/cs_CZ/messages.php +++ b/languages/cs_CZ/messages.php @@ -1,59 +1,58 @@ '', + 'Require e-mail.' => 'Vyžadovat email.', 'General' => 'Obecné', 'Show Avatars from Gravatar.' => 'Zobrazit Avatary ze služby Gravatar.', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'Nelze odeslat komentář, zkuste to později znovu.', + 'Submit' => 'Odeslat', 'Comment' => 'Komentář', - 'Comments are closed.' => '', + 'Enable Comments' => 'Povolit komentáře', 'Appearance' => 'Vzhled', 'Draft' => 'Koncept', 'Author' => 'Autor', 'Permalink' => 'Permanentní odkaz', 'Slug' => 'Slug', - 'Email invalid.' => '', - 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Email invalid.' => 'Neplatný e-mail.', + 'Comment not found.' => 'Komentář nenalezen.', + 'Filter by' => 'Filtrovat podle', 'Comments (%count%)' => 'Komentáře (%count%)', - 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => '', - 'Posts View' => '', - 'Default post settings' => '', + 'Title' => 'Titulek', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => 'Nedostatečná uživatelská oprávnění', + 'Posts View' => 'Přehled článků', + 'Default post settings' => 'Výchozí nastavení článku', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', 'Comments' => 'Komentáře', - 'Image' => '', + 'Image' => 'Obrázek', 'Posts' => 'Články', 'Pending' => 'Nerozhodnuto', - 'Disabled' => '', + 'Disabled' => 'Zakázáno', 'Approved' => 'Schváleno', 'Edit Post' => 'Upravit článek', - 'Enable Comments' => 'Povolit komentáře', + 'Thank you! Your comment needs approval before showing up.' => 'Děkuji, Váš komentář musí být před zobrazením schválen.', 'Pending Review' => 'Čeká na schválení', 'Excerpt' => 'Úvodník', 'Invalid post id.' => 'Neplatné ID článku', 'Blog' => 'Blog', 'Logged in as %name%' => 'Přihlášen jako %name%', 'Order comments by' => 'Řadit komentáře', - 'Title cannot be blank.' => '', - 'Save' => '', - 'Status' => '', + 'Title cannot be blank.' => 'Je potřeba uvést titulek', + 'Save' => 'Uložit', + 'Status' => 'Stav', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', 'Please login to leave a comment.' => 'Pro napsání komentáře se prosím přihlaste.', - 'Posts per page' => '', + 'Posts per page' => 'Článků na stránku', 'E-mail' => 'E-mail', - 'latest last' => '', + 'latest last' => 'od nejstaršího', 'Please wait another %seconds% seconds before commenting again.' => 'Než budete moci znovu komentovat, je potřeba počkat ještě %seconds% vteřin.', - 'Post not found.' => '', + 'Post not found.' => 'Článek nebyl nalezen!', 'No comments found.' => 'Nebyl nalezen žádný komentář.', 'Publish on' => 'Zveřejnit od', - 'Name cannot be blank.' => '', - 'Invalid slug.' => '', + 'Name cannot be blank.' => 'Je potřeba uvést jméno.', + 'Invalid slug.' => 'Neplatný slug.', 'Please provide valid name and email.' => 'Uveďte prosím platné jméno a email.', 'You are not allowed to post comments.' => 'Nemáte povoleno psát komentáře.', - 'Author cannot be blank.' => '', - 'latest first' => '', + 'Author cannot be blank.' => 'Je potřeba uvést autora.', + 'latest first' => 'od nejnovějšího', 'Unpublished' => 'Nezveřejněno', 'Custom' => 'Vlastní', 'Published' => 'Zveřejněno', @@ -61,37 +60,38 @@ 'Add Post' => 'Přidat článek', 'Date' => 'Datum', 'Reply' => 'Odpovědět', - 'Parent not found.' => '', - 'URL' => '', + 'Parent not found.' => 'Zdroj nenalezen.', + 'URL' => 'URL', 'Day and name' => 'Čas a jméno', - 'Options' => '', - 'Field must be a valid email address.' => '', + 'Options' => 'Možnosti', + 'Field must be a valid email address.' => 'Uveďte platnou e-mailovou adresu.', 'levels deep.' => 'úrovní hluboko.', 'Comments on %title%' => 'Komentáře k %title%', - 'Insufficient User Rights.' => '', - 'Copy' => '', + 'Insufficient User Rights.' => 'Nedostatečná uživatelská oprávnění.', + 'Copy' => 'Kopírovat', 'Post not found!' => 'Článek nebyl nalezen!', - 'Blog Settings' => '', + 'Blog Settings' => 'Nastavení blogu', 'days.' => 'dny.', - 'Email' => '', + 'Email' => 'E-mail', 'No posts found.' => 'Nebyl nalezen žádný článek.', - 'Enable Markdown' => '', - 'Read more' => '', - 'Content cannot be blank.' => '', - 'Unknown' => '', + 'Enable Markdown' => 'Povolit Markdown', + 'Read more' => 'Číst dál', + 'Content cannot be blank.' => 'Je potřeba uvést obsah.', + 'Unknown' => 'Neznámé', 'Month and name' => 'Měsíc a jméno', + 'Comments are closed.' => 'Přidávání komentářů je uzavřeno.', 'Close comments on articles older than' => 'Zavřít komentáře pro články starší než', - 'Cancel' => '', + 'Cancel' => 'Zrušit', 'Written by %name% on %date%' => '%name%, %date%', 'Enable nested comments of' => 'Povolit vnořené komentáře', - 'Restrict Access' => '', - 'Comment cannot be blank.' => '', - 'Access denied.' => '', + 'Restrict Access' => 'Omezit přístup', + 'Comment cannot be blank.' => 'Komentář nesmí být prázdný.', + 'Access denied.' => 'Přístup byl odepřen.', 'Spam' => 'Spam', 'Leave a comment' => 'Zanechte komentář', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Bez komentáře|{1} %num% komentář|{2,3,4} %num% komentáře|]5,Inf[ %num% komentářů', 'Post' => 'Článek', - 'View' => '', + 'View' => 'Zobrazení', 'Numeric' => 'Číselný', - 'Name' => '', + 'Name' => 'Jméno', ); \ No newline at end of file diff --git a/languages/da_DK/messages.php b/languages/da_DK/messages.php index 6199186..d0b4bda 100644 --- a/languages/da_DK/messages.php +++ b/languages/da_DK/messages.php @@ -1,23 +1,22 @@ '', + 'Require e-mail.' => 'Forlang email.', 'General' => 'Generel', 'Show Avatars from Gravatar.' => 'Vis avatars fra Gravatar', 'Unable to comment. Please try again later.' => 'Kan ikke kommentere, prøv igen senere.', - 'Submit' => '', + 'Submit' => 'Indsend', 'Comment' => 'Kommentar', - 'Comments are closed.' => 'Kommentarer er lukket.', + 'Enable Comments' => 'Aktivér kommentarer', 'Appearance' => 'Udseende', 'Draft' => 'Kladder', 'Author' => 'Forfatter', 'Permalink' => 'Permalink', - 'Slug' => '', + 'Slug' => 'Slug', 'Email invalid.' => 'Ugyldig e-mail', 'Comment not found.' => 'Kommentar ikke fundet.', 'Filter by' => 'Filtrering', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'Kommentarer (%count%)', 'Title' => 'Titel', - 'Thank you! Your comment needs approval before showing up.' => 'Tak! Din kommentar skal valideres før den dukker op.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => 'Utilstrækkelige brugerrettigheder.', 'Posts View' => 'Indlæg visning', 'Default post settings' => 'Standard indlæg indstillinger', @@ -26,10 +25,10 @@ 'Image' => 'Billede', 'Posts' => 'Indlæg', 'Pending' => 'Afventer', - 'Disabled' => '', + 'Disabled' => 'Deaktiveret', 'Approved' => 'Godkendt', 'Edit Post' => 'Rediger Indlæg', - 'Enable Comments' => 'Aktivér kommentarer', + 'Thank you! Your comment needs approval before showing up.' => 'Tak! Din kommentar skal valideres før den dukker op.', 'Pending Review' => 'Afventer Anmeldelse', 'Excerpt' => 'Uddrag', 'Invalid post id.' => 'Ugyldigt indlæg id.', @@ -39,21 +38,21 @@ 'Title cannot be blank.' => 'Titel kan ikke være tomt.', 'Save' => 'Gem', 'Status' => 'Status', - '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% Kommentarer|{1} %count% Kommentar|]1,Inf[ %count% Kommentarer', 'Please login to leave a comment.' => 'Venligst login for at efterlade en kommentar.', 'Posts per page' => 'Indlæg pr. side', 'E-mail' => 'E-mail', - 'latest last' => '', + 'latest last' => 'seneste sidst', 'Please wait another %seconds% seconds before commenting again.' => 'Vent venligst %seconds% sekunder for at kommentere igen.', 'Post not found.' => 'Indlæg ikke fundet.', 'No comments found.' => 'Ingen kommentarer fundet.', 'Publish on' => 'Udgiv ', 'Name cannot be blank.' => 'Navn kan ikke være tomt.', - 'Invalid slug.' => '', + 'Invalid slug.' => 'Ugyldig slug.', 'Please provide valid name and email.' => 'Angiv venligst gyldigt navn og e-mail.', 'You are not allowed to post comments.' => 'Du er ikke tilladt at indsende kommentarer.', 'Author cannot be blank.' => 'Forfatter kan ikke være tomt.', - 'latest first' => '', + 'latest first' => 'seneste først', 'Unpublished' => 'Ikke Offentliggjort', 'Custom' => 'Brugerdefineret', 'Published' => 'Offentliggjort', @@ -61,7 +60,7 @@ 'Add Post' => 'Tilføj Indlæg', 'Date' => 'Dato', 'Reply' => 'Svar', - 'Parent not found.' => '', + 'Parent not found.' => 'Forældre ikke fundet.', 'URL' => 'URL', 'Day and name' => 'Dag og navn', 'Options' => 'Muligheder', @@ -76,10 +75,11 @@ 'Email' => 'E-mail', 'No posts found.' => 'Ingen posts fundet', 'Enable Markdown' => 'Aktivér markdown', - 'Read more' => '', + 'Read more' => 'Læs mere', 'Content cannot be blank.' => 'Indhold kan ikke være tomt.', 'Unknown' => 'Ukendt', 'Month and name' => 'Måned og navn', + 'Comments are closed.' => 'Kommentarer er lukket.', 'Close comments on articles older than' => 'Luk kommentarer på artikler ældre end', 'Cancel' => 'Fortryd', 'Written by %name% on %date%' => 'Skrevet af %name% d. %date%', @@ -91,7 +91,7 @@ 'Leave a comment' => 'Efterlad en kommentar', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Ingen kommentarer|{1} %num% Kommentar|]1,Inf[ %num% Kommentarer', 'Post' => 'Indlæg', - 'View' => 'Se', + 'View' => 'Vis', 'Numeric' => 'Numerisk', 'Name' => 'Navn', ); \ No newline at end of file diff --git a/languages/de_AT/messages.php b/languages/de_AT/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/de_AT/messages.php +++ b/languages/de_AT/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/de_CH/messages.php b/languages/de_CH/messages.php index 70811f2..b5f07ea 100644 --- a/languages/de_CH/messages.php +++ b/languages/de_CH/messages.php @@ -1,97 +1,97 @@ '', + 'Require e-mail.' => 'Benötigt eine Email.', 'General' => 'Allgemeines', - 'Show Avatars from Gravatar.' => '', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', - 'Comment' => '', - 'Comments are closed.' => '', - 'Appearance' => '', - 'Draft' => '', - 'Author' => '', - 'Permalink' => '', - 'Slug' => '', - 'Email invalid.' => '', - 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', - 'Comments (%count%)' => '', + 'Show Avatars from Gravatar.' => 'Zeige Avatare von Gravatar.', + 'Unable to comment. Please try again later.' => 'Konnte nicht Kommentieren. Bitte versuchen Sie es später nochmal.', + 'Submit' => 'Senden', + 'Comment' => 'Kommentar', + 'Enable Comments' => 'Aktiviere Kommentare', + 'Appearance' => 'Erscheinung', + 'Draft' => 'Entwurf', + 'Author' => 'Author', + 'Permalink' => 'Permalink', + 'Slug' => 'Slug', + 'Email invalid.' => 'E-mail ungültig.', + 'Comment not found.' => 'Kommentar nicht gefunden.', + 'Filter by' => 'Filtern nach', + 'Comments (%count%)' => 'Kommentare (%count%)', 'Title' => 'Titel', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => '', - 'Posts View' => '', - 'Default post settings' => '', - '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', - 'Comments' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Kommentar ausgewählt|]1,Inf[ %count% Kommentare ausgewählt', + 'Insufficient user rights.' => 'Unzureichende Benutzerrechte.', + 'Posts View' => 'Beitragsansicht', + 'Default post settings' => 'Standard Blog Einstellungen', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Beitrag ausgewählt|]1,Inf[ %count% Beiträge ausgewählt', + 'Comments' => 'Kommentare', 'Image' => 'Bild', - 'Posts' => '', - 'Pending' => '', + 'Posts' => 'Beiträge', + 'Pending' => 'Zu erledigen', 'Disabled' => 'Deaktiviert', - 'Approved' => '', - 'Edit Post' => '', - 'Enable Comments' => '', - 'Pending Review' => '', - 'Excerpt' => '', - 'Invalid post id.' => '', - 'Blog' => '', - 'Logged in as %name%' => '', - 'Order comments by' => '', + 'Approved' => 'Bestätigt', + 'Edit Post' => 'Editiere Beitrag', + 'Thank you! Your comment needs approval before showing up.' => 'Danke dir! Dein Kommentar muss noch überprüft werden.', + 'Pending Review' => 'Zu erledigende Überprüfung', + 'Excerpt' => 'Textausschnitt', + 'Invalid post id.' => 'Falsche Beitrag ID.', + 'Blog' => 'Blog', + 'Logged in as %name%' => 'Angemeldet als %name%', + 'Order comments by' => 'Ordne Kommentare nach', 'Title cannot be blank.' => 'Titel kann nicht leer sein.', 'Save' => 'Speichern', 'Status' => 'Status', - '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', - 'Please login to leave a comment.' => '', - 'Posts per page' => '', - 'E-mail' => '', - 'latest last' => '', - 'Please wait another %seconds% seconds before commenting again.' => '', - 'Post not found.' => '', - 'No comments found.' => '', - 'Publish on' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% Kommentare|{1} %count% Kommentar|]1,Inf[ %count% Kommentare', + 'Please login to leave a comment.' => 'Bitte melde dich an, um einen Kommentar zu schreiben.', + 'Posts per page' => 'Beiträge pro Seite', + 'E-mail' => 'E-mail', + 'latest last' => 'Aktuellste zuletzt', + 'Please wait another %seconds% seconds before commenting again.' => 'Warte bitte weitere %seconds% Sekunden, bis du wieder kommentierst.', + 'Post not found.' => 'Beitrag nicht gefunden.', + 'No comments found.' => 'Keine Kommentare gefunden.', + 'Publish on' => 'Veröffentlichen am', 'Name cannot be blank.' => 'Name kann nicht leer sein.', - 'Invalid slug.' => '', - 'Please provide valid name and email.' => '', - 'You are not allowed to post comments.' => '', - 'Author cannot be blank.' => '', - 'latest first' => '', - 'Unpublished' => '', - 'Custom' => '', - 'Published' => '', - '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', - 'Add Post' => '', - 'Date' => '', - 'Reply' => '', - 'Parent not found.' => '', + 'Invalid slug.' => 'Ungültiger Slug', + 'Please provide valid name and email.' => 'Gebe bitte einen korrekten Namen und eine aktive Mail an.', + 'You are not allowed to post comments.' => 'Sie dürfen keine Kommentare schreiben.', + 'Author cannot be blank.' => 'Author kann nicht leer sein.', + 'latest first' => 'Aktuellste zuerst', + 'Unpublished' => 'Nicht ', + 'Custom' => 'Benutzerdefiniert', + 'Published' => 'Veröfentlichte', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '{0} %count% Beiträge|{1} %count% Beitrag|]1,Inf[ %count% Beiträge', + 'Add Post' => 'Beitrag hinzufügen', + 'Date' => 'Datum', + 'Reply' => 'Antwort', + 'Parent not found.' => 'Elternteil nicht gefunden', 'URL' => 'URL', - 'Day and name' => '', - 'Options' => '', + 'Day and name' => 'Tag und Name', + 'Options' => 'Optionen', 'Field must be a valid email address.' => 'Feld muss eine gültige E-Mail Adresse enthalten.', - 'levels deep.' => '', - 'Comments on %title%' => '', - 'Insufficient User Rights.' => '', - 'Copy' => '', - 'Post not found!' => '', - 'Blog Settings' => '', - 'days.' => '', + 'levels deep.' => 'Ebenen tief.', + 'Comments on %title%' => 'Kommentare zu', + 'Insufficient User Rights.' => 'Unzureichende Benutzerrechte.', + 'Copy' => 'Kopieren', + 'Post not found!' => 'Beitrag nicht gefunden!', + 'Blog Settings' => 'Blog Einstellungen', + 'days.' => 'Tage', 'Email' => 'E-Mail', - 'No posts found.' => '', - 'Enable Markdown' => '', - 'Read more' => '', - 'Content cannot be blank.' => '', + 'No posts found.' => 'Keine Beiträge gefunden.', + 'Enable Markdown' => 'Markdown aktivieren', + 'Read more' => 'Mehr lesen', + 'Content cannot be blank.' => 'Inhalt kann nicht leer sein.', 'Unknown' => 'Unbekannt', - 'Month and name' => '', - 'Close comments on articles older than' => '', + 'Month and name' => 'Monate und Name', + 'Comments are closed.' => 'Kommentare sind geschlossen.', + 'Close comments on articles older than' => 'Schliesse Kommentare zu Artikeln älter als', 'Cancel' => 'Abbrechen', - 'Written by %name% on %date%' => '', - 'Enable nested comments of' => '', + 'Written by %name% on %date%' => 'Geschrieben von %name% am %date%', + 'Enable nested comments of' => 'Erlaube verschachtelte Kommentare bis', 'Restrict Access' => 'Eingeschränkter Zugriff', - 'Comment cannot be blank.' => '', - 'Access denied.' => '', - 'Spam' => '', - 'Leave a comment' => '', - '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', - 'Post' => '', + 'Comment cannot be blank.' => 'Kommentar kann nicht leer sein.', + 'Access denied.' => 'Zugriff verweigert.', + 'Spam' => 'Spam', + 'Leave a comment' => 'Schreibe einen Kommentar', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Keine Kommentare|{1} %num% Kommentar|]1,Inf[ %num% Kommentare', + 'Post' => 'Beitrag', 'View' => 'Ansehen', - 'Numeric' => '', + 'Numeric' => 'Numerisch', 'Name' => 'Name', ); \ No newline at end of file diff --git a/languages/de_DE/messages.php b/languages/de_DE/messages.php index 13404d6..654ba39 100644 --- a/languages/de_DE/messages.php +++ b/languages/de_DE/messages.php @@ -5,34 +5,33 @@ 'Unable to comment. Please try again later.' => 'Kommentieren momentan nicht möglich. Bitte versuche es später erneut.', 'Submit' => 'Senden', 'Comment' => 'Kommentar', - 'Comments are closed.' => 'Kommentare sind geschlossen.', - 'Appearance' => 'Erscheinung', + 'Enable Comments' => 'Kommentare aktivieren', + 'Appearance' => 'Darstellung', 'Draft' => 'Entwurf', 'Author' => 'Autor', 'Permalink' => 'Permalink', 'Slug' => 'Slug', - 'Email invalid.' => 'Email ungültig.', + 'Email invalid.' => 'E-Mail ungültig.', 'Comment not found.' => 'Kommentar wurde nicht gefunden.', 'Filter by' => 'Filtern nach', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Kommentar ausgewählt|]1,Inf[ %count% Kommentare ausgewählt', 'Comments (%count%)' => 'Kommentare (%count%)', 'Title' => 'Titel', - 'Thank you! Your comment needs approval before showing up.' => 'Vielen Dank! Dein Kommentar muss noch genehmigt werden bevor es sichtbar wird. ', - 'Insufficient user rights.' => 'Nicht ausreichende Zugangsrechte.', - 'Posts View' => 'Artikel anzeigen', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Kommentar ausgewählt|]1,Inf[ %count% Kommentare ausgewählt', + 'Insufficient user rights.' => 'Unzureichende Zugriffsrechte.', + 'Posts View' => 'Post anzeigen', 'Default post settings' => 'Standard Post Einstellungen', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Post ausgewählt|]1,Inf[ %count% Posts ausgewählt', 'Comments' => 'Kommentare', 'Image' => 'Bild', - 'Posts' => 'Artikel', - 'Pending' => 'Zu erledigen', + 'Posts' => 'Posts', + 'Pending' => 'Freigabe erforderlich', 'Disabled' => 'Deaktiviert', 'Approved' => 'Genehmigt', - 'Edit Post' => 'Artikel bearbeiten', - 'Enable Comments' => 'Kommentare aktivieren', + 'Edit Post' => 'Post bearbeiten', + 'Thank you! Your comment needs approval before showing up.' => 'Vielen Dank! Dein Kommentar muss noch genehmigt werden bevor er angezeigt wird. ', 'Pending Review' => 'Bewertung', - 'Excerpt' => 'Ausschnitt', - 'Invalid post id.' => 'Ungültige Artikel ID.', + 'Excerpt' => 'Auszug', + 'Invalid post id.' => 'Ungültige Post ID.', 'Blog' => 'Blog', 'Logged in as %name%' => 'Angemeldet als %name%', 'Order comments by' => 'Kommentare ordnen nach', @@ -44,53 +43,54 @@ 'Posts per page' => 'Posts pro Seite', 'E-mail' => 'E-Mail', 'latest last' => 'Datum aufsteigend.', - 'Please wait another %seconds% seconds before commenting again.' => 'Bitte warte %seconds% Sekunden, bevor du erneut einen Kommentar schreibst.', - 'Post not found.' => 'Artikel wurde nicht gefunden.', + 'Please wait another %seconds% seconds before commenting again.' => 'Bitte warte %seconds% Sekunden, bevor du einen neuen Kommentar schreibst.', + 'Post not found.' => 'Post wurde nicht gefunden.', 'No comments found.' => 'Keine Kommentare gefunden.', - 'Publish on' => 'Veröffentlicht am', - 'Name cannot be blank.' => 'Name kann nicht leer sein.', + 'Publish on' => 'Veröffentlichen am', + 'Name cannot be blank.' => 'Name darf nicht leer sein.', 'Invalid slug.' => 'Ungültiger Slug.', 'Please provide valid name and email.' => 'Bitte einen Namen und eine gültige E-Mail Adresse eingeben.', - 'You are not allowed to post comments.' => 'Du kannst keine Kommentare schreiben.', + 'You are not allowed to post comments.' => 'Du darfst keine Kommentare schreiben.', 'Author cannot be blank.' => 'Autor darf nicht leer sein.', 'latest first' => 'Datum absteigend.', 'Unpublished' => 'Unveröffentlicht', - 'Custom' => 'Custom', + 'Custom' => 'Benutzerdefiniert', 'Published' => 'Veröffentlicht', '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts', - 'Add Post' => 'Artikel hinzufügen', + 'Add Post' => 'Post hinzufügen', 'Date' => 'Datum', 'Reply' => 'Antworten', - 'Parent not found.' => 'Elternkommentar wurde nicht gefunden.', + 'Parent not found.' => 'Ursprünglicher Kommentar wurde nicht gefunden.', 'URL' => 'URL', 'Day and name' => 'Tag und Name', 'Options' => 'Optionen', 'Field must be a valid email address.' => 'Gib eine gültige E-Mail Adresse an.', 'levels deep.' => 'Ebenen.', 'Comments on %title%' => 'Kommentare zu %title%', - 'Insufficient User Rights.' => 'Nicht ausreichende Zugangsrechte.', + 'Insufficient User Rights.' => 'Unzureichende Zugriffsrechte.', 'Copy' => 'Kopieren', - 'Post not found!' => 'Artikel wurde nicht gefunden!', + 'Post not found!' => 'Post wurde nicht gefunden!', 'Blog Settings' => 'Blogeinstellungen', 'days.' => 'Tage.', - 'Email' => 'Email', - 'No posts found.' => 'Keine Artikel gefunden.', + 'Email' => 'E-Mail', + 'No posts found.' => 'Keine Posts gefunden.', 'Enable Markdown' => 'Markdown aktivieren', 'Read more' => 'Mehr lesen', 'Content cannot be blank.' => 'Inhalt darf nicht leer sein.', 'Unknown' => 'Unbekannt', 'Month and name' => 'Monat und Name', - 'Close comments on articles older than' => 'Kommentare von Artikeln schließen, die älter sind als', + 'Comments are closed.' => 'Kommentare sind geschlossen.', + 'Close comments on articles older than' => 'Kommentare von Posts schließen, die älter sind als', 'Cancel' => 'Abbrechen', 'Written by %name% on %date%' => 'Geschrieben von %name% am %date%', 'Enable nested comments of' => 'Verschachtelte Kommentare aktivieren für', 'Restrict Access' => 'Zugriff einschränken', 'Comment cannot be blank.' => 'Kommentar darf nicht leer sein.', - 'Access denied.' => 'Zugang untersagt.', + 'Access denied.' => 'Zugriff verweigert.', 'Spam' => 'Spam', 'Leave a comment' => 'Schreibe einen Kommentar', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Keine Kommentare|{1} %num% Kommentar|]1,Inf[ %num% Kommentare', - 'Post' => 'Artikel', + 'Post' => 'Post', 'View' => 'Ansicht', 'Numeric' => 'Numerisch', 'Name' => 'Name', diff --git a/languages/el_GR/messages.php b/languages/el_GR/messages.php index 47a5f59..37996c3 100644 --- a/languages/el_GR/messages.php +++ b/languages/el_GR/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Το σχόλιο απέτυχε. Παρακαλώ προσπαθήστε σε λίγο.', 'Submit' => 'Υποβολή', 'Comment' => 'Σχόλιο', - 'Comments are closed.' => 'Τα σχόλια έχουν απενεργοποιηθεί.', + 'Enable Comments' => 'Ενεργοποιήστε τα Σχόλια', 'Appearance' => 'Εμφάνιση', 'Draft' => 'Προσχέδιο', 'Author' => 'Αρθρογράφος', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Άκυρο email', 'Comment not found.' => 'Δεν βρέθηκε σχόλιο.', 'Filter by' => 'Ταξινόμηση κατα', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Επιλεγμένο σχόλιο|]1,Inf[ %count% Επιλεγμένα σχόλια', 'Comments (%count%)' => 'Σχόλια (%count%)', 'Title' => 'Τίτλος', - 'Thank you! Your comment needs approval before showing up.' => 'Σας ευχαριστούμε! Το σχόλιο σας θα χρειαστεί έγκριση πριν εμφανιστεί.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Επιλεγμένο σχόλιο|]1,Inf[ %count% Επιλεγμένα σχόλια', 'Insufficient user rights.' => 'Ανεπαρκή δικαιώματα χρήστη.', 'Posts View' => 'Προβολή Άρθρων', 'Default post settings' => 'Προεπιλεγμένες ρυθμίσεις άρθρου', @@ -29,7 +28,7 @@ 'Disabled' => 'Απενεργοποιημένο', 'Approved' => 'Εγκρίθηκε', 'Edit Post' => 'Επεξεργασία άρθρου', - 'Enable Comments' => 'Ενεργοποιήστε τα Σχόλια', + 'Thank you! Your comment needs approval before showing up.' => 'Σας ευχαριστούμε! Το σχόλιο σας θα χρειαστεί έγκριση πριν εμφανιστεί.', 'Pending Review' => 'Αναμονή έγκρισης', 'Excerpt' => 'Απόσπασμα', 'Invalid post id.' => 'Άκυρο id άρθρου', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'Το πεδίο περιεχομένου δεν μπορεί να είναι κενό.', 'Unknown' => 'Άγνωστο ', 'Month and name' => 'Μήνας και όνομα', + 'Comments are closed.' => 'Τα σχόλια έχουν απενεργοποιηθεί.', 'Close comments on articles older than' => 'Απενεργοποίηση σχολίων παλαιότερα από', 'Cancel' => 'Άκυρο', 'Written by %name% on %date%' => 'Συντάχθηκε από %name% στις %date%', diff --git a/languages/en_GB/messages.php b/languages/en_GB/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/en_GB/messages.php +++ b/languages/en_GB/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/en_HU/messages.php b/languages/en_HU/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/en_HU/messages.php +++ b/languages/en_HU/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/en_US/messages.php b/languages/en_US/messages.php index 6f628e7..a38f840 100644 --- a/languages/en_US/messages.php +++ b/languages/en_US/messages.php @@ -1,11 +1,11 @@ '', + 'Require e-mail.' => 'Require e-mail.', 'General' => 'General', 'Show Avatars from Gravatar.' => 'Show Avatars from Gravatar.', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'Unable to comment. Please try again later.', + 'Submit' => 'Submit', 'Comment' => 'Comment', - 'Comments are closed.' => 'Comments are closed.', + 'Enable Comments' => 'Enable Comments', 'Appearance' => 'Appearance', 'Draft' => 'Draft', 'Author' => 'Author', @@ -13,23 +13,22 @@ 'Slug' => 'Slug', 'Email invalid.' => 'Email invalid.', 'Comment not found.' => 'Comment not found.', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comment selected|]1,Inf[ %count% Comments selected', + 'Filter by' => 'Filter by', 'Comments (%count%)' => 'Comments (%count%)', 'Title' => 'Title', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comment selected|]1,Inf[ %count% Comments selected', 'Insufficient user rights.' => 'Insufficient user rights.', - 'Posts View' => '', + 'Posts View' => 'Posts View', 'Default post settings' => 'Default post settings', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Post selected|]1,Inf[ %count% Posts selected', 'Comments' => 'Comments', 'Image' => 'Image', 'Posts' => 'Posts', 'Pending' => 'Pending', - 'Disabled' => '', + 'Disabled' => 'Disabled', 'Approved' => 'Approved', 'Edit Post' => 'Edit Post', - 'Enable Comments' => 'Enable Comments', + 'Thank you! Your comment needs approval before showing up.' => 'Thank you! Your comment needs approval before showing up.', 'Pending Review' => 'Pending Review', 'Excerpt' => 'Excerpt', 'Invalid post id.' => 'Invalid post id.', @@ -43,7 +42,7 @@ 'Please login to leave a comment.' => 'Please login to leave a comment.', 'Posts per page' => 'Posts per page', 'E-mail' => 'E-mail', - 'latest last' => '', + 'latest last' => 'latest last', 'Please wait another %seconds% seconds before commenting again.' => 'Please wait another %seconds% seconds before commenting again.', 'Post not found.' => 'Post not found.', 'No comments found.' => 'No comments found.', @@ -53,7 +52,7 @@ 'Please provide valid name and email.' => 'Please provide valid name and email.', 'You are not allowed to post comments.' => 'You are not allowed to post comments.', 'Author cannot be blank.' => 'Author cannot be blank.', - 'latest first' => '', + 'latest first' => 'latest first', 'Unpublished' => 'Unpublished', 'Custom' => 'Custom', 'Published' => 'Published', @@ -76,10 +75,11 @@ 'Email' => 'Email', 'No posts found.' => 'No posts found.', 'Enable Markdown' => 'Enable Markdown', - 'Read more' => '', + 'Read more' => 'Read more', 'Content cannot be blank.' => 'Content cannot be blank.', 'Unknown' => 'Unknown', 'Month and name' => 'Month and name', + 'Comments are closed.' => 'Comments are closed.', 'Close comments on articles older than' => 'Close comments on articles older than', 'Cancel' => 'Cancel', 'Written by %name% on %date%' => 'Written by %name% on %date%', @@ -91,7 +91,7 @@ 'Leave a comment' => 'Leave a comment', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments', 'Post' => 'Post', - 'View' => '', + 'View' => 'View', 'Numeric' => 'Numeric', 'Name' => 'Name', ); \ No newline at end of file diff --git a/languages/es_419/messages.php b/languages/es_419/messages.php index 92f6838..50bf44f 100644 --- a/languages/es_419/messages.php +++ b/languages/es_419/messages.php @@ -1,39 +1,38 @@ '', + 'Require e-mail.' => 'Correo electrónico requerido.', 'General' => 'General', 'Show Avatars from Gravatar.' => 'Mostrar Avatars de Gravatar.', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'No es posible comentar. Por favor intente más tarde.', + 'Submit' => 'Enviar', 'Comment' => 'Comentario', - 'Comments are closed.' => 'Los comentarios están cerrados.', + 'Enable Comments' => 'Habilitar Comentarios', 'Appearance' => 'Apariencia', 'Draft' => 'Borrador', 'Author' => 'Autor', - 'Permalink' => 'Permalink', + 'Permalink' => 'Enlace Permanente', 'Slug' => 'Slug', 'Email invalid.' => 'Correo no válido.', 'Comment not found.' => 'Comentario no encontrado.', 'Filter by' => 'Filtrar por', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentario seleccionado|]1,Inf[ %count% Comentarios seleccionados', 'Comments (%count%)' => 'Comentarios (%count%)', 'Title' => 'Título', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => 'Derechos de usuario insuficientes.', - 'Posts View' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentario seleccionado|]1,Inf[ %count% Comentarios seleccionados', + 'Insufficient user rights.' => 'Permisos de usuario insuficientes.', + 'Posts View' => 'Publicaciones Vistas', 'Default post settings' => 'Configuraciones de publicación por omisión', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Publicación seleccionada|]1,Inf[ %count% Publicaciones seleccionadas', 'Comments' => 'Comentarios', 'Image' => 'Imagen', 'Posts' => 'Publicaciones', 'Pending' => 'Pendiente', - 'Disabled' => '', + 'Disabled' => 'Deshabilitado', 'Approved' => 'Aprobado', 'Edit Post' => 'Editar Publicación', - 'Enable Comments' => 'Habilitar Comentarios', + 'Thank you! Your comment needs approval before showing up.' => '¡Gracias! Su comentario necesita aprobación para poderse visualizar.', 'Pending Review' => 'Revisión Pendiente', 'Excerpt' => 'Extracto', 'Invalid post id.' => 'Id de publicación inválida.', - 'Blog' => 'Blog', + 'Blog' => 'Bitácora', 'Logged in as %name%' => 'Ingresó como %name%', 'Order comments by' => 'Ordenar comentarios por', 'Title cannot be blank.' => 'El título no puede estar en blanco.', @@ -42,8 +41,8 @@ '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% Comentarios|{1} %count% Comentario|]1,Inf[ %count% Comentarios', 'Please login to leave a comment.' => 'Por favor, ingrese para dejar un comentario.', 'Posts per page' => 'Publicaciones por página', - 'E-mail' => 'Correo', - 'latest last' => '', + 'E-mail' => 'Correo Electrónico', + 'latest last' => 'los antiguos de último', 'Please wait another %seconds% seconds before commenting again.' => 'Por favor, espere otros %seconds% segundos antes de comentar de nuevo.', 'Post not found.' => 'Publicación no encontrada.', 'No comments found.' => 'No se encuentran comentarios.', @@ -53,7 +52,7 @@ 'Please provide valid name and email.' => 'Por favor, escriba nombre y correo válidos.', 'You are not allowed to post comments.' => 'No te está permitido publicar comentarios.', 'Author cannot be blank.' => 'El autor no puede estar en blanco.', - 'latest first' => '', + 'latest first' => 'primero los antiguos', 'Unpublished' => 'No publicado', 'Custom' => 'Personalizado', 'Published' => 'Publicado', @@ -68,18 +67,19 @@ 'Field must be a valid email address.' => 'Debe contener una dirección válida de correo.', 'levels deep.' => 'niveles de profundidad.', 'Comments on %title%' => 'Comentarios en %title%', - 'Insufficient User Rights.' => 'Derechos De Usuario Insuficientes.', + 'Insufficient User Rights.' => 'Permisos de Usuario Insuficientes.', 'Copy' => 'Copiar', - 'Post not found!' => 'Publicación no encontrada!', - 'Blog Settings' => 'Configuraciones De Blog', + 'Post not found!' => '¡Publicación no encontrada!', + 'Blog Settings' => 'Configuraciones de Bitácora', 'days.' => 'días.', 'Email' => 'Correo', 'No posts found.' => 'No se encuentran publicaciones.', 'Enable Markdown' => 'Habilitar Markdown', - 'Read more' => '', + 'Read more' => 'Leer más', 'Content cannot be blank.' => 'El contenido no puede estar en blanco.', 'Unknown' => 'Desconocido', 'Month and name' => 'Mes y nombre', + 'Comments are closed.' => 'Los comentarios están cerrados.', 'Close comments on articles older than' => 'Cerrar comentarios en artículos mayores a', 'Cancel' => 'Cancelar', 'Written by %name% on %date%' => 'Escrito por %name% en la fecha %date%', diff --git a/languages/es_CL/messages.php b/languages/es_CL/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/es_CL/messages.php +++ b/languages/es_CL/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/es_CO/messages.php b/languages/es_CO/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/es_CO/messages.php +++ b/languages/es_CO/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/es_ES/messages.php b/languages/es_ES/messages.php index 3266fe8..1d0e88b 100644 --- a/languages/es_ES/messages.php +++ b/languages/es_ES/messages.php @@ -1,97 +1,97 @@ '', + 'Require e-mail.' => 'Email requerido.', 'General' => 'General', 'Show Avatars from Gravatar.' => 'Mostrar avatares de Gravatar.', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'Imposible comentar. Prueba más tarde.', + 'Submit' => 'Enviar', 'Comment' => 'Comentario', - 'Comments are closed.' => '', + 'Enable Comments' => 'Activar Comentarios', 'Appearance' => 'Apariencia', 'Draft' => 'Papelera', 'Author' => 'Autor', 'Permalink' => 'Link permanente', - 'Slug' => '', - 'Email invalid.' => '', - 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Slug' => 'Alias', + 'Email invalid.' => 'Email inválido.', + 'Comment not found.' => 'Comentario no encontrado.', + 'Filter by' => 'Filtrar por', 'Comments (%count%)' => 'Comentarios', - 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => '', - 'Posts View' => '', - 'Default post settings' => '', - '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Title' => 'Título', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentario seleccionado|]1,Inf[ %count% Comentarios seleccionados', + 'Insufficient user rights.' => 'Permisos de usuario insuficientes.', + 'Posts View' => 'Ver entradas', + 'Default post settings' => 'Opciones de entradas por defecto', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Entrada seleccionada|]1,Inf[ %count% Entradas seleccionadas', 'Comments' => 'Comentarios', - 'Image' => '', + 'Image' => 'Imagen', 'Posts' => 'Entradas', 'Pending' => 'Pendiente', - 'Disabled' => '', + 'Disabled' => 'Desactivado', 'Approved' => 'Aprobado', 'Edit Post' => 'Editar entrada', - 'Enable Comments' => 'Activar Comentarios', + 'Thank you! Your comment needs approval before showing up.' => 'Gracias! Tu comentario requiere una aprobación antes de publicarse.', 'Pending Review' => 'Pendientes por revisión', 'Excerpt' => 'Extracto', 'Invalid post id.' => 'ID de entrada inválido.', 'Blog' => 'Blog', 'Logged in as %name%' => 'Conectado como %name%', 'Order comments by' => 'Ordenar comentarios por', - 'Title cannot be blank.' => '', - 'Save' => '', - 'Status' => '', - '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Title cannot be blank.' => 'El título no puede estar vacío.', + 'Save' => 'Guardar', + 'Status' => 'Estado', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% Comentarios|{1} %count% Comentario|]1,Inf[ %count% Comentarios', 'Please login to leave a comment.' => 'Inicia sesión para dejar un comentario.', - 'Posts per page' => '', + 'Posts per page' => 'Entradas por página', 'E-mail' => 'Correo electrónico', - 'latest last' => '', + 'latest last' => 'últimos de último.', 'Please wait another %seconds% seconds before commenting again.' => 'Por favor espera otros %seconds% segundos antes de comentar de nuevo.', - 'Post not found.' => '', + 'Post not found.' => 'Entrada no encontrada.', 'No comments found.' => 'No se han encontrado comentarios.', 'Publish on' => 'Publicado en', - 'Name cannot be blank.' => '', - 'Invalid slug.' => '', + 'Name cannot be blank.' => 'El nombre no puede estar vacío.', + 'Invalid slug.' => 'Slug inválido.', 'Please provide valid name and email.' => 'Por favor intruduzca un nombre y correo electrónico válido.', 'You are not allowed to post comments.' => 'Usted no tiene permitido publicar comentarios.', - 'Author cannot be blank.' => '', - 'latest first' => '', + 'Author cannot be blank.' => 'El autor no puede estar vacío.', + 'latest first' => 'últimos de primero', 'Unpublished' => 'Despublicado', 'Custom' => 'Personalizado', 'Published' => 'Publicado', - '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '{0} %count% Entradas|{1} %count% Entrada|]1,Inf[ %count% Entradas', 'Add Post' => 'Añadir Entrada', 'Date' => 'Fecha', 'Reply' => 'Responder', - 'Parent not found.' => '', - 'URL' => '', + 'Parent not found.' => 'Ruta no encontrada.', + 'URL' => 'URL', 'Day and name' => 'Día y nombre', - 'Options' => '', - 'Field must be a valid email address.' => '', + 'Options' => 'Opciones', + 'Field must be a valid email address.' => 'Este campo debe ser una dirección de correo electrónico válida.', 'levels deep.' => 'niveles de profundidad', 'Comments on %title%' => 'Comentarios sobre %title%', - 'Insufficient User Rights.' => '', - 'Copy' => '', - 'Post not found!' => '', - 'Blog Settings' => '', - 'days.' => 'dias.', - 'Email' => '', + 'Insufficient User Rights.' => 'Permisos de usuario insuficientes.', + 'Copy' => 'Copiar', + 'Post not found!' => '¡Entrada no encontrada!', + 'Blog Settings' => 'Ajustes del blog', + 'days.' => 'días.', + 'Email' => 'Email', 'No posts found.' => 'No se han encontrado entradas.', - 'Enable Markdown' => '', - 'Read more' => '', - 'Content cannot be blank.' => '', - 'Unknown' => '', + 'Enable Markdown' => 'Activar Markdown', + 'Read more' => 'Leer más', + 'Content cannot be blank.' => 'El contenido no puede estar vacío.', + 'Unknown' => 'Desconocido', 'Month and name' => 'Mes y nombre', + 'Comments are closed.' => 'Comentarios cerrados.', 'Close comments on articles older than' => 'Cerrar comentarios en artículos mas antiguos que', - 'Cancel' => '', + 'Cancel' => 'Cancelar', 'Written by %name% on %date%' => 'Escrito por %name%, el %date%', 'Enable nested comments of' => 'Activar nidos de comentarios desde', - 'Restrict Access' => '', - 'Comment cannot be blank.' => '', - 'Access denied.' => '', + 'Restrict Access' => 'Acceso restringido', + 'Comment cannot be blank.' => 'El comentario no puede estar vacío.', + 'Access denied.' => 'Permiso denegado.', 'Spam' => 'Spam', 'Leave a comment' => 'Dejar un comentario', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Ningun comentario|{1} %num% Comentario|]1,Inf[ %num% Comentarios', 'Post' => 'Entrada', - 'View' => '', + 'View' => 'Vista', 'Numeric' => 'Numérico', - 'Name' => '', + 'Name' => 'Nombre', ); \ No newline at end of file diff --git a/languages/es_MX/messages.php b/languages/es_MX/messages.php index 09701b3..29c442b 100644 --- a/languages/es_MX/messages.php +++ b/languages/es_MX/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'No es posible comentar. Por favor pruebe más tarde.', 'Submit' => 'Enviar', 'Comment' => '', - 'Comments are closed.' => 'Los comentarios están cerrados', + 'Enable Comments' => '', 'Appearance' => 'Apariencia', 'Draft' => 'Borrador', 'Author' => 'Autor', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => 'Comentario no encontrado.', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => 'Título', - 'Thank you! Your comment needs approval before showing up.' => 'Gracias! Su comentario necesita ser aprobado antes de mostrarse.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'Aprobado', 'Edit Post' => 'Editar Publicación', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => 'Gracias! Su comentario necesita ser aprobado antes de mostrarse.', 'Pending Review' => 'Revisión Pendiente', 'Excerpt' => '', 'Invalid post id.' => 'Identificación de publicación inválida.', @@ -37,7 +36,7 @@ 'Logged in as %name%' => '', 'Order comments by' => 'Ordenar comentarios por', 'Title cannot be blank.' => '', - 'Save' => '', + 'Save' => 'Guardar', 'Status' => '', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', 'Please login to leave a comment.' => '', @@ -62,7 +61,7 @@ 'Date' => 'Fecha', 'Reply' => '', 'Parent not found.' => '', - 'URL' => '', + 'URL' => 'URL', 'Day and name' => 'Día y nombre', 'Options' => '', 'Field must be a valid email address.' => '', @@ -80,16 +79,17 @@ 'Content cannot be blank.' => '', 'Unknown' => 'Desconocido', 'Month and name' => 'Mes y nombre', + 'Comments are closed.' => 'Los comentarios están cerrados', 'Close comments on articles older than' => '', 'Cancel' => 'Cancelar', - 'Written by %name% on %date%' => '', + 'Written by %name% on %date%' => 'Escrito por %name% en %date%', 'Enable nested comments of' => '', 'Restrict Access' => '', 'Comment cannot be blank.' => '', 'Access denied.' => 'Acceso denegado.', 'Spam' => '', 'Leave a comment' => 'Deje un comentario', - '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} No comentarios|{1} %num% Comentario|]1,Inf[ %num% Comentarios', 'Post' => '', 'View' => '', 'Numeric' => 'Numérico', diff --git a/languages/fa/messages.php b/languages/fa/messages.php index 914f4e4..0e37108 100644 --- a/languages/fa/messages.php +++ b/languages/fa/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', @@ -91,7 +91,7 @@ 'Leave a comment' => '', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', 'Post' => '', - 'View' => '', + 'View' => 'نمایش', 'Numeric' => '', 'Name' => '', ); \ No newline at end of file diff --git a/languages/fa_IR/messages.php b/languages/fa_IR/messages.php index ca48488..8a915e5 100644 --- a/languages/fa_IR/messages.php +++ b/languages/fa_IR/messages.php @@ -1,97 +1,97 @@ '', + 'Require e-mail.' => 'ایمیل مورد نیاز است.', 'General' => 'عمومی', 'Show Avatars from Gravatar.' => 'آواتارها را از Gravatar نمایش بده.', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'ارسال دیدگاه ممکن نیست. لطفا بعدا دوباره سعی نمایید.', + 'Submit' => 'ارسال', 'Comment' => 'دیدگاه', - 'Comments are closed.' => '', + 'Enable Comments' => 'فعال سازی نظرات', 'Appearance' => 'ظاهر', 'Draft' => 'پیش نویس', 'Author' => 'نویسنده', 'Permalink' => 'لینک ثابت', 'Slug' => 'انتظار', - 'Email invalid.' => '', - 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Email invalid.' => 'آدرس پست الکترونیک معتبر نمی باشد .', + 'Comment not found.' => 'دیدگاه یافت نشد.', + 'Filter by' => 'فیلتر کن بوسیله', 'Comments (%count%)' => 'دیدگاه (%count%)', - 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => '', - 'Posts View' => '', - 'Default post settings' => '', - '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Title' => 'عنوان', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% دیدگاه انتخاب شد|]1,Inf[ %count% دیدگاه انتخاب شد', + 'Insufficient user rights.' => 'حقوق کاربر کافی نمی باشد.', + 'Posts View' => 'مشاهده پست ها', + 'Default post settings' => 'تنظیمات پیشفرض پست', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% پست انتخاب شده است|]1,Inf[ %count% پست انتخاب شده است', 'Comments' => 'دیدگاه ها', - 'Image' => '', + 'Image' => 'تصویر', 'Posts' => 'ارسالها', 'Pending' => 'در حال انتظار', - 'Disabled' => '', + 'Disabled' => 'غیرفعال', 'Approved' => 'تائید شده', 'Edit Post' => 'پست ویرایش شد.', - 'Enable Comments' => 'فعال سازی نظرات', + 'Thank you! Your comment needs approval before showing up.' => 'متشکریم! دیدگاه شما قبل از نمایش نیاز است تا تائید شود.', 'Pending Review' => 'در انتظار بررسی و تائید.', 'Excerpt' => 'خلاصه', 'Invalid post id.' => 'شناسه ی پست نامعتبر است.', 'Blog' => 'وبلاگ', 'Logged in as %name%' => 'وارد شده به نام %name%', 'Order comments by' => 'مرتب کردن نظرات بر اساس ', - 'Title cannot be blank.' => '', - 'Save' => '', - 'Status' => '', - '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Title cannot be blank.' => 'عنوان نمی تواند خالی رها شود.', + 'Save' => 'ذخیره', + 'Status' => 'وضعیت', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} بدون دیدگاه|{1} %count% دیدگاه|]1,Inf[ %count% دیدگاه', 'Please login to leave a comment.' => 'لطفا برای ارسال دیدگاه وارد شوید.', - 'Posts per page' => '', + 'Posts per page' => 'تعداد پست ها در هر صفحه ', 'E-mail' => 'پست الکترونیک', - 'latest last' => '', + 'latest last' => 'جدید آخر', 'Please wait another %seconds% seconds before commenting again.' => 'لطفا %seconds% ثانیه صبر کنید و سپس دیدگاه خود را ارسال کنید.', - 'Post not found.' => '', + 'Post not found.' => 'پست یافت نشد.', 'No comments found.' => 'نظری پیدا نشد', 'Publish on' => 'منتشر شده در', - 'Name cannot be blank.' => '', - 'Invalid slug.' => '', + 'Name cannot be blank.' => 'نام نمی تواند خالی رها شود.', + 'Invalid slug.' => 'نامک نامعتبر است.', 'Please provide valid name and email.' => 'لطفا یک نام و ایمیل قابل قبول را وارد کنید.', 'You are not allowed to post comments.' => 'شما اجازه ارسال دیدگاه را ندارید.', - 'Author cannot be blank.' => '', - 'latest first' => '', + 'Author cannot be blank.' => 'نویسنده نمی تواند خالی رها شود.', + 'latest first' => 'جدید اول', 'Unpublished' => 'منتشر نشده', 'Custom' => 'سفارشی', 'Published' => 'منتشر شده', - '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '{0} %count% پست|{1} %count% پست|]1,Inf[ %count% پست', 'Add Post' => 'افزودن پست', 'Date' => 'تاریخ', 'Reply' => 'پاسخ', - 'Parent not found.' => '', - 'URL' => '', + 'Parent not found.' => 'والد یافت نشد.', + 'URL' => 'آدرس ', 'Day and name' => 'روز و نام', - 'Options' => '', - 'Field must be a valid email address.' => '', + 'Options' => 'گزینه ها', + 'Field must be a valid email address.' => 'ایمیل وارد شده باید معتبر باشد.', 'levels deep.' => 'عمق مراحل', 'Comments on %title%' => 'دیدگاه در %title%', - 'Insufficient User Rights.' => '', - 'Copy' => '', + 'Insufficient User Rights.' => 'حقوق کاربر کافی نمی باشد.', + 'Copy' => 'کپی', 'Post not found!' => 'پست پیدا نشد!', - 'Blog Settings' => '', + 'Blog Settings' => 'تنظیمات وبلاگ', 'days.' => 'روزها.', - 'Email' => '', + 'Email' => 'پست الکترونیک', 'No posts found.' => 'هیچ پستی پیدا نشد', - 'Enable Markdown' => '', - 'Read more' => '', - 'Content cannot be blank.' => '', - 'Unknown' => '', + 'Enable Markdown' => 'فعال سازی Markdown', + 'Read more' => 'بیشتر بخوانید', + 'Content cannot be blank.' => 'محتوا نمی تواند خالی رها شود', + 'Unknown' => 'ناشناس', 'Month and name' => 'تاریخ و نام', + 'Comments are closed.' => 'دیدگاه ها بسته شده است.', 'Close comments on articles older than' => 'غیر فعال کردن ارسال نظر در مطالب قدیمیتر از', - 'Cancel' => '', + 'Cancel' => 'انصراف', 'Written by %name% on %date%' => 'نوشته شده توسط %name% در %date%', 'Enable nested comments of' => 'فعال کردن نظرات تو در تو', - 'Restrict Access' => '', - 'Comment cannot be blank.' => '', - 'Access denied.' => '', + 'Restrict Access' => 'محدود کردن دسترسی', + 'Comment cannot be blank.' => 'دیدگاه نمی تواند خالی رها شود.', + 'Access denied.' => 'دسترسی ممنوع است.', 'Spam' => 'اسپم', 'Leave a comment' => 'ارسال دیدگاه', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} بدون دیدگاه|{1} %num% دیدگاه|]1,Inf[ %num% دیدگاه', 'Post' => 'پست', - 'View' => '', + 'View' => 'مشاهده', 'Numeric' => 'عددی', - 'Name' => '', + 'Name' => 'نام', ); \ No newline at end of file diff --git a/languages/fi_FI/messages.php b/languages/fi_FI/messages.php index 693e943..7ef78e7 100644 --- a/languages/fi_FI/messages.php +++ b/languages/fi_FI/messages.php @@ -1,59 +1,58 @@ '', + 'Require e-mail.' => 'Vaadi sähköpostiosoite.', 'General' => 'Yleinen', 'Show Avatars from Gravatar.' => 'Näytä avatarit Gravatarista', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'Ei voida komentoida. Yritä myöhemmin uudestaan.', + 'Submit' => 'Lähetä', 'Comment' => 'Kommentoi', - 'Comments are closed.' => '', + 'Enable Comments' => 'Salli kommentointi', 'Appearance' => 'Ulkoasu', 'Draft' => 'Luonnos', 'Author' => 'Julkaisija', 'Permalink' => 'Pysyvä linkki', - 'Slug' => '', - 'Email invalid.' => '', - 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Slug' => 'Slug', + 'Email invalid.' => 'Virheellinen sähköpostiosoite', + 'Comment not found.' => 'Kommenttia ei löydy.', + 'Filter by' => 'Suodata', 'Comments (%count%)' => 'Kommentit (%count%)', - 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => '', - 'Posts View' => '', - 'Default post settings' => '', + 'Title' => 'Otsikko', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => 'Käyttöoikeudet puuttuvat', + 'Posts View' => 'Kirjoitusten selaus', + 'Default post settings' => 'Kirjoituksen oletusasetukset', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', 'Comments' => 'Kommentit', - 'Image' => '', + 'Image' => 'Kuva', 'Posts' => 'Kirjoitukset', 'Pending' => 'Odottaa', - 'Disabled' => '', + 'Disabled' => 'Ei käytössä', 'Approved' => 'Hyväksytty', 'Edit Post' => 'Muokkaa kirjoitusta', - 'Enable Comments' => 'Salli kommentointi', + 'Thank you! Your comment needs approval before showing up.' => 'Kiitos. Kommenttisi vaatii hyväksynnän ennen näkymistä', 'Pending Review' => 'Odottaa hyväksyntää', 'Excerpt' => 'Poiminta', 'Invalid post id.' => 'Virheellinen kirjoituksen tunniste', 'Blog' => 'Blogi', 'Logged in as %name%' => 'Kirjautuneena sisään nimellä %name%', 'Order comments by' => 'Järjestä kommentit', - 'Title cannot be blank.' => '', - 'Save' => '', - 'Status' => '', + 'Title cannot be blank.' => 'Otsikko ei voi olla tyhjä', + 'Save' => 'Tallenna', + 'Status' => 'Tila', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', 'Please login to leave a comment.' => 'Kirjaudu sisään kommentoidaksesi', - 'Posts per page' => '', + 'Posts per page' => 'Kirjoituksia per sivu', 'E-mail' => 'Sähköposti', - 'latest last' => '', + 'latest last' => 'uusin viimeisenä', 'Please wait another %seconds% seconds before commenting again.' => 'Odota %seconds% sekunttia ennen uuden kommentin lähettämistä', - 'Post not found.' => '', + 'Post not found.' => 'Kirjoitusta ei löydy.', 'No comments found.' => 'Ei kommentteja', 'Publish on' => 'Julkaisuajankohta', - 'Name cannot be blank.' => '', - 'Invalid slug.' => '', + 'Name cannot be blank.' => 'Nimi ei voi olla tyhjä', + 'Invalid slug.' => 'Virheellinen slug', 'Please provide valid name and email.' => 'Anna oikea nimi ja sähköpostiosoite', 'You are not allowed to post comments.' => 'Et voi lähettää kommentteja', - 'Author cannot be blank.' => '', - 'latest first' => '', + 'Author cannot be blank.' => 'Julkaisija ei voi olla tyhjä.', + 'latest first' => 'uusin ensimmäisenä', 'Unpublished' => 'Piilotettu', 'Custom' => 'Mukautettu', 'Published' => 'Julkaistu', @@ -62,36 +61,37 @@ 'Date' => 'Päivä', 'Reply' => 'Vastaa', 'Parent not found.' => '', - 'URL' => '', + 'URL' => 'URL', 'Day and name' => 'Aika ja nimi', - 'Options' => '', - 'Field must be a valid email address.' => '', + 'Options' => 'Valinnat', + 'Field must be a valid email address.' => 'Sähköpostiosoitteen on oltava oikea', 'levels deep.' => 'tasoa', 'Comments on %title%' => 'Commentit kirjoituksessa %title%', - 'Insufficient User Rights.' => '', - 'Copy' => '', - 'Post not found!' => '', - 'Blog Settings' => '', + 'Insufficient User Rights.' => 'Käyttöoikeudet puuttuvat', + 'Copy' => 'Kopioi', + 'Post not found!' => 'Kirjoitusta ei löydy!', + 'Blog Settings' => 'Blogin Asetukset', 'days.' => 'päivää', - 'Email' => '', + 'Email' => 'Sähköposti', 'No posts found.' => 'Ei kirjoituksia', - 'Enable Markdown' => '', - 'Read more' => '', - 'Content cannot be blank.' => '', - 'Unknown' => '', + 'Enable Markdown' => 'Ota Markdown käyttöön', + 'Read more' => 'Lue lisää', + 'Content cannot be blank.' => 'Sisältö ei voi olla tyhjä.', + 'Unknown' => 'Tuntematon', 'Month and name' => 'Kuukausi ja nimi', + 'Comments are closed.' => 'Kommentointi on suljettu.', 'Close comments on articles older than' => 'Sulje kommentointi kirjoituksissa jotka ovat vanhempia kuin', - 'Cancel' => '', + 'Cancel' => 'Peruuta', 'Written by %name% on %date%' => 'Kirjoittanut %name% %date%', 'Enable nested comments of' => 'Salli sisäkkäiset kommentit', - 'Restrict Access' => '', - 'Comment cannot be blank.' => '', - 'Access denied.' => '', + 'Restrict Access' => 'Rajoita näkyvyyttä', + 'Comment cannot be blank.' => 'Kommenti ei voi olla tyhjä', + 'Access denied.' => 'Pääsy kielletty.', 'Spam' => 'Roskaposti', 'Leave a comment' => 'Jätä kommentti', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Ei kommentteja|{1} %num% kommentti|]1,Inf[ %num% kommenttia', 'Post' => 'Kirjoitus', - 'View' => '', + 'View' => 'Näytä', 'Numeric' => 'Numeerinen', - 'Name' => '', + 'Name' => 'Nimi', ); \ No newline at end of file diff --git a/languages/fr_CA/messages.php b/languages/fr_CA/messages.php new file mode 100644 index 0000000..bf2fde4 --- /dev/null +++ b/languages/fr_CA/messages.php @@ -0,0 +1,97 @@ + '', + 'General' => '', + 'Show Avatars from Gravatar.' => '', + 'Unable to comment. Please try again later.' => '', + 'Submit' => '', + 'Comment' => '', + 'Enable Comments' => '', + 'Appearance' => '', + 'Draft' => '', + 'Author' => '', + 'Permalink' => '', + 'Slug' => '', + 'Email invalid.' => '', + 'Comment not found.' => '', + 'Filter by' => '', + 'Comments (%count%)' => '', + 'Title' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => '', + 'Posts View' => '', + 'Default post settings' => '', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Comments' => '', + 'Image' => '', + 'Posts' => '', + 'Pending' => '', + 'Disabled' => '', + 'Approved' => '', + 'Edit Post' => '', + 'Thank you! Your comment needs approval before showing up.' => '', + 'Pending Review' => '', + 'Excerpt' => '', + 'Invalid post id.' => '', + 'Blog' => '', + 'Logged in as %name%' => '', + 'Order comments by' => '', + 'Title cannot be blank.' => '', + 'Save' => '', + 'Status' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Please login to leave a comment.' => '', + 'Posts per page' => '', + 'E-mail' => '', + 'latest last' => '', + 'Please wait another %seconds% seconds before commenting again.' => '', + 'Post not found.' => '', + 'No comments found.' => '', + 'Publish on' => '', + 'Name cannot be blank.' => '', + 'Invalid slug.' => '', + 'Please provide valid name and email.' => '', + 'You are not allowed to post comments.' => '', + 'Author cannot be blank.' => '', + 'latest first' => '', + 'Unpublished' => '', + 'Custom' => '', + 'Published' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + 'Add Post' => '', + 'Date' => '', + 'Reply' => '', + 'Parent not found.' => '', + 'URL' => '', + 'Day and name' => '', + 'Options' => '', + 'Field must be a valid email address.' => '', + 'levels deep.' => '', + 'Comments on %title%' => '', + 'Insufficient User Rights.' => '', + 'Copy' => '', + 'Post not found!' => '', + 'Blog Settings' => '', + 'days.' => '', + 'Email' => '', + 'No posts found.' => '', + 'Enable Markdown' => '', + 'Read more' => '', + 'Content cannot be blank.' => '', + 'Unknown' => '', + 'Month and name' => '', + 'Comments are closed.' => '', + 'Close comments on articles older than' => '', + 'Cancel' => '', + 'Written by %name% on %date%' => '', + 'Enable nested comments of' => '', + 'Restrict Access' => '', + 'Comment cannot be blank.' => '', + 'Access denied.' => '', + 'Spam' => '', + 'Leave a comment' => '', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', + 'Post' => '', + 'View' => '', + 'Numeric' => '', + 'Name' => '', +); \ No newline at end of file diff --git a/languages/fr_CH/messages.php b/languages/fr_CH/messages.php index 6a373bf..a90b7a2 100644 --- a/languages/fr_CH/messages.php +++ b/languages/fr_CH/messages.php @@ -1,11 +1,11 @@ '', - 'General' => '', + 'General' => 'Général', 'Show Avatars from Gravatar.' => '', 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -13,11 +13,10 @@ 'Slug' => '', 'Email invalid.' => '', 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Filter by' => 'Filtrer par', 'Comments (%count%)' => '', 'Title' => 'Titre', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -26,19 +25,19 @@ 'Image' => 'Image', 'Posts' => '', 'Pending' => '', - 'Disabled' => '', + 'Disabled' => 'Désactiver', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', 'Blog' => '', 'Logged in as %name%' => '', 'Order comments by' => '', - 'Title cannot be blank.' => '', + 'Title cannot be blank.' => 'Le titre ne peut pas être vide', 'Save' => 'Sauvegarder', - 'Status' => '', + 'Status' => 'Status', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', 'Please login to leave a comment.' => '', 'Posts per page' => '', @@ -48,7 +47,7 @@ 'Post not found.' => '', 'No comments found.' => '', 'Publish on' => '', - 'Name cannot be blank.' => '', + 'Name cannot be blank.' => 'Le nom ne peut pas être vide.', 'Invalid slug.' => '', 'Please provide valid name and email.' => '', 'You are not allowed to post comments.' => '', @@ -65,33 +64,34 @@ 'URL' => 'URL', 'Day and name' => '', 'Options' => '', - 'Field must be a valid email address.' => '', + 'Field must be a valid email address.' => 'Le champ doit être une adresse email valide.', 'levels deep.' => '', 'Comments on %title%' => '', - 'Insufficient User Rights.' => '', - 'Copy' => '', + 'Insufficient User Rights.' => 'Droits utilisateurs insuffisants.', + 'Copy' => 'Copier', 'Post not found!' => '', 'Blog Settings' => '', 'days.' => '', - 'Email' => '', + 'Email' => 'Email', 'No posts found.' => '', - 'Enable Markdown' => '', + 'Enable Markdown' => 'Activer Markdown', 'Read more' => '', 'Content cannot be blank.' => '', - 'Unknown' => '', + 'Unknown' => 'Inconnu', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => 'Annuler', 'Written by %name% on %date%' => '', 'Enable nested comments of' => '', - 'Restrict Access' => '', + 'Restrict Access' => 'Accès restreint', 'Comment cannot be blank.' => '', 'Access denied.' => '', 'Spam' => '', 'Leave a comment' => '', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', 'Post' => '', - 'View' => '', + 'View' => 'Vue', 'Numeric' => '', - 'Name' => '', + 'Name' => 'Nom', ); \ No newline at end of file diff --git a/languages/fr_FR/messages.php b/languages/fr_FR/messages.php index ed9aec1..c500d40 100644 --- a/languages/fr_FR/messages.php +++ b/languages/fr_FR/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Impossible de commenter. Veuillez réessayer ultérieurement.', 'Submit' => 'Envoyer', 'Comment' => 'Commentaire', - 'Comments are closed.' => 'Les commentaires sont fermés.', + 'Enable Comments' => 'Activer les commentaires', 'Appearance' => 'Apparence', 'Draft' => 'Brouillon', 'Author' => 'Auteur', @@ -14,30 +14,29 @@ 'Email invalid.' => 'Email non valide.', 'Comment not found.' => 'Commentaire non trouvé.', 'Filter by' => 'Filtrer par', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Commentaire sélectionné|]1,Inf[ %count% Commentaires sélectionnés', 'Comments (%count%)' => 'Commentaires (%count%)', 'Title' => 'Titre', - 'Thank you! Your comment needs approval before showing up.' => 'Merci! Votre commentaire doit être validé avant d\'apparaître', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Commentaire sélectionné|]1,Inf[ %count% Commentaires sélectionnés', 'Insufficient user rights.' => 'Droits de l\'utilisateur insuffisants.', 'Posts View' => 'Liste des articles', - 'Default post settings' => 'Les paramètres par défaut de l\'article', + 'Default post settings' => 'Paramètres par défaut de l\'article', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Article sélectionné|]1,Inf[ %count% Articles sélectionnés', 'Comments' => 'Commentaires', 'Image' => 'Image', 'Posts' => 'Articles', 'Pending' => 'En attente', - 'Disabled' => '', + 'Disabled' => 'Désactivé', 'Approved' => 'Approuvé', 'Edit Post' => 'Modifier l\'article', - 'Enable Comments' => 'Activer Les Commentaires', + 'Thank you! Your comment needs approval before showing up.' => 'Merci! Votre commentaire doit être validé avant d\'apparaître', 'Pending Review' => 'En attente de relecture', 'Excerpt' => 'Résumé', 'Invalid post id.' => 'L\'id de l\'article est invalide.', 'Blog' => 'Blog', 'Logged in as %name%' => 'Connecté en tant que %name%', 'Order comments by' => 'Trier les commentaires par', - 'Title cannot be blank.' => 'Titre ne peut être vide.', - 'Save' => 'Enregistrez', + 'Title cannot be blank.' => 'Le champ Titre ne peut pas être vide.', + 'Save' => 'Enregistrer', 'Status' => 'Statut', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% Commentaires|{1} %count% Commentaire|]1,Inf[ %count% Commentaires', 'Please login to leave a comment.' => 'Veuillez vous connecter pour laisser un commentaire.', @@ -48,11 +47,11 @@ 'Post not found.' => 'Article non trouvé.', 'No comments found.' => 'Aucun commentaire.', 'Publish on' => 'Publié le', - 'Name cannot be blank.' => 'Nom ne peut être vide.', + 'Name cannot be blank.' => 'Le champ Nom ne peut être vide.', 'Invalid slug.' => 'Slug non valide.', 'Please provide valid name and email.' => 'Veuillez entrer un nom et une adresse e-mail valides.', 'You are not allowed to post comments.' => 'Vous n\'avez pas l\'autorisation d\'écrire des commentaires.', - 'Author cannot be blank.' => 'Auteur ne peut pas être vide.', + 'Author cannot be blank.' => 'Le champ Auteur ne peut pas être vide.', 'latest first' => 'Les plus anciens en premier.', 'Unpublished' => 'Dépublié', 'Custom' => 'Personnalisé', @@ -68,28 +67,29 @@ 'Field must be a valid email address.' => 'Le champ doit contenir une adresse email valide.', 'levels deep.' => 'niveaux.', 'Comments on %title%' => 'Commentaires sur %title%', - 'Insufficient User Rights.' => 'Droits De L\'Utilisateur Insuffisantes.', + 'Insufficient User Rights.' => 'Droits de l\'utilisateur Insuffisants.', 'Copy' => 'Copier', 'Post not found!' => 'Cet article n\'existe pas!', - 'Blog Settings' => 'La Configuration du Blog', + 'Blog Settings' => 'Configuration du Blog', 'days.' => 'jours.', 'Email' => 'Email', 'No posts found.' => 'Aucun article.', 'Enable Markdown' => 'Activer Markdown', 'Read more' => 'Lire la suite', - 'Content cannot be blank.' => 'Contenu ne peut être vide.', + 'Content cannot be blank.' => 'Le champ Contenu ne peut pas être vide.', 'Unknown' => 'Inconnu', 'Month and name' => 'Mois et nom', + 'Comments are closed.' => 'Les commentaires sont fermés.', 'Close comments on articles older than' => 'Fermer les commentaires des articles plus anciens que', 'Cancel' => 'Annuler', 'Written by %name% on %date%' => 'Ecrit par %name% le %date%', 'Enable nested comments of' => 'Activer les commentaires imbriqués sur', - 'Restrict Access' => 'Restreindre L\'Accès', - 'Comment cannot be blank.' => 'Commentaire ne peut être vide.', + 'Restrict Access' => 'Restreindre L\'accès', + 'Comment cannot be blank.' => 'Le champ Commentaire ne peut être vide.', 'Access denied.' => 'Accès refusé.', 'Spam' => 'Spam', 'Leave a comment' => 'Laisser un commentaire', - '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Aucun comentaire|{1} Un commentaire|]1,Inf[ %num% commentaires', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Aucun commentaire|{1} %num% commentaire|]1,Inf[ %num% commentaires', 'Post' => 'Article', 'View' => 'Voir', 'Numeric' => 'Numérique', diff --git a/languages/gl_ES/messages.php b/languages/gl_ES/messages.php index 1740872..dc4d69d 100644 --- a/languages/gl_ES/messages.php +++ b/languages/gl_ES/messages.php @@ -1,97 +1,97 @@ '', + 'Require e-mail.' => 'Requerir e-mail.', 'General' => 'Xeral', 'Show Avatars from Gravatar.' => 'Mostrar avatares de Gravatar.', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'Non se pode comentar. Téntao mais tarde.', + 'Submit' => 'Enviar', 'Comment' => 'Comentar', - 'Comments are closed.' => '', + 'Enable Comments' => 'Habilitar comentarios', 'Appearance' => 'Aparencia', 'Draft' => 'Bosquexo', 'Author' => 'Autor', 'Permalink' => 'Ligazón permanente', - 'Slug' => '', - 'Email invalid.' => '', - 'Comment not found.' => '', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Slug' => 'Slug', + 'Email invalid.' => 'Email inválido.', + 'Comment not found.' => 'Comentario non encontrado.', + 'Filter by' => 'Filtrar por', 'Comments (%count%)' => 'Comentarios (%count%)', - 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => '', - 'Posts View' => '', - 'Default post settings' => '', - '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Title' => 'Título', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% comentario seleccionado|]1,Inf[ %count% comentarios seleccionados', + 'Insufficient user rights.' => 'Permisos de usuario insuficientes.', + 'Posts View' => 'Vista de artigos', + 'Default post settings' => 'Preferencias de artigos por defecto', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% artigo seleccionado|]1,Inf[ %count% artigos seleccionados', 'Comments' => 'Comentarios', - 'Image' => '', + 'Image' => 'Imaxe', 'Posts' => 'Artigos', 'Pending' => 'Pendente', - 'Disabled' => '', + 'Disabled' => 'Deshabilitado', 'Approved' => 'Aprobado', 'Edit Post' => 'Editar artigo', - 'Enable Comments' => 'Activar comentarios', + 'Thank you! Your comment needs approval before showing up.' => 'Grazas! O teu comentario necesita aprovación antes de mostrarse.', 'Pending Review' => 'Revisión pendente', 'Excerpt' => 'Extracto', 'Invalid post id.' => 'Id de artigo inválido.', 'Blog' => 'Blog', 'Logged in as %name%' => 'Sesión iniciada como %name%', 'Order comments by' => 'Ordenar comentarios por', - 'Title cannot be blank.' => '', - 'Save' => '', - 'Status' => '', - '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Title cannot be blank.' => 'O título non pode estar en branco.', + 'Save' => 'Salvar', + 'Status' => 'Estado', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% comentarios|{1} %num% comentario|]1,Inf[ %num% comentarios', 'Please login to leave a comment.' => 'Por favor, inicia sesión para deixar un comentario.', - 'Posts per page' => '', + 'Posts per page' => 'Artigos por páxina', 'E-mail' => 'E-mail', - 'latest last' => '', + 'latest last' => 'últimos ao final', 'Please wait another %seconds% seconds before commenting again.' => 'Por favor, agarda outros %seconds% segundos antes de comentar de novo.', - 'Post not found.' => '', + 'Post not found.' => 'Artigo non encontrado.', 'No comments found.' => 'Non se encontraron comentarios.', 'Publish on' => 'Publicar en', - 'Name cannot be blank.' => '', - 'Invalid slug.' => '', + 'Name cannot be blank.' => 'O nome non pode estar en branco.', + 'Invalid slug.' => 'Slug inválido.', 'Please provide valid name and email.' => 'Por favor, introduce un nome e e-mail válidos.', 'You are not allowed to post comments.' => 'Non tes permiso para publicar comentarios.', - 'Author cannot be blank.' => '', - 'latest first' => '', + 'Author cannot be blank.' => 'O autor non pode estar en branco.', + 'latest first' => 'últimos ao comezo', 'Unpublished' => 'Despublicado', 'Custom' => 'Personalizado', 'Published' => 'Publicado', - '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '{0} %count% artigos|{1} %count% artigo|]1,Inf[ %count% artigos', 'Add Post' => 'Engadir artigo', 'Date' => 'Data', 'Reply' => 'Responder', - 'Parent not found.' => '', - 'URL' => '', + 'Parent not found.' => 'Pai non encontrado.', + 'URL' => 'URL', 'Day and name' => 'Día e nome', - 'Options' => '', - 'Field must be a valid email address.' => '', + 'Options' => 'Opcións', + 'Field must be a valid email address.' => 'O campo debe conter un enderezo de e-mail válido.', 'levels deep.' => 'niveis de profundidade.', 'Comments on %title%' => 'Comentarios a %title%', - 'Insufficient User Rights.' => '', - 'Copy' => '', - 'Post not found!' => '', - 'Blog Settings' => '', + 'Insufficient User Rights.' => 'Permisos de usuario insuficientes.', + 'Copy' => 'Copiar', + 'Post not found!' => 'Artigo non encontrado!', + 'Blog Settings' => 'Preferencias do blog', 'days.' => 'días.', - 'Email' => '', + 'Email' => 'Email', 'No posts found.' => 'Non se encontraron artigos.', - 'Enable Markdown' => '', - 'Read more' => '', - 'Content cannot be blank.' => '', - 'Unknown' => '', + 'Enable Markdown' => 'Hablitar Markdown', + 'Read more' => 'Ler mais', + 'Content cannot be blank.' => 'O comentario non pode estar en branco.', + 'Unknown' => 'Descoñecido', 'Month and name' => 'Mes e nome', + 'Comments are closed.' => 'Os comentarios están pechados.', 'Close comments on articles older than' => 'Cerrar comentarios en artigos con antigüidade maior de', - 'Cancel' => '', + 'Cancel' => 'Cancelar', 'Written by %name% on %date%' => 'Escrito por %name% no %date%', 'Enable nested comments of' => 'Permitir comentarios aniñados de', - 'Restrict Access' => '', - 'Comment cannot be blank.' => '', - 'Access denied.' => '', + 'Restrict Access' => 'Restrinxir acceso', + 'Comment cannot be blank.' => 'O comentario non pode estar en branco.', + 'Access denied.' => 'Acceso denegado.', 'Spam' => 'Spam', 'Leave a comment' => 'Deixar un comentario', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Ningún comentario|{1} %num% comentario|]1,Inf[ %num% comentarios', 'Post' => 'Artigo', - 'View' => '', + 'View' => 'Vista', 'Numeric' => 'Numérico', - 'Name' => '', + 'Name' => 'Nome', ); \ No newline at end of file diff --git a/languages/he_IL/messages.php b/languages/he_IL/messages.php index 47f355d..4bbf165 100644 --- a/languages/he_IL/messages.php +++ b/languages/he_IL/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => 'תגובה', - 'Comments are closed.' => '', + 'Enable Comments' => 'אפשר תגובות', 'Appearance' => 'מראה', 'Draft' => 'טיוטה', 'Author' => 'מחבר', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'מאושר', 'Edit Post' => 'ערוך מאמר', - 'Enable Comments' => 'אפשר תגובות', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => 'ממתין לאישור', 'Excerpt' => '', 'Invalid post id.' => 'המאמר שאתה מחפש לא נמצא', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => 'חודש ושם', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'אי אפשר להגיב על מאמרים בני יותר מ', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/hr_HR/messages.php b/languages/hr_HR/messages.php index 5713ec0..7556743 100644 --- a/languages/hr_HR/messages.php +++ b/languages/hr_HR/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Nije moguće komentirati. Molimo pokušajte ponovo kasnije.', 'Submit' => 'Pošalji', 'Comment' => 'Komentar', - 'Comments are closed.' => 'Komentari su zatvoreni.', + 'Enable Comments' => 'Omogući Komentare', 'Appearance' => 'Izgled', 'Draft' => 'Skica', 'Author' => 'Autor', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Email je neispravan.', 'Comment not found.' => 'Komentar nije pronađen.', 'Filter by' => 'Filtriraj po', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Izabranih komentara|]1,Inf[ %count% Izabranih komentara', 'Comments (%count%)' => 'Komentari (%count%)', 'Title' => 'Naslov', - 'Thank you! Your comment needs approval before showing up.' => 'Hvala! Vašem komentaru potrebno je odobrenje prije prikazivanja.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Izabranih komentara|]1,Inf[ %count% Izabranih komentara', 'Insufficient user rights.' => 'Nedovoljna korisnička prava.', 'Posts View' => 'Pregled Upisa', 'Default post settings' => 'Zadane postavke upisa', @@ -26,10 +25,10 @@ 'Image' => 'Slika', 'Posts' => 'Upisi', 'Pending' => 'U tijeku', - 'Disabled' => '', + 'Disabled' => 'Onemogućeno', 'Approved' => 'Odobreno', 'Edit Post' => 'Uredi Upis', - 'Enable Comments' => 'Omogući Komentare', + 'Thank you! Your comment needs approval before showing up.' => 'Hvala! Vašem komentaru potrebno je odobrenje prije prikazivanja.', 'Pending Review' => 'Pregled u tijeku', 'Excerpt' => 'Isječak', 'Invalid post id.' => 'Nevažeći id upisa.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'Sadržaj ne može biti prazan.', 'Unknown' => 'Nepoznato', 'Month and name' => 'Mjese i ime', + 'Comments are closed.' => 'Komentari su zatvoreni.', 'Close comments on articles older than' => 'Zatvori komentare na člancima starijim od', 'Cancel' => 'Otkaži', 'Written by %name% on %date%' => 'Napisao %name% na %date%', diff --git a/languages/hu_HU/messages.php b/languages/hu_HU/messages.php index 21ed820..decaa93 100644 --- a/languages/hu_HU/messages.php +++ b/languages/hu_HU/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Nem lehet hozzászólni. Később érdemes újra megpróbálni.', 'Submit' => 'Küldés', 'Comment' => 'Hozzászólás', - 'Comments are closed.' => 'Hozzászólás tiltott.', + 'Enable Comments' => 'Hozzászólások engedélyezése', 'Appearance' => 'Megjelenés', 'Draft' => 'Piszkozat', 'Author' => 'Szerző', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Hibás email cím.', 'Comment not found.' => 'Nincs hozzászólás', 'Filter by' => 'Szűrés az alábbiak szerint', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% hozzászólás kiválasztva|]1,Inf[ %count% hozzászólás kiválasztva', 'Comments (%count%)' => 'Hozzászólás (%count%)', 'Title' => 'Cím', - 'Thank you! Your comment needs approval before showing up.' => 'Köszönjük! A hozzászólás jóváhagyásra kerül megjelenítés előtt.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% hozzászólás kiválasztva|]1,Inf[ %count% hozzászólás kiválasztva', 'Insufficient user rights.' => 'Elégtelen felhasználói jogok', 'Posts View' => 'Tartalom nézet', 'Default post settings' => 'Bejegyzés alapértelmezett beállításai', @@ -29,7 +28,7 @@ 'Disabled' => 'Tiltott', 'Approved' => 'Jóváhagyott', 'Edit Post' => 'Bejegyzés szerkesztése', - 'Enable Comments' => 'Hozzászólások engedélyezése', + 'Thank you! Your comment needs approval before showing up.' => 'Köszönjük! A hozzászólás jóváhagyásra kerül megjelenítés előtt.', 'Pending Review' => 'Áttekintésre vár', 'Excerpt' => 'Bevezető a blog oldalra', 'Invalid post id.' => 'Hibás bejegyzés azonosító', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'A tartalom mező kitöltése kötelező.', 'Unknown' => 'Ismeretlen', 'Month and name' => 'Hónap és név', + 'Comments are closed.' => 'Hozzászólás tiltott.', 'Close comments on articles older than' => 'Bejegyzések hozzászólási lehetőségének lezárása', 'Cancel' => 'Mégse', 'Written by %name% on %date%' => '%name% írta, %date%', diff --git a/languages/id_ID/messages.php b/languages/id_ID/messages.php index 1fbea6a..3748afe 100644 --- a/languages/id_ID/messages.php +++ b/languages/id_ID/messages.php @@ -1,26 +1,25 @@ 'E-mail diperlukan', + 'Require e-mail.' => 'Minta alamat e-mail', 'General' => 'Umum', - 'Show Avatars from Gravatar.' => 'Tampilan Avatar dari Gravatar.', + 'Show Avatars from Gravatar.' => 'Tampilkan Avatar dari Gravatar.', 'Unable to comment. Please try again later.' => 'Tidak dapat berkomentar. Silakan coba lagi nanti.', 'Submit' => 'Submit', 'Comment' => 'Komentar', - 'Comments are closed.' => 'Komentar ditutup.', + 'Enable Comments' => 'Ijinkan Komentar', 'Appearance' => 'Tampilan', - 'Draft' => 'Draft', + 'Draft' => 'Konsep', 'Author' => 'Penulis', 'Permalink' => 'Tautan', - 'Slug' => 'Slug', + 'Slug' => 'Judul Pendek', 'Email invalid.' => 'Email tidak valid', 'Comment not found.' => 'Halaman tidak ditemukan.', 'Filter by' => 'Filter dengan', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% komentar yang dipilih|]1,Inf[ %count% Komentar yang dipilih', 'Comments (%count%)' => '(%count%) Komentar', 'Title' => 'Judul', - 'Thank you! Your comment needs approval before showing up.' => 'Terima kasih! Komentar anda memerlukan persetujuan sebelum ditayangkan.', - 'Insufficient user rights.' => 'Hak pengguna tidak cukup .', - 'Posts View' => 'Lihat Post', - 'Default post settings' => 'Standar pengaturan post', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% komentar yang dipilih|]1,Inf[ %count% Komentar yang dipilih', + 'Insufficient user rights.' => 'Hak pengguna tidak memadai.', + 'Posts View' => 'Tampilan Post', + 'Default post settings' => 'Pengaturan post awal', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Posting yang dipilih|]1,Inf[ %count% Posting yang dipilih', 'Comments' => 'Komentar', 'Image' => 'Gambar', @@ -29,9 +28,9 @@ 'Disabled' => 'Non Aktif', 'Approved' => 'Diterima', 'Edit Post' => 'Edit Post', - 'Enable Comments' => 'Ijinkan Komentar', - 'Pending Review' => 'Review tertunda', - 'Excerpt' => 'Ringkasan', + 'Thank you! Your comment needs approval before showing up.' => 'Terima kasih! Komentar anda memerlukan persetujuan sebelum ditayangkan.', + 'Pending Review' => 'Menunggu tinjauan', + 'Excerpt' => 'Kutipan', 'Invalid post id.' => 'Post id tidak valid.', 'Blog' => 'Blog', 'Logged in as %name%' => 'Masuk sebagai %name%', @@ -43,32 +42,32 @@ 'Please login to leave a comment.' => 'Silahkan masuk untuk meninggalkan komentar.', 'Posts per page' => 'Post per halaman', 'E-mail' => 'E-mail', - 'latest last' => 'terbaru terakhir', + 'latest last' => 'terbaru di akhir', 'Please wait another %seconds% seconds before commenting again.' => 'Silahkan tunggu %seconds% detik lagi sebelum berkomentar kembali.', 'Post not found.' => 'Post tidak ditemukan.', 'No comments found.' => 'Tidak ada komentar yang ditemukan.', - 'Publish on' => 'Diterbitkan pada', + 'Publish on' => 'Terbitkan pada', 'Name cannot be blank.' => 'Nama tidak boleh kosong.', 'Invalid slug.' => 'Slug tidak valid', 'Please provide valid name and email.' => 'Harap berikan nama dan email yang valid.', 'You are not allowed to post comments.' => 'Anda tidak diperbolehkan untuk mengirimkan komentar.', 'Author cannot be blank.' => 'Penulis tidak boleh kosong.', - 'latest first' => 'terbaru pertama', - 'Unpublished' => 'Tidak diterbitkan', + 'latest first' => 'terbaru dahulu', + 'Unpublished' => 'Belum diterbitkan', 'Custom' => 'Kustom', 'Published' => 'Diterbitkan', '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts', 'Add Post' => 'Tambah Post', 'Date' => 'Tanggal', 'Reply' => 'Balas', - 'Parent not found.' => 'Orangtua tidak ditemukan.', + 'Parent not found.' => 'Induk tidak ditemukan.', 'URL' => 'URL', 'Day and name' => 'Hari dan nama', 'Options' => 'Opsi', - 'Field must be a valid email address.' => 'Isian harus berupa alamant email yang valid.', + 'Field must be a valid email address.' => 'Isian harus berupa alamat email yang valid.', 'levels deep.' => 'level.', 'Comments on %title%' => 'Komentar pada %title%', - 'Insufficient User Rights.' => 'Hak Pengguna cukup.', + 'Insufficient User Rights.' => 'Hak Pengguna tidak memadai.', 'Copy' => 'Salin', 'Post not found!' => 'Post tidak ditemukan!', 'Blog Settings' => 'Pengaturan Blog', @@ -77,9 +76,10 @@ 'No posts found.' => 'Tidak ada post ditemukan.', 'Enable Markdown' => 'Hidupkan Markdown', 'Read more' => 'Baca selengkapnya', - 'Content cannot be blank.' => 'Konten tidak boleh kosong.', + 'Content cannot be blank.' => 'Isi tidak boleh kosong.', 'Unknown' => 'Tidak dikenal', 'Month and name' => 'Bulan dan nama', + 'Comments are closed.' => 'Komentar ditutup.', 'Close comments on articles older than' => 'Tutup komentar pada artikel yang lebih lama dari', 'Cancel' => 'Batal', 'Written by %name% on %date%' => 'Ditulis oleh %name% pada %date%', diff --git a/languages/it_IT/messages.php b/languages/it_IT/messages.php index 0b5c958..ec85cc6 100644 --- a/languages/it_IT/messages.php +++ b/languages/it_IT/messages.php @@ -1,11 +1,11 @@ '', + 'Require e-mail.' => 'Richiesta l\'e-mail.', 'General' => 'Generale', 'Show Avatars from Gravatar.' => 'Mostra avatar da Gravatar.', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'Impossibile commentare. Per favore riprova più tardi.', + 'Submit' => 'Invia', 'Comment' => 'Commenta', - 'Comments are closed.' => 'Commenti sono chiusi.', + 'Enable Comments' => 'Abilita Commenti', 'Appearance' => 'Aspetto', 'Draft' => 'Bozza', 'Author' => 'Autore', @@ -13,23 +13,22 @@ 'Slug' => 'Slug', 'Email invalid.' => 'Email non valido.', 'Comment not found.' => 'Commento non trovato.', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Commento selezionato|]1,Inf[ %count% Commenti selezionati', + 'Filter by' => 'Filtra per', 'Comments (%count%)' => 'Commenti (%count%)', 'Title' => 'Titolo', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Commento selezionato|]1,Inf[ %count% Commenti selezionati', 'Insufficient user rights.' => 'Diritti utente insufficienti.', - 'Posts View' => '', + 'Posts View' => 'Visualizzazione dei post', 'Default post settings' => 'Configurazione predefinita del articolo', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Articolo selezionato|]1,Inf[ %count% Articoli selezionati', 'Comments' => 'Commenti', 'Image' => 'Immagine', 'Posts' => 'Articoli', 'Pending' => 'In attesa di', - 'Disabled' => '', + 'Disabled' => 'Disabilitato', 'Approved' => 'Approvato', 'Edit Post' => 'Modifica l\'articolo', - 'Enable Comments' => 'Abilita Commenti', + 'Thank you! Your comment needs approval before showing up.' => 'Grazie! Il tuo commento sarà visibile appena sarà approvato.', 'Pending Review' => 'In Attesa Di Revisione', 'Excerpt' => 'Estratto', 'Invalid post id.' => 'L\'id dell\'articolo non è valido.', @@ -43,7 +42,7 @@ 'Please login to leave a comment.' => 'Per piacere, accedere per lasciare un commento.', 'Posts per page' => 'Articoli per pagina', 'E-mail' => 'E-mail', - 'latest last' => '', + 'latest last' => 'Ultimo recente', 'Please wait another %seconds% seconds before commenting again.' => 'Si prega di attendere ancora %seconds% secondi prima di commentare di nuovo.', 'Post not found.' => 'Articolo non trovato.', 'No comments found.' => 'Nessun commento trovato.', @@ -53,7 +52,7 @@ 'Please provide valid name and email.' => 'Per piacere, fornisci un nome e un\'email validi.', 'You are not allowed to post comments.' => 'Non sei autorizzato ad inserire commenti.', 'Author cannot be blank.' => 'Autore non può essere vuoto.', - 'latest first' => '', + 'latest first' => 'Primo recente', 'Unpublished' => 'Inedito', 'Custom' => 'Personalizzato', 'Published' => 'Pubblicato', @@ -76,10 +75,11 @@ 'Email' => 'Email', 'No posts found.' => 'Nessun articolo trovato.', 'Enable Markdown' => 'Abilita Markdown', - 'Read more' => '', + 'Read more' => 'Leggi di più', 'Content cannot be blank.' => 'Il contenuto non può essere vuoto.', 'Unknown' => 'Sconosciuto', 'Month and name' => 'Mese e nome', + 'Comments are closed.' => 'Commenti sono chiusi.', 'Close comments on articles older than' => 'Chiudere commenti per articoli più vecchi di', 'Cancel' => 'Cancellare', 'Written by %name% on %date%' => 'Scritto da %name% il %date%', @@ -91,7 +91,7 @@ 'Leave a comment' => 'Lascia un commento', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Nessun commento|{1} Un commento|]1,Inf[ %num% Commenti', 'Post' => 'Articolo', - 'View' => '', + 'View' => 'Visualizza', 'Numeric' => 'Numerico', 'Name' => 'Nome', ); \ No newline at end of file diff --git a/languages/ja/messages.php b/languages/ja/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/ja/messages.php +++ b/languages/ja/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/ja_JP/messages.php b/languages/ja_JP/messages.php index b3bb1df..f83c9fc 100644 --- a/languages/ja_JP/messages.php +++ b/languages/ja_JP/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '送信', 'Comment' => 'コメント', - 'Comments are closed.' => '', + 'Enable Comments' => 'コメントを有効にする', 'Appearance' => '外観', 'Draft' => '下書き', 'Author' => '投稿者', @@ -14,10 +14,9 @@ 'Email invalid.' => 'メールアドレスが無効です。', 'Comment not found.' => 'コメントはありません。', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count%コメント選択中|]1,Inf[ %count%コメント選択中', 'Comments (%count%)' => 'コメント (%count%)', 'Title' => 'タイトル', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count%コメント選択中|]1,Inf[ %count%コメント選択中', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '承認済み', 'Edit Post' => '記事を編集', - 'Enable Comments' => 'コメントを有効にする', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => 'レビュー中です', 'Excerpt' => '概要', 'Invalid post id.' => 'Post IDが正しくありません。', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '不明', 'Month and name' => '月と名前', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'これより古い記事のコメントをクローズする', 'Cancel' => 'キャンセル', 'Written by %name% on %date%' => '%name% によって %date%に書かれました', diff --git a/languages/ka_GE/messages.php b/languages/ka_GE/messages.php index c351002..1f62dd5 100644 --- a/languages/ka_GE/messages.php +++ b/languages/ka_GE/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'შეუძლებელია დაკომენტარება, სცადეთ მოგვიანებით', 'Submit' => 'დამოწმება', 'Comment' => 'კომენტარი', - 'Comments are closed.' => 'კომენტარები დახურულია', + 'Enable Comments' => 'კომენტარების ჩართვა', 'Appearance' => 'სახე', 'Draft' => 'შავი ჩანაწერი', 'Author' => 'ავტორი', @@ -14,10 +14,9 @@ 'Email invalid.' => 'არასწორი ელფოსტის მისამართი', 'Comment not found.' => 'კომენტარები არ არსებობს', 'Filter by' => 'ფილტრი', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% კომენტარია მონიშნული|]1,Inf[ %count% კომენტარია მონიშნული', 'Comments (%count%)' => '(%count%) კომენტარი', 'Title' => 'სათაური', - 'Thank you! Your comment needs approval before showing up.' => 'მადლობა! თქვენს კომენტარს განიხილავენ და გამოაქვეყნებენ', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% კომენტარია მონიშნული|]1,Inf[ %count% კომენტარია მონიშნული', 'Insufficient user rights.' => 'მომხმარებლის უფლებები არასაკმარისია.', 'Posts View' => 'პოსტების ხედი', 'Default post settings' => 'პოსტის ავტომატური პარამეტრები', @@ -29,7 +28,7 @@ 'Disabled' => 'გათიშულია', 'Approved' => 'ნებადართულია', 'Edit Post' => 'პოსტის რედაქტირება', - 'Enable Comments' => 'კომენტარების ჩართვა', + 'Thank you! Your comment needs approval before showing up.' => 'მადლობა! თქვენს კომენტარს განიხილავენ და გამოაქვეყნებენ', 'Pending Review' => 'განხილვის მოლოდინში', 'Excerpt' => 'ამონარიდი', 'Invalid post id.' => 'პოსტის არასწორი id.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'კონტენტი არ შეიძლება იყოს ცარიელი', 'Unknown' => 'უცნობი', 'Month and name' => 'თვე და სახელი', + 'Comments are closed.' => 'კომენტარები დახურულია', 'Close comments on articles older than' => 'დახურე კომენტარები და არტიკლები უფრო ძველი, ვიდრე', 'Cancel' => 'შეწყვეტა', 'Written by %name% on %date%' => 'ავტორი: %name%, გამოქვეყნების თარიღი: %date%', diff --git a/languages/ku/messages.php b/languages/ku/messages.php new file mode 100644 index 0000000..bf2fde4 --- /dev/null +++ b/languages/ku/messages.php @@ -0,0 +1,97 @@ + '', + 'General' => '', + 'Show Avatars from Gravatar.' => '', + 'Unable to comment. Please try again later.' => '', + 'Submit' => '', + 'Comment' => '', + 'Enable Comments' => '', + 'Appearance' => '', + 'Draft' => '', + 'Author' => '', + 'Permalink' => '', + 'Slug' => '', + 'Email invalid.' => '', + 'Comment not found.' => '', + 'Filter by' => '', + 'Comments (%count%)' => '', + 'Title' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => '', + 'Posts View' => '', + 'Default post settings' => '', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Comments' => '', + 'Image' => '', + 'Posts' => '', + 'Pending' => '', + 'Disabled' => '', + 'Approved' => '', + 'Edit Post' => '', + 'Thank you! Your comment needs approval before showing up.' => '', + 'Pending Review' => '', + 'Excerpt' => '', + 'Invalid post id.' => '', + 'Blog' => '', + 'Logged in as %name%' => '', + 'Order comments by' => '', + 'Title cannot be blank.' => '', + 'Save' => '', + 'Status' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Please login to leave a comment.' => '', + 'Posts per page' => '', + 'E-mail' => '', + 'latest last' => '', + 'Please wait another %seconds% seconds before commenting again.' => '', + 'Post not found.' => '', + 'No comments found.' => '', + 'Publish on' => '', + 'Name cannot be blank.' => '', + 'Invalid slug.' => '', + 'Please provide valid name and email.' => '', + 'You are not allowed to post comments.' => '', + 'Author cannot be blank.' => '', + 'latest first' => '', + 'Unpublished' => '', + 'Custom' => '', + 'Published' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + 'Add Post' => '', + 'Date' => '', + 'Reply' => '', + 'Parent not found.' => '', + 'URL' => '', + 'Day and name' => '', + 'Options' => '', + 'Field must be a valid email address.' => '', + 'levels deep.' => '', + 'Comments on %title%' => '', + 'Insufficient User Rights.' => '', + 'Copy' => '', + 'Post not found!' => '', + 'Blog Settings' => '', + 'days.' => '', + 'Email' => '', + 'No posts found.' => '', + 'Enable Markdown' => '', + 'Read more' => '', + 'Content cannot be blank.' => '', + 'Unknown' => '', + 'Month and name' => '', + 'Comments are closed.' => '', + 'Close comments on articles older than' => '', + 'Cancel' => '', + 'Written by %name% on %date%' => '', + 'Enable nested comments of' => '', + 'Restrict Access' => '', + 'Comment cannot be blank.' => '', + 'Access denied.' => '', + 'Spam' => '', + 'Leave a comment' => '', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', + 'Post' => '', + 'View' => '', + 'Numeric' => '', + 'Name' => '', +); \ No newline at end of file diff --git a/languages/lt_LT/messages.php b/languages/lt_LT/messages.php index 40efc2c..01d78ac 100644 --- a/languages/lt_LT/messages.php +++ b/languages/lt_LT/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => 'Komentaras', - 'Comments are closed.' => '', + 'Enable Comments' => 'Įgalinti komentarus', 'Appearance' => 'Apipavidalinimas', 'Draft' => 'Projektas', 'Author' => 'Autorius', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'Komentarai (%count%)', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'Patvirtintas', 'Edit Post' => 'Redaguoti įrašą', - 'Enable Comments' => 'Įgalinti komentarus', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => 'Laukiantis peržiūros', 'Excerpt' => 'Ištrauka', 'Invalid post id.' => 'Klaidingas įrašo id.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => 'Mėnuo ir pavadinimas', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'Neleisti komentuoti straipsniuose, senesniuose nei', 'Cancel' => '', 'Written by %name% on %date%' => 'Parašė %name%, %date%', diff --git a/languages/ms_MY/messages.php b/languages/ms_MY/messages.php index 7dc5c30..965e4b6 100644 --- a/languages/ms_MY/messages.php +++ b/languages/ms_MY/messages.php @@ -2,44 +2,43 @@ 'Require e-mail.' => '', 'General' => 'Umum', 'Show Avatars from Gravatar.' => 'Tunjukkan Avatar dari Gravatar.', - 'Unable to comment. Please try again later.' => '', + 'Unable to comment. Please try again later.' => 'Tidak dapat untuk menambah komen. Sila cuba lagi.', 'Submit' => '', 'Comment' => 'Komen', - 'Comments are closed.' => '', + 'Enable Comments' => 'Aktifkan Komen', 'Appearance' => 'Penampilan', 'Draft' => 'Draf', 'Author' => 'Penulis', 'Permalink' => 'Pautan kekal', 'Slug' => 'Slug', 'Email invalid.' => '', - 'Comment not found.' => '', + 'Comment not found.' => 'Komen tidak ditemui.', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'Komen (%count%)', - 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + 'Title' => 'Tajuk', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', 'Comments' => 'Komen', - 'Image' => '', + 'Image' => 'Imej', 'Posts' => 'Entri', 'Pending' => 'Menunggu', 'Disabled' => '', 'Approved' => 'Disahkan', 'Edit Post' => 'Edit Entri', - 'Enable Comments' => 'Aktifkan Komen', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => 'Menunggu Ulasan', 'Excerpt' => 'Petikan', 'Invalid post id.' => 'Id entri tidak sah.', 'Blog' => 'Blog', 'Logged in as %name%' => 'Log masuk sebagai %name%', 'Order comments by' => 'Susun komen mengikut', - 'Title cannot be blank.' => '', - 'Save' => '', - 'Status' => '', - '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Title cannot be blank.' => 'Tajuk tidak boleh dibiarkan kosong.', + 'Save' => 'Simpan', + 'Status' => 'Status', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments', 'Please login to leave a comment.' => 'Sila log masuk untuk tinggalkan komen.', 'Posts per page' => '', 'E-mail' => 'E-mail', @@ -52,7 +51,7 @@ 'Invalid slug.' => '', 'Please provide valid name and email.' => 'Tolong berikan nama dan emel yang sah.', 'You are not allowed to post comments.' => 'Anda tidak dibenarkan untuk tinggalkan komen.', - 'Author cannot be blank.' => '', + 'Author cannot be blank.' => 'Penulis tidak boleh dibiarkan kosong.', 'latest first' => '', 'Unpublished' => 'Nyahterbit', 'Custom' => 'Tersendiri', @@ -61,27 +60,28 @@ 'Add Post' => 'Tambah Entri', 'Date' => 'Tarikh', 'Reply' => 'Balas', - 'Parent not found.' => '', - 'URL' => '', + 'Parent not found.' => 'Induk tidak ditemui.', + 'URL' => 'URL', 'Day and name' => 'Hari dan nama', 'Options' => '', - 'Field must be a valid email address.' => '', + 'Field must be a valid email address.' => 'Medan mesti dari jenis alamat emel yang sah.', 'levels deep.' => 'tahap dalam.', 'Comments on %title%' => 'Komen pada %title%', 'Insufficient User Rights.' => '', - 'Copy' => '', + 'Copy' => 'Salin', 'Post not found!' => 'Entri tidak dijumpai!', - 'Blog Settings' => '', + 'Blog Settings' => 'Tetapan Blog', 'days.' => 'hari.', 'Email' => '', 'No posts found.' => 'Tiada entri dijumpai.', 'Enable Markdown' => '', 'Read more' => '', - 'Content cannot be blank.' => '', - 'Unknown' => '', + 'Content cannot be blank.' => 'Kandungan tidak boleh dibiarkan kosong.', + 'Unknown' => 'Tidak dikenali', 'Month and name' => 'Bulan dan nama', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'Tutup komen pada artikel yang melebihi', - 'Cancel' => '', + 'Cancel' => 'Batal', 'Written by %name% on %date%' => 'Ditulis oleh %name% pada %date%', 'Enable nested comments of' => 'Benarkan komen berkumpul', 'Restrict Access' => '', @@ -91,7 +91,7 @@ 'Leave a comment' => 'Tinggalkan komen', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Tiada komen|{1} %num% Komen|]1,Inf[ %num% Komen', 'Post' => 'Entri', - 'View' => '', + 'View' => 'Pandangan', 'Numeric' => 'Nombor', - 'Name' => '', + 'Name' => 'Nama', ); \ No newline at end of file diff --git a/languages/my_MM/messages.php b/languages/my_MM/messages.php index 6f5b858..27fc46f 100644 --- a/languages/my_MM/messages.php +++ b/languages/my_MM/messages.php @@ -1,59 +1,58 @@ '', + 'Require e-mail.' => 'အီးမေးလ်လိုအပ်ပါတယ်', 'General' => 'အထွေထွေ', 'Show Avatars from Gravatar.' => 'Gravatar မှ ကိုယ်စားပြုပုံပြမည်', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'ထင်မြင်ချက်ပေး၍ မရဖြစ်နေပါတယ်။ ကျေးဇူးပြု၍ နောက်မှ ကြိုးစားကြည့်ပါ။', + 'Submit' => 'တင်ရန်', 'Comment' => 'ထင်မြင်ချက်များ', - 'Comments are closed.' => '', + 'Enable Comments' => 'Comment ပေးနိုင်သည်', 'Appearance' => 'ပုံစံ', 'Draft' => 'အကြမ်း', 'Author' => 'ရေးသားသူ', 'Permalink' => 'Permalink', 'Slug' => '', - 'Email invalid.' => '', - 'Comment not found.' => '', + 'Email invalid.' => 'အီးမေလ်း မှားနေပါတယ်', + 'Comment not found.' => 'ထင်မြင်ချက် မရှိပါ', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'ထင်မြင်ချက်များ (%count%)', - 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', - 'Insufficient user rights.' => '', + 'Title' => 'ခေါင်းစဉ်', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => 'လုံလောက်တဲ့ ခွင့်ပြုချက် မရှိပါ', 'Posts View' => '', - 'Default post settings' => '', + 'Default post settings' => 'နဂိုဆက်တင်', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', 'Comments' => 'ထင်မြင်ချက်များ', - 'Image' => '', + 'Image' => 'ပုံ', 'Posts' => 'Posts များ', 'Pending' => 'ဆိုင်းငံ့ထားသည်', - 'Disabled' => '', + 'Disabled' => 'ပိတ်ထားသည်', 'Approved' => 'အတည်ပြုပြီး', 'Edit Post' => 'Post ပြင်ရန်', - 'Enable Comments' => 'Comment ပေးနိုင်သည်', + 'Thank you! Your comment needs approval before showing up.' => 'ကျေးဇူးတင်ပါတယ်။ သင့်ထင်မြင်ချက်ကို စစ်ဆေးပြီးပါက ပြသပေးပါမည်။', 'Pending Review' => 'စစ်စေးရန် ခေတ္တဆိုင်းငံ့ထားသည်', 'Excerpt' => 'ရွေးနုတ်ဖော်ပြချက်', 'Invalid post id.' => 'Post ID မှားနေပါတယ်', 'Blog' => 'ဘလော့ဂ်', 'Logged in as %name%' => '%name% အဖြစ်ဝင်ရောက်ထားပါသည်', 'Order comments by' => 'ထင်မြင်ချက်များကို ၄င်းအတိုင်း စီမည်:', - 'Title cannot be blank.' => '', - 'Save' => '', - 'Status' => '', + 'Title cannot be blank.' => 'ခေါင်းစဉ်ဖြည့်ရပါမည်', + 'Save' => 'မှတ်', + 'Status' => 'အခြေအနေ', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', 'Please login to leave a comment.' => 'ထင်မြင်ချက်ပေးရန် Login ဝင်ရောက်ပါ', - 'Posts per page' => '', + 'Posts per page' => 'စာမျက်နှာတစ်ခုလျှင်ပါဝင်မည် စာပုဒ်', 'E-mail' => 'အီးမေလ်း', - 'latest last' => '', + 'latest last' => 'အနောက်ဆုံးတင်တာ နောက်ဆုံးထားရန်', 'Please wait another %seconds% seconds before commenting again.' => 'ထင်မြင်ချက်ထပ်ပေးရန်အတွက် %seconds% စက္ကန့် စောင့်ပါ', - 'Post not found.' => '', + 'Post not found.' => 'ရှာမတွေ့ပါ', 'No comments found.' => 'Comment မရှိပါ', 'Publish on' => 'တင်ခဲ့သောအချိန် :', - 'Name cannot be blank.' => '', + 'Name cannot be blank.' => 'နာမည်ဖြည့်ရပါမည်', 'Invalid slug.' => '', 'Please provide valid name and email.' => 'အီးမေးလ်နှင့် နာမည်အမှန်ပေးပါ', 'You are not allowed to post comments.' => 'သင့်ကို ထင်မြင်ချက်ပေးရန် ခွင့်မပြုထားပါ', - 'Author cannot be blank.' => '', - 'latest first' => '', + 'Author cannot be blank.' => 'ရေးသားသူ ဖြည့်ရပါမည်', + 'latest first' => 'အနောက်ဆုံးတင်တာ ရှေ့ဆုံးထားရန်', 'Unpublished' => 'မတင္ရေသးေသာ', 'Custom' => 'စိတ်ကြိုက်', 'Published' => 'တင္ၿပီး', @@ -64,34 +63,35 @@ 'Parent not found.' => '', 'URL' => '', 'Day and name' => 'နေ့ရက်နှင့် နာမည်', - 'Options' => '', - 'Field must be a valid email address.' => '', - 'levels deep.' => 'levels deep.', + 'Options' => 'ရွေးချယ်သက်မှတ်ချက်များ', + 'Field must be a valid email address.' => 'အီးမေးလ် အမှန်ဖြည့်ရပါမည်', + 'levels deep.' => 'အထပ်အနက် (Level Deep)', 'Comments on %title%' => '%title% နှင့်ပတ်သက်သော ထင်မြင်ချက်များ', - 'Insufficient User Rights.' => '', - 'Copy' => '', - 'Post not found!' => '', - 'Blog Settings' => '', + 'Insufficient User Rights.' => 'လုံလောက်တဲ့ ခွင့်ပြုချက် မရှိပါ', + 'Copy' => 'ကူးရန်', + 'Post not found!' => 'ရှာမတွေ့ပါ', + 'Blog Settings' => 'ဘလော့ဂ် ဆက်တင်', 'days.' => 'နေ့ရက်များ', - 'Email' => '', + 'Email' => 'အီးမေလ်း', 'No posts found.' => 'Post မရှိသေးပါ', - 'Enable Markdown' => '', - 'Read more' => '', - 'Content cannot be blank.' => '', - 'Unknown' => '', + 'Enable Markdown' => 'Markdown အသုံးပြုရန်', + 'Read more' => 'ဆက်ဖတ်ရန်', + 'Content cannot be blank.' => 'အကြောင်းအရာ ဖြည့်ရပါမည်', + 'Unknown' => 'မသိပါ', 'Month and name' => 'လ နှင့် နာမည်', + 'Comments are closed.' => 'ထင်မြင်ချက်ပေးရန် ပိတ်ထားပါသည်', 'Close comments on articles older than' => 'သတ်မှတ်ရက်ထပ် ကျော်သော Article ကို ၊ ထင်မြင်ချက် မပေးနိုင်ရန် ပိတ်ထားမည် :', - 'Cancel' => '', + 'Cancel' => 'ပယ်', 'Written by %name% on %date%' => '%name% မှ %date% တွင်ရေးသားသည်', - 'Enable nested comments of' => 'Enable nested comments of', - 'Restrict Access' => '', - 'Comment cannot be blank.' => '', - 'Access denied.' => '', + 'Enable nested comments of' => 'ထင်မြင်ချက်များ အထပ်လိုက်ပေးခွင့် ရှိသည် (Nested Comment)', + 'Restrict Access' => 'ဝင်ရောက်မှူ ကန့်သက်ရန်', + 'Comment cannot be blank.' => 'ထင်မြင်ချက်မပါဘဲမရပါ', + 'Access denied.' => 'ခွင့်ပြုချက်မရပါ', 'Spam' => 'Spam', 'Leave a comment' => 'ထင်မြင်ချက်ပေးရန်', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} ထင်မြင်ချက်မရှိပါ|{1} ထင်မြင်ချက် %num% ခု|]1,Inf[ ထင်မြင်ချက် %num% ခု', 'Post' => 'Post', - 'View' => '', + 'View' => 'ကြည့်ရှု', 'Numeric' => 'ကိန်းဂဏန်း', - 'Name' => '', + 'Name' => 'နာမည်', ); \ No newline at end of file diff --git a/languages/nb_NO/messages.php b/languages/nb_NO/messages.php index 7f50344..03c2fc3 100644 --- a/languages/nb_NO/messages.php +++ b/languages/nb_NO/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Kan ikke kommentere nå. Vennligst prøv igjen senere.', 'Submit' => 'Send inn', 'Comment' => 'Kommentar', - 'Comments are closed.' => 'Kommentarer er stengt.', + 'Enable Comments' => 'Aktiver kommentarer', 'Appearance' => 'Utseende', 'Draft' => 'Kladd', 'Author' => 'Forfatter', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Ugyldig e-post.', 'Comment not found.' => 'Kommentar ikke funnet.', 'Filter by' => 'Filtrer etter', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% kommentar valgt|]1,Inf[ %count% kommentarer valgt', 'Comments (%count%)' => 'Kommentarer (%count%)', 'Title' => 'Tittel', - 'Thank you! Your comment needs approval before showing up.' => 'Tusen takk! Din kommentar må godkjennes av oss før den vises på siden.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% kommentar valgt|]1,Inf[ %count% kommentarer valgt', 'Insufficient user rights.' => 'Ikke tilstrekkelig brukerrettigheter.', 'Posts View' => 'Innleggsvisning', 'Default post settings' => 'Standard innleggsinnstillinger', @@ -26,10 +25,10 @@ 'Image' => 'Bilde', 'Posts' => 'Innlegg', 'Pending' => 'Venter', - 'Disabled' => '', + 'Disabled' => 'Deaktivert', 'Approved' => 'Godkjent', 'Edit Post' => 'Rediger innlegg', - 'Enable Comments' => 'Aktiver kommentarer', + 'Thank you! Your comment needs approval before showing up.' => 'Tusen takk! Din kommentar må godkjennes av oss før den vises på siden.', 'Pending Review' => 'Venter gjennomgang', 'Excerpt' => 'Utdrag', 'Invalid post id.' => 'Ugyldig innlegg id.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'Du må fylle inn innhold', 'Unknown' => 'Ukjent', 'Month and name' => 'Måned og navn', + 'Comments are closed.' => 'Kommentarer er stengt.', 'Close comments on articles older than' => 'Steng av for kommentarer på artikler eldre enn', 'Cancel' => 'Avbryt', 'Written by %name% on %date%' => 'Skrevet av %name% den %date%', diff --git a/languages/nl_NL/messages.php b/languages/nl_NL/messages.php index 5db9e1b..92b640d 100644 --- a/languages/nl_NL/messages.php +++ b/languages/nl_NL/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Reactie plaatsen is niet gelukt. Probeer het later opnieuw.', 'Submit' => 'Versturen', 'Comment' => 'Reageren', - 'Comments are closed.' => 'Reacties zijn gesloten', + 'Enable Comments' => 'Reacties toestaan', 'Appearance' => 'Uiterlijk', 'Draft' => 'Opzet', 'Author' => 'Auteur', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Ongeldig e-mailadres', 'Comment not found.' => 'Reactie niet gevonden', 'Filter by' => 'Filter op', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% reactie geselecteerd|]1,Inf[ %count% reacties geselecteerd', 'Comments (%count%)' => 'Reacties (%count%)', 'Title' => 'Titel', - 'Thank you! Your comment needs approval before showing up.' => 'Bedankt! Je reactie zal worden gepubliceerd nadat deze is goedgekeurd.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% reactie geselecteerd|]1,Inf[ %count% reacties geselecteerd', 'Insufficient user rights.' => 'Onvoldoende gebruikersrechten.', 'Posts View' => 'Berichtweergave', 'Default post settings' => 'Standaard bericht instellingen', @@ -26,10 +25,10 @@ 'Image' => 'Afbeelding', 'Posts' => 'Berichten', 'Pending' => 'In afwachting', - 'Disabled' => '', + 'Disabled' => 'Uitgeschakeld', 'Approved' => 'Goedgekeurd', 'Edit Post' => 'Bewerk bericht', - 'Enable Comments' => 'Reacties toestaan', + 'Thank you! Your comment needs approval before showing up.' => 'Bedankt! Je reactie zal worden gepubliceerd nadat deze is goedgekeurd.', 'Pending Review' => 'Review in afwachting', 'Excerpt' => 'Samenvatting', 'Invalid post id.' => 'Ongeldig bericht id.', @@ -58,7 +57,7 @@ 'Custom' => 'Aangepast', 'Published' => 'Gepubliceerd', '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '{0} %count% berichten|{1} %count% bericht|]1,Inf[ %count% berichten', - 'Add Post' => 'Voeg bericht toe', + 'Add Post' => 'Bericht toevoegen', 'Date' => 'Datum', 'Reply' => 'Beantwoorden', 'Parent not found.' => 'Hoofdcategorie niet gevonden', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'Inhoud kan niet leeg gelaten worden.', 'Unknown' => 'Onbekend', 'Month and name' => 'Maand en naam', + 'Comments are closed.' => 'Reacties zijn gesloten', 'Close comments on articles older than' => 'Zet reacties uit bij artikelen ouder dan', 'Cancel' => 'Annuleren', 'Written by %name% on %date%' => 'Geschreven door %name% op %date%', diff --git a/languages/pl_PL/messages.php b/languages/pl_PL/messages.php index 593d09b..161aa0e 100644 --- a/languages/pl_PL/messages.php +++ b/languages/pl_PL/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Nie można skomentować. Proszę spróbuj ponownie później.', 'Submit' => 'Wyślij', 'Comment' => 'Skomentuj', - 'Comments are closed.' => 'Dyskusja została zamknięta.', + 'Enable Comments' => 'Włącz komentarze', 'Appearance' => 'Wygląd', 'Draft' => 'Szkic', 'Author' => 'Autor', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Email jest nieprawidłowy.', 'Comment not found.' => 'Nie znaleziono komentarza.', 'Filter by' => 'Filtruj przez', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} Wybrano %count% komentarz|[2,4] Wybrano %count% komentarze|]1,Inf[ Wybrano %count% komentarzy', 'Comments (%count%)' => 'Komentarze (%count%)', 'Title' => 'Tytuł', - 'Thank you! Your comment needs approval before showing up.' => 'Dziękujemy! Twój komentarz potrzebuje zatwierdzenia zanim się pojawi.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} Wybrano %count% komentarz|[2,4] Wybrano %count% komentarze|]1,Inf[ Wybrano %count% komentarzy', 'Insufficient user rights.' => 'Niewystarczające uprawnienia.', 'Posts View' => 'Widok wpisów', 'Default post settings' => 'Domyślne ustawienia wpisu', @@ -26,10 +25,10 @@ 'Image' => 'Obraz', 'Posts' => 'Wpisy', 'Pending' => 'Oczekujący', - 'Disabled' => '', + 'Disabled' => 'Wyłączone', 'Approved' => 'Zatwierdzony', 'Edit Post' => 'Edytuj wpis', - 'Enable Comments' => 'Włącz komentarze', + 'Thank you! Your comment needs approval before showing up.' => 'Dziękujemy! Twój komentarz potrzebuje zatwierdzenia zanim się pojawi.', 'Pending Review' => 'Oczekuje na przegląd', 'Excerpt' => 'Wprowadzenie', 'Invalid post id.' => 'Nieprawidłowy identyfikator wpisu.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'Treść nie może być pusta,', 'Unknown' => 'Nieznany', 'Month and name' => 'Miesiąc i nazwa', + 'Comments are closed.' => 'Dyskusja została zamknięta.', 'Close comments on articles older than' => 'Wyłącz komentarze dla artykułów starszych niż ', 'Cancel' => 'Anuluj', 'Written by %name% on %date%' => 'Napisane przez %name% w dniu %date%', diff --git a/languages/pt_BR/messages.php b/languages/pt_BR/messages.php index daf6ea0..779f7d3 100644 --- a/languages/pt_BR/messages.php +++ b/languages/pt_BR/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Incapaz de comentar. Por favor tente novamente mais tarde.', 'Submit' => 'Enviar', 'Comment' => 'Comentar', - 'Comments are closed.' => 'Os comentários estão fechados.', + 'Enable Comments' => 'Habilitar comentários', 'Appearance' => 'Aparência', 'Draft' => 'Rascunhos', 'Author' => 'Autor', @@ -14,11 +14,10 @@ 'Email invalid.' => 'E-mail inválido.', 'Comment not found.' => 'Comentário não encontrado.', 'Filter by' => 'Filtrar por', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentário selecionado|]1,Inf[ %count% Comentário selecionado', 'Comments (%count%)' => 'Comentários (%count%)', - 'Title' => 'Titulo', - 'Thank you! Your comment needs approval before showing up.' => 'Obrigado! O seu comentário precisa de aprovação antes de aparecer.', - 'Insufficient user rights.' => 'Direitos de usuários insuficientes.', + 'Title' => 'Título', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentário selecionado|]1,Inf[ %count% Comentário selecionado', + 'Insufficient user rights.' => 'Permissões de usuário insuficiente.', 'Posts View' => 'Ver Publicações', 'Default post settings' => 'Ajustes padrões de publicação', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% Publicações selecionadas|]1,Inf[ %count% Publicações selecionadas', @@ -26,10 +25,10 @@ 'Image' => 'Imagem', 'Posts' => 'Publicações', 'Pending' => 'Pedentes', - 'Disabled' => '', + 'Disabled' => 'Desabilitado', 'Approved' => 'Aprovadas', 'Edit Post' => 'Editar publicação', - 'Enable Comments' => 'Habilitar comentários', + 'Thank you! Your comment needs approval before showing up.' => 'Obrigado! O seu comentário precisa de aprovação antes de aparecer.', 'Pending Review' => 'Pendentes de revisão', 'Excerpt' => 'Resumo', 'Invalid post id.' => 'ID de publicação inválido.', @@ -40,8 +39,8 @@ 'Save' => 'Salvar', 'Status' => 'Status', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% Comentários|{1} %count% Comentário|]1,Inf[ %count% Comentários', - 'Please login to leave a comment.' => 'Por favor, logue para comentar.', - 'Posts per page' => 'Publicações por pagina', + 'Please login to leave a comment.' => 'Por favor, faça login para comentar.', + 'Posts per page' => 'Publicações por página', 'E-mail' => 'E-mail', 'latest last' => 'Recentes por último', 'Please wait another %seconds% seconds before commenting again.' => 'Por favor, aguarde %seconds% segundos antes de comentar novamente.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'O conteúdo não pode estar em branco.', 'Unknown' => 'Desconhecido', 'Month and name' => 'Mês e nome', + 'Comments are closed.' => 'Os comentários estão fechados.', 'Close comments on articles older than' => 'Desabilitar comentários nos artigos mais antigos que', 'Cancel' => 'Cancelar', 'Written by %name% on %date%' => 'Escrito por %name% em %date%', diff --git a/languages/pt_PT/messages.php b/languages/pt_PT/messages.php index 517a869..552a38b 100644 --- a/languages/pt_PT/messages.php +++ b/languages/pt_PT/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => 'Comentário', - 'Comments are closed.' => 'Comentários fechados.', + 'Enable Comments' => 'Permitir Comentários ', 'Appearance' => 'Aparência ', 'Draft' => 'Rascunho', 'Author' => 'Autor', @@ -14,10 +14,9 @@ 'Email invalid.' => 'E-mail inválido.', 'Comment not found.' => 'Comentário não encontrado.', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentários selecionados |]1,Inf[ %count% Comentários selecionados', 'Comments (%count%)' => 'Comentários (%count%)', 'Title' => 'Titulo', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Comentários selecionados |]1,Inf[ %count% Comentários selecionados', 'Insufficient user rights.' => 'Permissões insuficientes.', 'Posts View' => '', 'Default post settings' => 'Definições de artigo predefinidas', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'Approvado', 'Edit Post' => 'Editar Artigo', - 'Enable Comments' => 'Permitir Comentários ', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => 'Pendente aprovação', 'Excerpt' => 'Excerto', 'Invalid post id.' => 'Id de artigo inválido.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'O conteúdo não pode estar vazio.', 'Unknown' => 'Desconhecido', 'Month and name' => 'Mês e nome', + 'Comments are closed.' => 'Comentários fechados.', 'Close comments on articles older than' => 'Fechar comentários em artigos antes de', 'Cancel' => 'Cancelar', 'Written by %name% on %date%' => 'Escrito por %name% em %date%', diff --git a/languages/ro_RO/messages.php b/languages/ro_RO/messages.php new file mode 100644 index 0000000..bf2fde4 --- /dev/null +++ b/languages/ro_RO/messages.php @@ -0,0 +1,97 @@ + '', + 'General' => '', + 'Show Avatars from Gravatar.' => '', + 'Unable to comment. Please try again later.' => '', + 'Submit' => '', + 'Comment' => '', + 'Enable Comments' => '', + 'Appearance' => '', + 'Draft' => '', + 'Author' => '', + 'Permalink' => '', + 'Slug' => '', + 'Email invalid.' => '', + 'Comment not found.' => '', + 'Filter by' => '', + 'Comments (%count%)' => '', + 'Title' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => '', + 'Posts View' => '', + 'Default post settings' => '', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Comments' => '', + 'Image' => '', + 'Posts' => '', + 'Pending' => '', + 'Disabled' => '', + 'Approved' => '', + 'Edit Post' => '', + 'Thank you! Your comment needs approval before showing up.' => '', + 'Pending Review' => '', + 'Excerpt' => '', + 'Invalid post id.' => '', + 'Blog' => '', + 'Logged in as %name%' => '', + 'Order comments by' => '', + 'Title cannot be blank.' => '', + 'Save' => '', + 'Status' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Please login to leave a comment.' => '', + 'Posts per page' => '', + 'E-mail' => '', + 'latest last' => '', + 'Please wait another %seconds% seconds before commenting again.' => '', + 'Post not found.' => '', + 'No comments found.' => '', + 'Publish on' => '', + 'Name cannot be blank.' => '', + 'Invalid slug.' => '', + 'Please provide valid name and email.' => '', + 'You are not allowed to post comments.' => '', + 'Author cannot be blank.' => '', + 'latest first' => '', + 'Unpublished' => '', + 'Custom' => '', + 'Published' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + 'Add Post' => '', + 'Date' => '', + 'Reply' => '', + 'Parent not found.' => '', + 'URL' => '', + 'Day and name' => '', + 'Options' => '', + 'Field must be a valid email address.' => '', + 'levels deep.' => '', + 'Comments on %title%' => '', + 'Insufficient User Rights.' => '', + 'Copy' => '', + 'Post not found!' => '', + 'Blog Settings' => '', + 'days.' => '', + 'Email' => '', + 'No posts found.' => '', + 'Enable Markdown' => '', + 'Read more' => '', + 'Content cannot be blank.' => '', + 'Unknown' => '', + 'Month and name' => '', + 'Comments are closed.' => '', + 'Close comments on articles older than' => '', + 'Cancel' => '', + 'Written by %name% on %date%' => '', + 'Enable nested comments of' => '', + 'Restrict Access' => '', + 'Comment cannot be blank.' => '', + 'Access denied.' => '', + 'Spam' => '', + 'Leave a comment' => '', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', + 'Post' => '', + 'View' => '', + 'Numeric' => '', + 'Name' => '', +); \ No newline at end of file diff --git a/languages/ru_RU/messages.php b/languages/ru_RU/messages.php index 818c883..c646353 100644 --- a/languages/ru_RU/messages.php +++ b/languages/ru_RU/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Невозможно оставить комментарий. Пожалуйста, попробуйте позже.', 'Submit' => 'Отправить', 'Comment' => 'Комментарий', - 'Comments are closed.' => 'Комментирование закрыто.', + 'Enable Comments' => 'Включить комментарии', 'Appearance' => 'Внешний вид', 'Draft' => 'Черновик', 'Author' => 'Автор', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Недопустимый адрес эл. почты.', 'Comment not found.' => 'Комментарий не найден.', 'Filter by' => 'Фильтр по', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} Выбран %count% комментарий|]1,Inf[ Выбрано %count% комментариев', 'Comments (%count%)' => 'Комментарии (%count%)', 'Title' => 'Заголовок', - 'Thank you! Your comment needs approval before showing up.' => 'Спасибо! Ваш комментарий появится после модерации.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} Выбран %count% комментарий|]1,Inf[ Выбрано %count% комментариев', 'Insufficient user rights.' => 'Недостаточно прав.', 'Posts View' => 'Просмотры сообщений', 'Default post settings' => 'Стандартные настройки сообщения', @@ -29,7 +28,7 @@ 'Disabled' => 'Выкл.', 'Approved' => 'Одобрено ', 'Edit Post' => 'Изменить сообщение', - 'Enable Comments' => 'Включить комментарии', + 'Thank you! Your comment needs approval before showing up.' => 'Спасибо! Ваш комментарий появится после модерации.', 'Pending Review' => 'На рассмотрении', 'Excerpt' => 'Вводный текст', 'Invalid post id.' => 'Неправильный ID сообщения.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'Содержимое не может быть пустым.', 'Unknown' => 'Неизвестно', 'Month and name' => 'Месяц и название', + 'Comments are closed.' => 'Комментирование закрыто.', 'Close comments on articles older than' => 'Закрыть комментарии для статей старше', 'Cancel' => 'Отмена', 'Written by %name% on %date%' => '%name%, %date%', diff --git a/languages/ru_ee/messages.php b/languages/ru_ee/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/ru_ee/messages.php +++ b/languages/ru_ee/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/sk_SK/messages.php b/languages/sk_SK/messages.php index b903f41..30611fc 100644 --- a/languages/sk_SK/messages.php +++ b/languages/sk_SK/messages.php @@ -5,38 +5,37 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => 'Komentár', - 'Comments are closed.' => '', + 'Enable Comments' => 'Povoliť Komentáre', 'Appearance' => 'Vzhľad', 'Draft' => 'Návrh', 'Author' => 'Autor', 'Permalink' => 'Priamy Odkaz', - 'Slug' => '', + 'Slug' => 'URL alias', 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'Komentáre (%count%)', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', 'Comments' => 'Komentáre', - 'Image' => '', + 'Image' => 'Obrázok', 'Posts' => 'Príspevky', 'Pending' => 'Čakajúci', 'Disabled' => '', 'Approved' => 'Schválené', 'Edit Post' => 'Upraviť Príspevok', - 'Enable Comments' => 'Povoliť Komentáre', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => 'Nevybavená recenzia', 'Excerpt' => 'Úvodník', 'Invalid post id.' => 'Neplatné ID príspevku.', 'Blog' => 'Blog', 'Logged in as %name%' => 'Prihlásený ako %name%', 'Order comments by' => 'Zoradiť komentáre podľa', - 'Title cannot be blank.' => '', + 'Title cannot be blank.' => 'Názov nemôže byť prázdny.', 'Save' => '', 'Status' => '', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', @@ -80,18 +79,19 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => 'Mesiac a meno', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'Zatvoriť komentáre pre články staršie ako', 'Cancel' => '', 'Written by %name% on %date%' => 'Napísal %name% dňa %date%', 'Enable nested comments of' => 'Povoliť zanorené komentáre pre', - 'Restrict Access' => '', + 'Restrict Access' => 'Obmedziť prístup', 'Comment cannot be blank.' => '', 'Access denied.' => '', 'Spam' => 'Spam', 'Leave a comment' => 'Zanechajte komentár', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Žiadne komentáre.|{1} %num% komentár.|{2,3,4} %num% komentáre.|]4,Inf[ %num% komentárov.', 'Post' => 'Príspevok', - 'View' => '', + 'View' => 'Zobrazenie', 'Numeric' => 'Číslicový', 'Name' => '', ); \ No newline at end of file diff --git a/languages/sl_SI/messages.php b/languages/sl_SI/messages.php index 0c5660f..71193be 100644 --- a/languages/sl_SI/messages.php +++ b/languages/sl_SI/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => 'Komentar', - 'Comments are closed.' => '', + 'Enable Comments' => 'Omogoči komentarje', 'Appearance' => 'Izgled', 'Draft' => 'Osnutek', 'Author' => 'Avtor', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'Komentarji (%count%)', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'Odobreno', 'Edit Post' => 'Uredi objavo', - 'Enable Comments' => 'Omogoči komentarje', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => 'Čakajoč napotrditev', 'Excerpt' => 'Uvodno besedilo', 'Invalid post id.' => 'Napačen ID objave', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => 'Mesec in ime', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'Ne prikazuj komentarjev starejših od', 'Cancel' => '', 'Written by %name% on %date%' => 'Komentiral %name% dne %date%', diff --git a/languages/so/messages.php b/languages/so/messages.php new file mode 100644 index 0000000..bf2fde4 --- /dev/null +++ b/languages/so/messages.php @@ -0,0 +1,97 @@ + '', + 'General' => '', + 'Show Avatars from Gravatar.' => '', + 'Unable to comment. Please try again later.' => '', + 'Submit' => '', + 'Comment' => '', + 'Enable Comments' => '', + 'Appearance' => '', + 'Draft' => '', + 'Author' => '', + 'Permalink' => '', + 'Slug' => '', + 'Email invalid.' => '', + 'Comment not found.' => '', + 'Filter by' => '', + 'Comments (%count%)' => '', + 'Title' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => '', + 'Posts View' => '', + 'Default post settings' => '', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Comments' => '', + 'Image' => '', + 'Posts' => '', + 'Pending' => '', + 'Disabled' => '', + 'Approved' => '', + 'Edit Post' => '', + 'Thank you! Your comment needs approval before showing up.' => '', + 'Pending Review' => '', + 'Excerpt' => '', + 'Invalid post id.' => '', + 'Blog' => '', + 'Logged in as %name%' => '', + 'Order comments by' => '', + 'Title cannot be blank.' => '', + 'Save' => '', + 'Status' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Please login to leave a comment.' => '', + 'Posts per page' => '', + 'E-mail' => '', + 'latest last' => '', + 'Please wait another %seconds% seconds before commenting again.' => '', + 'Post not found.' => '', + 'No comments found.' => '', + 'Publish on' => '', + 'Name cannot be blank.' => '', + 'Invalid slug.' => '', + 'Please provide valid name and email.' => '', + 'You are not allowed to post comments.' => '', + 'Author cannot be blank.' => '', + 'latest first' => '', + 'Unpublished' => '', + 'Custom' => '', + 'Published' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + 'Add Post' => '', + 'Date' => '', + 'Reply' => '', + 'Parent not found.' => '', + 'URL' => '', + 'Day and name' => '', + 'Options' => '', + 'Field must be a valid email address.' => '', + 'levels deep.' => '', + 'Comments on %title%' => '', + 'Insufficient User Rights.' => '', + 'Copy' => '', + 'Post not found!' => '', + 'Blog Settings' => '', + 'days.' => '', + 'Email' => '', + 'No posts found.' => '', + 'Enable Markdown' => '', + 'Read more' => '', + 'Content cannot be blank.' => '', + 'Unknown' => '', + 'Month and name' => '', + 'Comments are closed.' => '', + 'Close comments on articles older than' => '', + 'Cancel' => '', + 'Written by %name% on %date%' => '', + 'Enable nested comments of' => '', + 'Restrict Access' => '', + 'Comment cannot be blank.' => '', + 'Access denied.' => '', + 'Spam' => '', + 'Leave a comment' => '', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', + 'Post' => '', + 'View' => '', + 'Numeric' => '', + 'Name' => '', +); \ No newline at end of file diff --git a/languages/sr_RS/messages.php b/languages/sr_RS/messages.php index a489433..493124c 100644 --- a/languages/sr_RS/messages.php +++ b/languages/sr_RS/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => 'Komentar', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => 'Izvod', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/sr_RS@latin/messages.php b/languages/sr_RS@latin/messages.php index b6fd886..3bc127a 100644 --- a/languages/sr_RS@latin/messages.php +++ b/languages/sr_RS@latin/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Nije moguće komentirati. Molimo pokušajte ponovo kasnije.', 'Submit' => 'Pošalji', 'Comment' => 'Komentar', - 'Comments are closed.' => 'Komentari su zatvoreni.', + 'Enable Comments' => 'Omogući Komentare', 'Appearance' => 'Izgled', 'Draft' => 'Skica', 'Author' => 'Autor', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Email je neispravan.', 'Comment not found.' => 'Komentar nije pronađen.', 'Filter by' => 'Filtriraj po', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Izabranih komentara|]1,Inf[ %count% Izabranih komentara', 'Comments (%count%)' => 'Komentari (%count%)', 'Title' => 'Naslov', - 'Thank you! Your comment needs approval before showing up.' => 'Hvala! Vašem komentaru potrebno je odobrenje prije prikazivanja.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Izabranih komentara|]1,Inf[ %count% Izabranih komentara', 'Insufficient user rights.' => 'Nedovoljna korisnička prava.', 'Posts View' => 'Pregled Upisa', 'Default post settings' => 'Zadane postavke upisa', @@ -29,7 +28,7 @@ 'Disabled' => 'Onemogućeno', 'Approved' => 'Odobreno', 'Edit Post' => 'Uredi Upis', - 'Enable Comments' => 'Omogući Komentare', + 'Thank you! Your comment needs approval before showing up.' => 'Hvala! Vašem komentaru potrebno je odobrenje prije prikazivanja.', 'Pending Review' => 'Pregled u tijeku', 'Excerpt' => 'Isečak', 'Invalid post id.' => 'Nevažeći id upisa.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'Sadržaj ne može biti prazan.', 'Unknown' => 'Nepoznato', 'Month and name' => 'Mesec i Ime', + 'Comments are closed.' => 'Komentari su zatvoreni.', 'Close comments on articles older than' => 'Zatvori komentare na člancima starijim od', 'Cancel' => 'Otkaži', 'Written by %name% on %date%' => 'Napisao %name% na %date%', diff --git a/languages/sv_SE/messages.php b/languages/sv_SE/messages.php index 219ce5c..31516ac 100644 --- a/languages/sv_SE/messages.php +++ b/languages/sv_SE/messages.php @@ -1,59 +1,58 @@ '', - 'General' => 'Generell', + 'Require e-mail.' => 'Email är obligatoriskt', + 'General' => 'Allmänt', 'Show Avatars from Gravatar.' => 'Visa avatar från Gravatar', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'Det går inte att lämna kommentar. Försök igen senare.', + 'Submit' => 'Skicka', 'Comment' => 'Kommentar', - 'Comments are closed.' => 'Kommentarsfunktionen är avstängd', + 'Enable Comments' => 'Aktivera kommentarer', 'Appearance' => 'Utseende', 'Draft' => 'Utkast', 'Author' => 'Författare', 'Permalink' => 'Permalänk', 'Slug' => 'Slug', 'Email invalid.' => 'Felaktig email', - 'Comment not found.' => 'Kommentaren hittades inte', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% kommentar vald|]1,Inf[ %count% kommentarer valda', + 'Comment not found.' => 'Hittar inte Kommentaren', + 'Filter by' => 'Filtrera på', 'Comments (%count%)' => 'Kommentarer (%count%)', - 'Title' => 'Titel', - 'Thank you! Your comment needs approval before showing up.' => '', + 'Title' => 'Rubrik', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% kommentar vald|]1,Inf[ %count% kommentarer valda', 'Insufficient user rights.' => 'Inte tillräckliga användarrättigheter', - 'Posts View' => '', + 'Posts View' => 'Inlägg', 'Default post settings' => 'Standardinställningar för inlägg', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '{1} %count% inlägg valda|]1,Inf[ %count% inlägg valda', 'Comments' => 'Kommentarer', 'Image' => 'Bild', 'Posts' => 'Inlägg', 'Pending' => 'Avvaktar', - 'Disabled' => '', + 'Disabled' => 'Inaktiverad', 'Approved' => 'Godkänd', - 'Edit Post' => 'Redigera inlägg', - 'Enable Comments' => 'Aktivera kommentarer', + 'Edit Post' => 'Ändra inlägg', + 'Thank you! Your comment needs approval before showing up.' => 'Tack! Din kommentar väntar på att bli godkänd innan den visas.', 'Pending Review' => 'Väntar på godkännande', - 'Excerpt' => 'Förutom', + 'Excerpt' => 'Utdrag', 'Invalid post id.' => 'Felaktigt post-id', 'Blog' => 'Blogg', 'Logged in as %name%' => 'Inloggad som %name%', 'Order comments by' => 'Sortera kommentarer efter', - 'Title cannot be blank.' => 'Titel kan inte vara tom', + 'Title cannot be blank.' => 'Rubriken får inte vara tom', 'Save' => 'Spara', 'Status' => 'Status', '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% kommentarer|{1} %count% kommentar|]1,Inf[ %count% kommentarer', 'Please login to leave a comment.' => 'Logga in för att kommentera', 'Posts per page' => 'Inlägg per sida', 'E-mail' => 'E-mail', - 'latest last' => '', + 'latest last' => 'senaste sist', 'Please wait another %seconds% seconds before commenting again.' => 'Vänta %seconds% sekunder till innan du kommenterar igen.', 'Post not found.' => 'Inlägget hittades inte', - 'No comments found.' => 'Inga kommentarer hittades.', - 'Publish on' => 'Publicera den', + 'No comments found.' => 'Hittar inga kommentarer.', + 'Publish on' => 'Publicerad', 'Name cannot be blank.' => 'Namn kan inte vara tomt', 'Invalid slug.' => 'Felaktig slug', 'Please provide valid name and email.' => 'Ange giltigt namn och email', 'You are not allowed to post comments.' => 'Du har inte rättigheter att skicka kommentarer', - 'Author cannot be blank.' => 'Avsändaren kan inte vara blank', - 'latest first' => '', + 'Author cannot be blank.' => 'Författaren kan inte vara tom', + 'latest first' => 'senaste först', 'Unpublished' => 'Avpublicerad', 'Custom' => 'Anpassad', 'Published' => 'Publicerad', @@ -61,37 +60,38 @@ 'Add Post' => 'Nytt inlägg', 'Date' => 'Datum', 'Reply' => 'Svara', - 'Parent not found.' => 'Överliggande hittades inte', + 'Parent not found.' => 'Hittar inte Överliggande', 'URL' => 'URL', 'Day and name' => 'Datum och namn', 'Options' => 'Alternativ', 'Field must be a valid email address.' => 'Fältet måste innehålla en giltig mailadress', - 'levels deep.' => 'nivåer djupa.', - 'Comments on %title%' => 'Kommentera %title%', - 'Insufficient User Rights.' => 'Inte tillräckliga användarrättigheter', + 'levels deep.' => 'nivåer djupt.', + 'Comments on %title%' => 'Kommentarer för %title%', + 'Insufficient User Rights.' => 'Otillräckliga användarrättigheter', 'Copy' => 'Kopiera', - 'Post not found!' => 'Inlägget hittades inte', + 'Post not found!' => 'Hittar inte Inlägget', 'Blog Settings' => 'Blogginställningar', 'days.' => 'dagar.', 'Email' => 'Email', - 'No posts found.' => 'Inga inlägg hittades', + 'No posts found.' => 'Hittar inga inlägg', 'Enable Markdown' => 'Aktivera markdown', - 'Read more' => '', + 'Read more' => 'Läs mer ...', 'Content cannot be blank.' => 'Innehållet kan inte vara tomt', 'Unknown' => 'Okänd', 'Month and name' => 'Månad och namn', + 'Comments are closed.' => 'Kommentarsfunktionen är avstängd', 'Close comments on articles older than' => 'Stäng kommentarer äldre än', 'Cancel' => 'Avbryt', 'Written by %name% on %date%' => 'Skriven av %name% den %date%', 'Enable nested comments of' => 'Tillåt nästlade kommentarer som är', 'Restrict Access' => 'Begränsa åtkomst', - 'Comment cannot be blank.' => 'Kommentaren kan inte vara blank', + 'Comment cannot be blank.' => 'Kommentaren kan inte vara tom', 'Access denied.' => 'Åtkomst nekad', 'Spam' => 'Spam', 'Leave a comment' => 'Skriv en kommentar', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '{0} Inga kommentarer|{1} %num% kommentar|]1,Inf[ %num% kommentarer', 'Post' => 'Inlägg', - 'View' => '', + 'View' => 'Visa', 'Numeric' => 'Numerisk', 'Name' => 'Namn', ); \ No newline at end of file diff --git a/languages/ta/messages.php b/languages/ta/messages.php new file mode 100644 index 0000000..bf2fde4 --- /dev/null +++ b/languages/ta/messages.php @@ -0,0 +1,97 @@ + '', + 'General' => '', + 'Show Avatars from Gravatar.' => '', + 'Unable to comment. Please try again later.' => '', + 'Submit' => '', + 'Comment' => '', + 'Enable Comments' => '', + 'Appearance' => '', + 'Draft' => '', + 'Author' => '', + 'Permalink' => '', + 'Slug' => '', + 'Email invalid.' => '', + 'Comment not found.' => '', + 'Filter by' => '', + 'Comments (%count%)' => '', + 'Title' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => '', + 'Posts View' => '', + 'Default post settings' => '', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Comments' => '', + 'Image' => '', + 'Posts' => '', + 'Pending' => '', + 'Disabled' => '', + 'Approved' => '', + 'Edit Post' => '', + 'Thank you! Your comment needs approval before showing up.' => '', + 'Pending Review' => '', + 'Excerpt' => '', + 'Invalid post id.' => '', + 'Blog' => '', + 'Logged in as %name%' => '', + 'Order comments by' => '', + 'Title cannot be blank.' => '', + 'Save' => '', + 'Status' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Please login to leave a comment.' => '', + 'Posts per page' => '', + 'E-mail' => '', + 'latest last' => '', + 'Please wait another %seconds% seconds before commenting again.' => '', + 'Post not found.' => '', + 'No comments found.' => '', + 'Publish on' => '', + 'Name cannot be blank.' => '', + 'Invalid slug.' => '', + 'Please provide valid name and email.' => '', + 'You are not allowed to post comments.' => '', + 'Author cannot be blank.' => '', + 'latest first' => '', + 'Unpublished' => '', + 'Custom' => '', + 'Published' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + 'Add Post' => '', + 'Date' => '', + 'Reply' => '', + 'Parent not found.' => '', + 'URL' => '', + 'Day and name' => '', + 'Options' => '', + 'Field must be a valid email address.' => '', + 'levels deep.' => '', + 'Comments on %title%' => '', + 'Insufficient User Rights.' => '', + 'Copy' => '', + 'Post not found!' => '', + 'Blog Settings' => '', + 'days.' => '', + 'Email' => '', + 'No posts found.' => '', + 'Enable Markdown' => '', + 'Read more' => '', + 'Content cannot be blank.' => '', + 'Unknown' => '', + 'Month and name' => '', + 'Comments are closed.' => '', + 'Close comments on articles older than' => '', + 'Cancel' => '', + 'Written by %name% on %date%' => '', + 'Enable nested comments of' => '', + 'Restrict Access' => '', + 'Comment cannot be blank.' => '', + 'Access denied.' => '', + 'Spam' => '', + 'Leave a comment' => '', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', + 'Post' => '', + 'View' => '', + 'Numeric' => '', + 'Name' => '', +); \ No newline at end of file diff --git a/languages/te_IN/messages.php b/languages/te_IN/messages.php new file mode 100644 index 0000000..bf2fde4 --- /dev/null +++ b/languages/te_IN/messages.php @@ -0,0 +1,97 @@ + '', + 'General' => '', + 'Show Avatars from Gravatar.' => '', + 'Unable to comment. Please try again later.' => '', + 'Submit' => '', + 'Comment' => '', + 'Enable Comments' => '', + 'Appearance' => '', + 'Draft' => '', + 'Author' => '', + 'Permalink' => '', + 'Slug' => '', + 'Email invalid.' => '', + 'Comment not found.' => '', + 'Filter by' => '', + 'Comments (%count%)' => '', + 'Title' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Insufficient user rights.' => '', + 'Posts View' => '', + 'Default post settings' => '', + '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', + 'Comments' => '', + 'Image' => '', + 'Posts' => '', + 'Pending' => '', + 'Disabled' => '', + 'Approved' => '', + 'Edit Post' => '', + 'Thank you! Your comment needs approval before showing up.' => '', + 'Pending Review' => '', + 'Excerpt' => '', + 'Invalid post id.' => '', + 'Blog' => '', + 'Logged in as %name%' => '', + 'Order comments by' => '', + 'Title cannot be blank.' => '', + 'Save' => '', + 'Status' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + 'Please login to leave a comment.' => '', + 'Posts per page' => '', + 'E-mail' => '', + 'latest last' => '', + 'Please wait another %seconds% seconds before commenting again.' => '', + 'Post not found.' => '', + 'No comments found.' => '', + 'Publish on' => '', + 'Name cannot be blank.' => '', + 'Invalid slug.' => '', + 'Please provide valid name and email.' => '', + 'You are not allowed to post comments.' => '', + 'Author cannot be blank.' => '', + 'latest first' => '', + 'Unpublished' => '', + 'Custom' => '', + 'Published' => '', + '{0} %count% Posts|{1} %count% Post|]1,Inf[ %count% Posts' => '', + 'Add Post' => '', + 'Date' => '', + 'Reply' => '', + 'Parent not found.' => '', + 'URL' => '', + 'Day and name' => '', + 'Options' => '', + 'Field must be a valid email address.' => '', + 'levels deep.' => '', + 'Comments on %title%' => '', + 'Insufficient User Rights.' => '', + 'Copy' => '', + 'Post not found!' => '', + 'Blog Settings' => '', + 'days.' => '', + 'Email' => '', + 'No posts found.' => '', + 'Enable Markdown' => '', + 'Read more' => '', + 'Content cannot be blank.' => '', + 'Unknown' => '', + 'Month and name' => '', + 'Comments are closed.' => '', + 'Close comments on articles older than' => '', + 'Cancel' => '', + 'Written by %name% on %date%' => '', + 'Enable nested comments of' => '', + 'Restrict Access' => '', + 'Comment cannot be blank.' => '', + 'Access denied.' => '', + 'Spam' => '', + 'Leave a comment' => '', + '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', + 'Post' => '', + 'View' => '', + 'Numeric' => '', + 'Name' => '', +); \ No newline at end of file diff --git a/languages/th/messages.php b/languages/th/messages.php index a50f987..ca57c52 100644 --- a/languages/th/messages.php +++ b/languages/th/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'ไม่สามารถแสดงความเห็นได้ โปรดลองอีกครั้งภายหลัง', 'Submit' => 'ตกลง', 'Comment' => 'ความคิดเห็น', - 'Comments are closed.' => 'ความคิดเห็นถูกปิด', + 'Enable Comments' => 'เปิดใช้งานความคิดเห็น', 'Appearance' => 'ลักษณะ', 'Draft' => 'ฉบับร่าง', 'Author' => 'ผู้เขียน', @@ -14,10 +14,9 @@ 'Email invalid.' => 'อีเมลไม่ถูกต้อง', 'Comment not found.' => 'ไม่พบความเห็น', 'Filter by' => 'คัดกรองโดย', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% ความเห็นที่เลือก|]1,Inf[ %count% ความเห็นที่เลือก', 'Comments (%count%)' => 'ความเห็น (%count%)', 'Title' => 'หัวเรื่อง', - 'Thank you! Your comment needs approval before showing up.' => 'ขอบคุณ! ความเห็นของคุณต้องอนุมัติก่อนขึ้นโชว์', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% ความเห็นที่เลือก|]1,Inf[ %count% ความเห็นที่เลือก', 'Insufficient user rights.' => 'สิทธิ์ของผู้ใช้ไม่เพียงพอ', 'Posts View' => 'เข้าชมเรื่อง', 'Default post settings' => 'ค่าเริ่มต้นการตั้งค่าเรื่อง', @@ -26,10 +25,10 @@ 'Image' => 'รูปภาพ', 'Posts' => 'เรื่อง', 'Pending' => 'รอดำเนินการ', - 'Disabled' => '', + 'Disabled' => 'ปิดการใช้งาน', 'Approved' => 'ได้รับการอนุมัติ', 'Edit Post' => 'แก้ไขเรื่อง', - 'Enable Comments' => 'เปิดใช้งานความคิดเห็น', + 'Thank you! Your comment needs approval before showing up.' => 'ขอบคุณ! ความเห็นของคุณต้องอนุมัติก่อนขึ้นโชว์', 'Pending Review' => 'รอคอยการตรวจสอบ', 'Excerpt' => 'คำตัดทอน', 'Invalid post id.' => 'ไอดีเรื่องไม่ถูกต้อง', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'เนื้อหาไม่สามารถเว้นว่างได้', 'Unknown' => 'ไม่ระบุ', 'Month and name' => 'เดือนและชื่อ', + 'Comments are closed.' => 'ความคิดเห็นถูกปิด', 'Close comments on articles older than' => 'ปิดความเห็นบนบทความที่เก่ากว่า', 'Cancel' => 'ยกเลิก', 'Written by %name% on %date%' => 'เขียนโดย %name% ใน %date%', diff --git a/languages/tl_PH/messages.php b/languages/tl_PH/messages.php index 32fe3de..5135ab3 100644 --- a/languages/tl_PH/messages.php +++ b/languages/tl_PH/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => 'Komento', - 'Comments are closed.' => '', + 'Enable Comments' => 'Pahintulutan ang Magkumento', 'Appearance' => 'Itsura', 'Draft' => '', 'Author' => 'May Akda', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'Komento (%bilang%)', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'Aprubado', 'Edit Post' => '', - 'Enable Comments' => 'Pahintulutan ang Magkumento', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => 'Buwan at pangalan', + 'Comments are closed.' => '', 'Close comments on articles older than' => 'Ipagbawal ang magkumento sa mga artikulong higit sa', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/tr_TR/messages.php b/languages/tr_TR/messages.php index fc5ad16..237786d 100644 --- a/languages/tr_TR/messages.php +++ b/languages/tr_TR/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Yorum yapılamıyor. Lütfen daha sonra yeniden deneyin.', 'Submit' => 'Gönder', 'Comment' => 'Yorum', - 'Comments are closed.' => 'Yorumlar kapatıldı.', + 'Enable Comments' => 'Yorumlar Kullanılsın', 'Appearance' => 'Görünüm', 'Draft' => 'Taslak', 'Author' => 'Yazar', @@ -14,10 +14,9 @@ 'Email invalid.' => 'E-posta geçersiz.', 'Comment not found.' => 'Yorum bulunamadı.', 'Filter by' => 'Şuna Göre Süz', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Yorum seçildi|]1,Inf[ %count% Yorum seçildi', 'Comments (%count%)' => 'Yorumlar (%count%)', 'Title' => 'Başlık', - 'Thank you! Your comment needs approval before showing up.' => 'Teşekkürler. Yorumunuz yayınlanmak için onay bekliyor.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Yorum seçildi|]1,Inf[ %count% Yorum seçildi', 'Insufficient user rights.' => 'Kullanıcı izinleri yetersiz.', 'Posts View' => 'Yazılar Görünümü', 'Default post settings' => 'Varsayılan yazı ayarları', @@ -29,7 +28,7 @@ 'Disabled' => 'Devre Dışı', 'Approved' => 'Onaylanmış', 'Edit Post' => 'Yazıyı Düzenle', - 'Enable Comments' => 'Yorumlar Kullanılsın', + 'Thank you! Your comment needs approval before showing up.' => 'Teşekkürler. Yorumunuz yayınlanmak için onay bekliyor.', 'Pending Review' => 'İncelenmeyi Bekliyor', 'Excerpt' => 'Alıntı', 'Invalid post id.' => 'Yazı kodu geçersiz.', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'İçerik boş bırakılamaz.', 'Unknown' => 'Bilinmeyen', 'Month and name' => 'Ay ve ad', + 'Comments are closed.' => 'Yorumlar kapatıldı.', 'Close comments on articles older than' => 'Şu tarihten önceki yazılar yoruma kapatılsın:', 'Cancel' => 'İptal', 'Written by %name% on %date%' => '%date% tarihinde %name% tarafından yazılmıştır.', diff --git a/languages/udm/messages.php b/languages/udm/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/udm/messages.php +++ b/languages/udm/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/uk_UA/messages.php b/languages/uk_UA/messages.php index 6968fea..1c45850 100644 --- a/languages/uk_UA/messages.php +++ b/languages/uk_UA/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => 'Невідомий синтаксис коментаря. Будь ласка, спробуйте пізніше.', 'Submit' => 'Надіслати', 'Comment' => 'Коментар', - 'Comments are closed.' => 'Коментарі закриті.', + 'Enable Comments' => 'Увімкнути коментарі', 'Appearance' => 'Зовнішній вигляд', 'Draft' => 'Чернетка', 'Author' => 'Автор', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Неприпустимий email.', 'Comment not found.' => 'Повідомлення не знайдено.', 'Filter by' => 'Фільтр по', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => 'Коментарі (%count%)', 'Title' => 'Заголовок', - 'Thank you! Your comment needs approval before showing up.' => 'Дякуємо! Вам коментар буде опубліковано після перевірки.', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => 'Недостатньо прав.', 'Posts View' => 'Дивитися повідомлення', 'Default post settings' => 'Налаштування посту за замовчуванням', @@ -29,9 +28,9 @@ 'Disabled' => '', 'Approved' => 'Схвалено ', 'Edit Post' => 'Змінити повідомлення', - 'Enable Comments' => 'Увімкнути коментарі', + 'Thank you! Your comment needs approval before showing up.' => 'Дякуємо! Вам коментар буде опубліковано після перевірки.', 'Pending Review' => 'На розгляді', - 'Excerpt' => 'Увідний текст', + 'Excerpt' => 'Анонс', 'Invalid post id.' => 'Неправильний ID повідомлення.', 'Blog' => 'Блоґ', 'Logged in as %name%' => 'Ви ввійшли як %name%', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => 'Контент не може бути порожнім.', 'Unknown' => 'Невідомо', 'Month and name' => 'Місяць і назва', + 'Comments are closed.' => 'Коментарі закриті.', 'Close comments on articles older than' => 'Закрити коментарі для статей старше', 'Cancel' => 'Відмінити', 'Written by %name% on %date%' => '%name%, %date%', diff --git a/languages/vi_VN/messages.php b/languages/vi_VN/messages.php index adf7491..6ac4044 100644 --- a/languages/vi_VN/messages.php +++ b/languages/vi_VN/messages.php @@ -1,11 +1,11 @@ '', + 'Require e-mail.' => 'Yêu cầu e-mail', 'General' => 'Tổng hợp chung', 'Show Avatars from Gravatar.' => 'Ảnh đại diện từ Gravatar', - 'Unable to comment. Please try again later.' => '', - 'Submit' => '', + 'Unable to comment. Please try again later.' => 'Không thể bình luận. Vui lòng thử lại sau.', + 'Submit' => 'Đăng', 'Comment' => 'Bình luận', - 'Comments are closed.' => 'Các bình luận đã bị đóng', + 'Enable Comments' => 'Cho phép Bình luận', 'Appearance' => 'Tổng quan giao diện', 'Draft' => 'Bản nháp', 'Author' => 'Tác giả', @@ -13,13 +13,12 @@ 'Slug' => 'Slug', 'Email invalid.' => 'Email không hợp lệ', 'Comment not found.' => 'Không có bình luận', - 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', + 'Filter by' => 'Lọc', 'Comments (%count%)' => 'Các bình luận (%count%)', 'Title' => 'Tiêu đề', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% Bình luận đã chọn|]1,Inf[ %count% Bình luận đã chọn', 'Insufficient user rights.' => 'Không có quyền sử dụng đầy đủ', - 'Posts View' => '', + 'Posts View' => 'Đăng Bài', 'Default post settings' => 'Thiết lập bài viết mặc định', '{1} %count% Post selected|]1,Inf[ %count% Posts selected' => '', 'Comments' => 'Bình luận', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => 'Đã chấp thuận', 'Edit Post' => 'Chỉnh sửa bài viết', - 'Enable Comments' => 'Cho phép Bình luận', + 'Thank you! Your comment needs approval before showing up.' => 'Cám ơn bạn! Bình luận của bạn cần được kiểm duyệt trước khi hiển thị.', 'Pending Review' => 'Review đang chờ duyệt', 'Excerpt' => 'Trích ra', 'Invalid post id.' => 'Id bài viết không hợp lệ', @@ -39,11 +38,11 @@ 'Title cannot be blank.' => 'Không để trống tiêu đề', 'Save' => 'Lưu', 'Status' => 'Trạng thái', - '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '', + '{0} %count% Comments|{1} %count% Comment|]1,Inf[ %count% Comments' => '{0} %count% Bình Luận|{1} %count% Bình Luận|]1,Inf[ %count% Bình Luận', 'Please login to leave a comment.' => 'Vui lòng đăng nhập để bình luận', 'Posts per page' => 'Các bài viết mỗi trang', 'E-mail' => 'E-mail', - 'latest last' => '', + 'latest last' => 'cũ trước', 'Please wait another %seconds% seconds before commenting again.' => 'Vui lòng đợi %seconds% giây trước khi tiếp tục bình luận', 'Post not found.' => 'Không tìm thấy bài viết', 'No comments found.' => 'Không có bình luận', @@ -53,7 +52,7 @@ 'Please provide valid name and email.' => 'Vui lòng cung cấp tên và email hợp lệ', 'You are not allowed to post comments.' => 'Bạn không được phép gửi bình luận này', 'Author cannot be blank.' => 'Không để trống tác giả', - 'latest first' => '', + 'latest first' => 'mới trước', 'Unpublished' => 'Không xuất bản', 'Custom' => 'Tùy chỉnh', 'Published' => 'Đã xuất bản', @@ -76,10 +75,11 @@ 'Email' => 'Email', 'No posts found.' => 'Không tìm thấy bài viết', 'Enable Markdown' => 'Kích hoạt tính năng Markdown', - 'Read more' => '', + 'Read more' => 'Đọc thêm', 'Content cannot be blank.' => 'Không để trống nội dung', 'Unknown' => 'Không biết', 'Month and name' => 'Tháng và tên', + 'Comments are closed.' => 'Các bình luận đã bị đóng', 'Close comments on articles older than' => 'Tắt bình luận về bài viết cũ hơn', 'Cancel' => 'Hủy bỏ', 'Written by %name% on %date%' => 'Được viết bởi %name% ngày %date%', @@ -91,7 +91,7 @@ 'Leave a comment' => 'Để lại bình luận', '{0} No comments|{1} %num% Comment|]1,Inf[ %num% Comments' => '', 'Post' => 'Bài viết', - 'View' => '', + 'View' => 'HIển thị', 'Numeric' => 'Số', 'Name' => 'Tên', ); \ No newline at end of file diff --git a/languages/zh-Hant/messages.php b/languages/zh-Hant/messages.php index 914f4e4..bf2fde4 100644 --- a/languages/zh-Hant/messages.php +++ b/languages/zh-Hant/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '', 'Submit' => '', 'Comment' => '', - 'Comments are closed.' => '', + 'Enable Comments' => '', 'Appearance' => '', 'Draft' => '', 'Author' => '', @@ -14,10 +14,9 @@ 'Email invalid.' => '', 'Comment not found.' => '', 'Filter by' => '', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Comments (%count%)' => '', 'Title' => '', - 'Thank you! Your comment needs approval before showing up.' => '', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '', 'Insufficient user rights.' => '', 'Posts View' => '', 'Default post settings' => '', @@ -29,7 +28,7 @@ 'Disabled' => '', 'Approved' => '', 'Edit Post' => '', - 'Enable Comments' => '', + 'Thank you! Your comment needs approval before showing up.' => '', 'Pending Review' => '', 'Excerpt' => '', 'Invalid post id.' => '', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '', 'Unknown' => '', 'Month and name' => '', + 'Comments are closed.' => '', 'Close comments on articles older than' => '', 'Cancel' => '', 'Written by %name% on %date%' => '', diff --git a/languages/zh_CN/messages.php b/languages/zh_CN/messages.php index b54415d..0555f50 100644 --- a/languages/zh_CN/messages.php +++ b/languages/zh_CN/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '无法评论。请稍后再试。', 'Submit' => '发布', 'Comment' => '评论', - 'Comments are closed.' => '评论已删除。', + 'Enable Comments' => '启用评论', 'Appearance' => '外观', 'Draft' => '草稿', 'Author' => '作者', @@ -14,10 +14,9 @@ 'Email invalid.' => 'Email 无效。', 'Comment not found.' => '评论未找到.', 'Filter by' => '筛选自', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% 条评论已选择|]1,Inf[ %count% 条评论已选择', 'Comments (%count%)' => '评论 (%count%)', 'Title' => '标题', - 'Thank you! Your comment needs approval before showing up.' => '谢谢您!您的评论在发布前需要经过审核。', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% 条评论已选择|]1,Inf[ %count% 条评论已选择', 'Insufficient user rights.' => '没有足够的用户权限。', 'Posts View' => '预览文章', 'Default post settings' => '默认文章设置', @@ -29,7 +28,7 @@ 'Disabled' => '禁用', 'Approved' => '审核通过', 'Edit Post' => '编辑文章', - 'Enable Comments' => '启用评论', + 'Thank you! Your comment needs approval before showing up.' => '谢谢您!您的评论在发布前需要经过审核。', 'Pending Review' => '等待审核', 'Excerpt' => '摘要', 'Invalid post id.' => '错误的文章 ID。', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '内容不能为空.', 'Unknown' => '未知', 'Month and name' => '月份文章型', + 'Comments are closed.' => '评论已删除。', 'Close comments on articles older than' => '关闭评论,在文章超过', 'Cancel' => '取消', 'Written by %name% on %date%' => '作者 %name% 于 %date% 编写', diff --git a/languages/zh_TW/messages.php b/languages/zh_TW/messages.php index 5a0fd86..af92425 100644 --- a/languages/zh_TW/messages.php +++ b/languages/zh_TW/messages.php @@ -5,7 +5,7 @@ 'Unable to comment. Please try again later.' => '無法發表評論,請稍後再試一次。', 'Submit' => '送出', 'Comment' => '發表評論', - 'Comments are closed.' => '評論被關閉。', + 'Enable Comments' => '允許發表評論', 'Appearance' => '外觀', 'Draft' => '草稿', 'Author' => '作者', @@ -14,10 +14,9 @@ 'Email invalid.' => '無效的電子郵件。', 'Comment not found.' => '找不到評論。', 'Filter by' => '過濾條件', - '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% 則評論被選取|]1,Inf[ %count% 則評論被選取', 'Comments (%count%)' => '評論 (%count%)', 'Title' => '標題', - 'Thank you! Your comment needs approval before showing up.' => '謝謝!您的評論在顯示之前需要先經過審核。', + '{1} %count% Comment selected|]1,Inf[ %count% Comments selected' => '{1} %count% 則評論被選取|]1,Inf[ %count% 則評論被選取', 'Insufficient user rights.' => '使用者權限不足。', 'Posts View' => '文章檢視', 'Default post settings' => '預設貼文設定', @@ -29,7 +28,7 @@ 'Disabled' => '已停用', 'Approved' => '已審核', 'Edit Post' => '編輯文章', - 'Enable Comments' => '允許發表評論', + 'Thank you! Your comment needs approval before showing up.' => '謝謝!您的評論在顯示之前需要先經過審核。', 'Pending Review' => '等待審核中', 'Excerpt' => '引文', 'Invalid post id.' => '無效的文章ID。', @@ -80,6 +79,7 @@ 'Content cannot be blank.' => '內容不能空白。', 'Unknown' => '未知', 'Month and name' => '日期和姓名', + 'Comments are closed.' => '評論被關閉。', 'Close comments on articles older than' => '關閉', 'Cancel' => '取消', 'Written by %name% on %date%' => '%name% 寫於 %date%', diff --git a/views/admin/comment-index.php b/views/admin/comment-index.php index fb6132b..5bb77d9 100644 --- a/views/admin/comment-index.php +++ b/views/admin/comment-index.php @@ -1,7 +1,7 @@ style('comment-index', 'blog:assets/css/blog.admin.css') ?> script('comment-index', 'blog:app/bundle/comment-index.js', 'vue') ?> -
- | # + | #
{{ 'The comment is awaiting approval.' }}