summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.bg.js
diff options
context:
space:
mode:
Diffstat (limited to 'locales/jquery.timeago.bg.js')
-rw-r--r--locales/jquery.timeago.bg.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/locales/jquery.timeago.bg.js b/locales/jquery.timeago.bg.js
new file mode 100644
index 0000000..a3bd343
--- /dev/null
+++ b/locales/jquery.timeago.bg.js
@@ -0,0 +1,28 @@
+(function (factory) {
+ if (typeof define === 'function' && define.amd) {
+ define(['jquery'], factory);
+ } else if (typeof module === 'object' && typeof module.exports === 'object') {
+ factory(require('jquery'));
+ } else {
+ factory(jQuery);
+ }
+}(function (jQuery) {
+ // Bulgarian
+ jQuery.timeago.settings.strings = {
+ prefixAgo: "преди",
+ prefixFromNow: "след",
+ suffixAgo: null,
+ suffixFromNow: null,
+ seconds: "по-малко от минута",
+ minute: "една минута",
+ minutes: "%d минути",
+ hour: "един час",
+ hours: "%d часа",
+ day: "един ден",
+ days: "%d дни",
+ month: "един месец",
+ months: "%d месеца",
+ year: "една година",
+ years: "%d години"
+ };
+}));