muck-activities 0.1.12 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. data/.gitignore +5 -0
  2. data/README.rdoc +21 -0
  3. data/Rakefile +26 -10
  4. data/VERSION +1 -1
  5. data/app/views/activities/_template_filter.html.erb +1 -1
  6. data/locales/ar.yml +3 -0
  7. data/locales/bg.yml +3 -0
  8. data/locales/ca.yml +3 -0
  9. data/locales/cs.yml +4 -1
  10. data/locales/da.yml +4 -1
  11. data/locales/de.yml +3 -0
  12. data/locales/el.yml +3 -0
  13. data/locales/en.yml +4 -1
  14. data/locales/es.yml +3 -0
  15. data/locales/et.yml +31 -0
  16. data/locales/fa.yml +31 -0
  17. data/locales/fi.yml +31 -0
  18. data/locales/fr.yml +3 -0
  19. data/locales/gl.yml +31 -0
  20. data/locales/hi.yml +31 -0
  21. data/locales/hr.yml +31 -0
  22. data/locales/hu.yml +31 -0
  23. data/locales/id.yml +31 -0
  24. data/locales/it.yml +3 -0
  25. data/locales/iw.yml +3 -0
  26. data/locales/ja.yml +3 -0
  27. data/locales/ko.yml +3 -0
  28. data/locales/lt.yml +3 -0
  29. data/locales/lv.yml +3 -0
  30. data/locales/mt.yml +31 -0
  31. data/locales/nl.yml +3 -0
  32. data/locales/no.yml +3 -0
  33. data/locales/pl.yml +3 -0
  34. data/locales/pt-PT.yml +31 -0
  35. data/locales/ro.yml +3 -0
  36. data/locales/ru.yml +3 -0
  37. data/locales/sk.yml +4 -1
  38. data/locales/sl.yml +3 -0
  39. data/locales/sq.yml +31 -0
  40. data/locales/sr.yml +3 -0
  41. data/locales/sv.yml +3 -0
  42. data/locales/th.yml +31 -0
  43. data/locales/tl.yml +3 -0
  44. data/locales/tr.yml +31 -0
  45. data/locales/uk.yml +3 -0
  46. data/locales/vi.yml +3 -0
  47. data/locales/zh-CN.yml +3 -0
  48. data/locales/zh-TW.yml +3 -0
  49. data/locales/zh.yml +3 -0
  50. data/muck-activities.gemspec +17 -81
  51. data/test/rails_root/app/models/user.rb +0 -7
  52. metadata +16 -23
  53. data/pkg/muck-activities-0.1.10.gem +0 -0
  54. data/pkg/muck-activities-0.1.11.gem +0 -0
  55. data/rdoc/classes/ActionController/Routing/RouteSet.html +0 -148
  56. data/rdoc/classes/ActionController/Routing.html +0 -107
  57. data/rdoc/classes/ActionController.html +0 -107
  58. data/rdoc/classes/MuckActivities/Tasks.html +0 -146
  59. data/rdoc/classes/MuckActivities.html +0 -111
  60. data/rdoc/classes/MuckActivity/ActMethods.html +0 -260
  61. data/rdoc/classes/MuckActivity/InstanceMethods.html +0 -376
  62. data/rdoc/created.rid +0 -1
  63. data/rdoc/files/README_rdoc.html +0 -204
  64. data/rdoc/files/lib/muck_activities/active_record/acts/muck_activity_rb.html +0 -101
  65. data/rdoc/files/lib/muck_activities/initialize_routes_rb.html +0 -101
  66. data/rdoc/files/lib/muck_activities/muck_activity_rb.html +0 -101
  67. data/rdoc/files/lib/muck_activities/tasks_rb.html +0 -110
  68. data/rdoc/files/lib/muck_activities_rb.html +0 -110
  69. data/rdoc/fr_class_index.html +0 -33
  70. data/rdoc/fr_file_index.html +0 -32
  71. data/rdoc/fr_method_index.html +0 -38
  72. data/rdoc/index.html +0 -24
  73. data/rdoc/rdoc-style.css +0 -208
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ *.sw?
2
+ .DS_Store
3
+ coverage
4
+ rdoc
5
+ pkg
data/README.rdoc CHANGED
@@ -69,4 +69,25 @@ If you would like to add live updates to the user's activity feed you can do so
69
69
 
70
70
  Note that this will poll the server every 5 seconds and so will increase server load and bandwidth usage.
71
71
 
72
+ == Development
73
+
74
+ If you want to add a new activity you only need to add a template to views/activity_templates then setup the related localization.
75
+ For example, to create a template for 'comments' add a partial called _comments.html.erb to views/activity_templates. There is
76
+ a generic template available that can be used to speed development or be used as an example:
77
+
78
+ <%= render :partial => 'activity_templates/generic', :locals => { :activity => activity, :activity_css_class => 'activity-status-update' } %>
79
+
80
+ Next create an entry in en.yml
81
+
82
+ en:
83
+ muck:
84
+ activity_templates:
85
+ comment: "Comments"
86
+
87
+ The name of the entry needs to match the name of the template. Then to add an activity you only
88
+ need to do:
89
+
90
+ add_activity(user.feed_to, user, comment, 'comment')
91
+
92
+
72
93
  Copyright (c) 2009 Justin Ball, released under the MIT license
data/Rakefile CHANGED
@@ -13,6 +13,22 @@ Rake::TestTask.new(:test) do |t|
13
13
  t.verbose = true
14
14
  end
15
15
 
16
+ begin
17
+ require 'rcov/rcovtask'
18
+ Rcov::RcovTask.new do |t|
19
+ #t.libs << 'lib'
20
+ t.libs << 'test/rails_root/lib'
21
+ t.pattern = 'test/rails_root/test/**/*_test.rb'
22
+ t.verbose = true
23
+ t.output_dir = 'coverage'
24
+ t.rcov_opts << '--exclude "gems/*"'
25
+ end
26
+ rescue LoadError
27
+ task :rcov do
28
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
29
+ end
30
+ end
31
+
16
32
  desc 'Generate documentation for the muck_activities plugin.'
17
33
  Rake::RDocTask.new(:rdoc) do |rdoc|
18
34
  rdoc.rdoc_dir = 'rdoc'
@@ -41,16 +57,16 @@ begin
41
57
  gemspec.add_dependency "muck-engine"
42
58
  gemspec.add_dependency "muck-users"
43
59
  gemspec.add_dependency "muck-comments"
44
- gemspec.files.include %w(
45
- tasks/*
46
- db/migrate/*.rb
47
- app/**/**/**/*
48
- config/*
49
- locales/*
50
- rails/*
51
- test/*
52
- lib/**/*
53
- public/**/* )
60
+ # gemspec.files.include %w(
61
+ # tasks/*
62
+ # db/migrate/*.rb
63
+ # app/**/**/**/*
64
+ # config/*
65
+ # locales/*
66
+ # rails/*
67
+ # test/*
68
+ # lib/**/*
69
+ # public/**/* )
54
70
  end
55
71
  rescue LoadError
56
72
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.12
1
+ 0.1.13
@@ -1,6 +1,6 @@
1
1
  <ul id="activity-filter">
2
2
  <li class="all-activities <%=no_filter?%>"><a href="<%=all_activities_url%>"><%=t('muck.activities.all_activities')%></a></li>
3
3
  <% activity_types.each do |type| -%>
4
- <li class="<%= type.template%> <%=is_current_filter?(type.template)%>"><a href="?activity_filter=<%= type.template%>"><%= type.template.titleize.pluralize %></a></li>
4
+ <li class="<%= type.template%> <%=is_current_filter?(type.template)%>"><a href="?activity_filter=<%= type.template%>"><%= t("muck.activity_templates.#{type.template}") %></a></li>
5
5
  <% end -%>
6
6
  </ul>
data/locales/ar.yml CHANGED
@@ -6,6 +6,7 @@ ar:
6
6
  adding_comment_message: "واضاف التعليق..."
7
7
  all_activities: "جميع الأنشطة"
8
8
  clear: واضح
9
+ create_error: "هناك مشكلة في طلب واضاف ان النشاط : {{error}}"
9
10
  delete: حذف
10
11
  invite_friends: "دعوة الأصدقاء"
11
12
  item_could_not_be_removed: "البند لا يمكن شطبها من قائمة الأنشطة الأخيرة."
@@ -26,3 +27,5 @@ ar:
26
27
  update_status_message: "تحديث مركز!"
27
28
  updating_status_message: "تحديث حالتك. الرجاء الانتظار."
28
29
  write_prompt: "كتابة تعليق..."
30
+ activity_templates:
31
+ status_update: "مركز والمستجدات"
data/locales/bg.yml CHANGED
@@ -6,6 +6,7 @@ bg:
6
6
  adding_comment_message: "Добавяне на коментар ..."
7
7
  all_activities: "Всички дейности"
8
8
  clear: Ясен
9
+ create_error: "Имаше проблем при добавянето на исканата дейност: {{error}}"
9
10
  delete: Изтривам
10
11
  invite_friends: "Поканете приятели"
11
12
  item_could_not_be_removed: "Точка не могат да бъдат отстранени от последните дейности списък."
@@ -26,3 +27,5 @@ bg:
26
27
  update_status_message: "обновите своя статус!"
27
28
  updating_status_message: "Актуализиране на вашия статус. Моля, изчакайте."
28
29
  write_prompt: "Напиши коментар ..."
30
+ activity_templates:
31
+ status_update: "Статус актуализации"
data/locales/ca.yml CHANGED
@@ -6,6 +6,7 @@ ca:
6
6
  adding_comment_message: "Afegint comentari ..."
7
7
  all_activities: "Totes les activitats"
8
8
  clear: Clar
9
+ create_error: "Hi ha hagut un problema en afegir l&#39;activitat sol licitada: {{error}}"
9
10
  delete: Esborrar
10
11
  invite_friends: "Convidar amics"
11
12
  item_could_not_be_removed: "Tema no pot ser eliminat de la llista d&#39;activitats recents."
@@ -26,3 +27,5 @@ ca:
26
27
  update_status_message: "actualització del seu estat!"
27
28
  updating_status_message: "L&#39;actualització del seu estat. Si us plau, espereu."
28
29
  write_prompt: "Vols escriure un comentari ..."
30
+ activity_templates:
31
+ status_update: "Actualitzacions d&#39;estat"
data/locales/cs.yml CHANGED
@@ -6,6 +6,7 @@ cs:
6
6
  adding_comment_message: "Přidání komentáře ..."
7
7
  all_activities: "Všechny aktivity"
8
8
  clear: Jasný
9
+ create_error: "Došlo k problému přidáním požadovaných činností: {{error}}"
9
10
  delete: Odstranit
10
11
  invite_friends: "Pozvat přátele"
11
12
  item_could_not_be_removed: "Bod nemohl být odstraněn z posledních aktivit seznamu."
@@ -24,5 +25,7 @@ cs:
24
25
  time_ago: "{{time_in_words}} Ago"
25
26
  update_error: "Jejda ... Došlo k problému. {{errors}}"
26
27
  update_status_message: "aktualizovat svůj stav!"
27
- updating_status_message: "Aktualizaci stavu. Počkej prosím."
28
+ updating_status_message: "Aktualizaci stavu. Prosím čekejte."
28
29
  write_prompt: "Napište komentář ..."
30
+ activity_templates:
31
+ status_update: "Stav aktualizace"
data/locales/da.yml CHANGED
@@ -6,6 +6,7 @@ da:
6
6
  adding_comment_message: "Tilføje kommentarer ..."
7
7
  all_activities: "Alle aktiviteter"
8
8
  clear: Klar
9
+ create_error: "Der var et problem at tilføje den ønskede aktivitet: {{error}}"
9
10
  delete: Slet
10
11
  invite_friends: "Inviter venner"
11
12
  item_could_not_be_removed: "Konto ikke kunne fjernes fra de seneste aktiviteter listen."
@@ -24,5 +25,7 @@ da:
24
25
  time_ago: "{{time_in_words}} Siden"
25
26
  update_error: "Ups ... Der var et problem. {{errors}}"
26
27
  update_status_message: "opdatere din status!"
27
- updating_status_message: "Opdatering af din status. Venligst ventetid."
28
+ updating_status_message: "Opdatering af din status. Vent venligst."
28
29
  write_prompt: "Skriv en kommentar ..."
30
+ activity_templates:
31
+ status_update: "Status Updates"
data/locales/de.yml CHANGED
@@ -6,6 +6,7 @@ de:
6
6
  adding_comment_message: "Kommentar hinzufügen ..."
7
7
  all_activities: "Alle Aktivitäten"
8
8
  clear: Klar
9
+ create_error: "Es wurde ein Problem, das Hinzufügen der beantragten Aktivität: {{error}}"
9
10
  delete: Löschen
10
11
  invite_friends: "Freunde einladen"
11
12
  item_could_not_be_removed: "Punkt konnte nicht entfernt werden aus den jüngsten Aktivitäten Liste."
@@ -26,3 +27,5 @@ de:
26
27
  update_status_message: "aktualisieren Sie Ihren Status!"
27
28
  updating_status_message: "Aktualisieren Sie Ihren Status. Bitte warten."
28
29
  write_prompt: "Schreiben Sie einen Kommentar ..."
30
+ activity_templates:
31
+ status_update: "Status Updates"
data/locales/el.yml CHANGED
@@ -6,6 +6,7 @@ el:
6
6
  adding_comment_message: "Adding σχόλιο ..."
7
7
  all_activities: "Όλες οι δραστηριότητες"
8
8
  clear: Καθαρός
9
+ create_error: "Υπήρξε πρόβλημα στην προσθήκη του ζήτησε δραστηριότητα: {{error}}"
9
10
  delete: Διαγράφω
10
11
  invite_friends: "Πρόσκληση φίλων"
11
12
  item_could_not_be_removed: "Το σημείο δεν μπορούσε να αφαιρεθεί από τον κατάλογο πρόσφατες δραστηριότητες."
@@ -26,3 +27,5 @@ el:
26
27
  update_status_message: "ενημέρωση σας!"
27
28
  updating_status_message: "Η ενημέρωση σας. Παρακαλώ περιμένετε."
28
29
  write_prompt: "Γράψτε ένα σχόλιο ..."
30
+ activity_templates:
31
+ status_update: "Status Updates"
data/locales/en.yml CHANGED
@@ -25,4 +25,7 @@ en:
25
25
  all_activities: All Activities
26
26
  make_comment: Comment
27
27
  write_prompt: "Write a comment..."
28
- adding_comment_message: "Adding comment... "
28
+ adding_comment_message: "Adding comment... "
29
+ activity_templates:
30
+ status_update: "Status Updates"
31
+
data/locales/es.yml CHANGED
@@ -6,6 +6,7 @@ es:
6
6
  adding_comment_message: "Añadiendo comentario ..."
7
7
  all_activities: "Todas las actividades"
8
8
  clear: Claro
9
+ create_error: "Ha habido un problema al añadir la actividad solicitada: {{error}}"
9
10
  delete: Borrar
10
11
  invite_friends: "Invitar a amigos"
11
12
  item_could_not_be_removed: "Tema no puede ser removido de la lista de actividades recientes."
@@ -26,3 +27,5 @@ es:
26
27
  update_status_message: "actualización de su estado!"
27
28
  updating_status_message: "La actualización de su estado. Por favor, espere."
28
29
  write_prompt: "Escriba un comentario ..."
30
+ activity_templates:
31
+ status_update: "Actualizaciones de estado"
data/locales/et.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ et:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "Recent Activity"
6
+ adding_comment_message: "Adding kommentaar ..."
7
+ all_activities: "Kõik tegevused"
8
+ clear: Selge
9
+ create_error: "Probleem lisades taotletud tegevus: {{error}}"
10
+ delete: Kustutama
11
+ invite_friends: "Kutsu sõpru"
12
+ item_could_not_be_removed: "Punkt ei ole võimalik eemaldada viimaste tegevuste nimekirja."
13
+ item_created: "Lisatud aktiivsus"
14
+ item_removed: "Punkt edukalt eemaldatud viimaste tegevuste nimekirja."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: Kommentaar
17
+ paging_newer: «Uuemad
18
+ paging_older: "Vanemad »"
19
+ permission_denied: "Sa ei saa seda teha."
20
+ post: Jagama
21
+ problem_with_status: "Probleem, muutes oma staatust"
22
+ status_indicator: "on"
23
+ status_update_prompt: "Mida tehes kohe?"
24
+ template_or_item_required: "Tegevust on vaja malli või objekti kuvada õigesti"
25
+ time_ago: "{{time_in_words}} Tagasi"
26
+ update_error: "Oih ... Oli probleem. {{errors}}"
27
+ update_status_message: "uuendage oma staatuse!"
28
+ updating_status_message: "Uuendan oma staatust. Palun oota."
29
+ write_prompt: "Kirjuta kommentaar ..."
30
+ activity_templates:
31
+ status_update: "Staatus Updates"
data/locales/fa.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ fa:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "فعالیت های اخیر"
6
+ adding_comment_message: "اضافه کردن نظر..."
7
+ all_activities: "تمام فعالیت ها"
8
+ clear: روشن
9
+ create_error: "یک مشکل در اضافه کردن فعالیت های درخواست شده : {{error}}وجود دارد."
10
+ delete: حذف
11
+ invite_friends: "دعوت از دوستان"
12
+ item_could_not_be_removed: "مورد می تواند از لیست فعالیت های اخیر ندارد حذف خواهد شد."
13
+ item_created: "فعالیت های اضافه شده"
14
+ item_removed: "مورد با موفقیت از لیست فعالیت های اخیر حذف شد."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: نظر
17
+ paging_newer: «جدیدتر
18
+ paging_older: "قدیمی تر »"
19
+ permission_denied: "پوزش می طلبیم ، شما را نمی توانید انجام آن."
20
+ post: تقسیم
21
+ problem_with_status: "یک اشکال در تغییر وضعیت خود را وجود دارد."
22
+ status_indicator: است
23
+ status_update_prompt: "آنچه شما انجام حق حالا؟"
24
+ template_or_item_required: "یک فعالیت نیاز به یک الگو و یا یک آیتم را به درستی نمایش داده"
25
+ time_ago: "{{time_in_words}}پیش"
26
+ update_error: "آخ... شده بود یک مشکل وجود دارد. {{errors}}"
27
+ update_status_message: "به روز وضعیت خود را!"
28
+ updating_status_message: "وضعیت به روز رسانی کنید. لطفا صبر کنید."
29
+ write_prompt: "نوشتن یک نظر..."
30
+ activity_templates:
31
+ status_update: "وضعیت به روز رسانی ها"
data/locales/fi.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ fi:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "Recent Activity"
6
+ adding_comment_message: "Lisäämällä kommentti ..."
7
+ all_activities: "Kaikki Aktiviteetit"
8
+ clear: Tyhjennä
9
+ create_error: "Ongelma lisäämällä pyynnön Toimiala: {{error}}"
10
+ delete: Poistaa
11
+ invite_friends: "Kutsu kavereita"
12
+ item_could_not_be_removed: "Tuote ei ole voitu poistaa viime toiminta."
13
+ item_created: "Lisätty toimintaa"
14
+ item_removed: "Alamomentti onnistuneesti poistettu viime toiminta."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: Kommentti
17
+ paging_newer: «Uudemmat
18
+ paging_older: "Vanhemmat »"
19
+ permission_denied: "Et voi tehdä sitä."
20
+ post: Jakaa
21
+ problem_with_status: "Ongelma muuttuviin olotilasi"
22
+ status_indicator: "on"
23
+ status_update_prompt: "Mitä teet juuri nyt?"
24
+ template_or_item_required: "Aktiivisuus edellyttää mallia tai kohteen näyttämään oikein"
25
+ time_ago: "{{time_in_words}} Sitten"
26
+ update_error: "Oho ... Oli ongelma. {{errors}}"
27
+ update_status_message: "Päivitä tila!"
28
+ updating_status_message: "Päivitetään olotilasi. Odota."
29
+ write_prompt: "Kirjoita kommentti ..."
30
+ activity_templates:
31
+ status_update: Tila-päivitykset
data/locales/fr.yml CHANGED
@@ -6,6 +6,7 @@ fr:
6
6
  adding_comment_message: "Ajout de commentaire ..."
7
7
  all_activities: "Toutes les activités"
8
8
  clear: Clair
9
+ create_error: "Il y avait un problème en ajoutant la demande de l&#39;activité: {{error}}"
9
10
  delete: Supprimer
10
11
  invite_friends: "Inviter des amis"
11
12
  item_could_not_be_removed: "Point ne peut pas être retiré de la liste des activités récentes."
@@ -26,3 +27,5 @@ fr:
26
27
  update_status_message: "mise à jour de votre statut!"
27
28
  updating_status_message: "Mise à jour de votre statut. Attendez s&#39;il vous plaît."
28
29
  write_prompt: "Ecrire un commentaire ..."
30
+ activity_templates:
31
+ status_update: "Mises à jour Etat"
data/locales/gl.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ gl:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "Actividade recente"
6
+ adding_comment_message: "Engadindo comentario ..."
7
+ all_activities: "Todas as actividades"
8
+ clear: Claro
9
+ create_error: "Houbo un erro engadindo o requerido actividade: {{error}}"
10
+ delete: Eliminar
11
+ invite_friends: "Invitar amigos"
12
+ item_could_not_be_removed: "O punto non se pode eliminar da lista recentes actividades."
13
+ item_created: "Engadido actividade"
14
+ item_removed: "Elemento eliminado correctamente da recente actividades lista."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: Comentario
17
+ paging_newer: "«Máis novo"
18
+ paging_older: "Anteriores »"
19
+ permission_denied: "Sentímolo, non pode facelo."
20
+ post: Compartir
21
+ problem_with_status: "Houbo un problema ao mudar o seu estado"
22
+ status_indicator: é
23
+ status_update_prompt: "O que está facendo agora?"
24
+ template_or_item_required: "Unha actividade require un modelo ou un elemento para amosar correctamente"
25
+ time_ago: "{{time_in_words}} Detrás"
26
+ update_error: "Uups ... Houbo un problema. {{errors}}"
27
+ update_status_message: "actualizar o seu estado!"
28
+ updating_status_message: "Actualizando o seu estado. Agarde."
29
+ write_prompt: "Escribir un comentario ..."
30
+ activity_templates:
31
+ status_update: "Status Actualizacións"
data/locales/hi.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ hi:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "हाल की गतिविधि"
6
+ adding_comment_message: "टिप्पणी जोड़ना ..."
7
+ all_activities: "सभी क्रियाएँ"
8
+ clear: स्पष्ट
9
+ create_error: "वहाँ एक समस्या का अनुरोध गतिविधि जोड़कर: {{error}} था"
10
+ delete: मिटाना
11
+ invite_friends: "दोस्तों को आमंत्रित करें"
12
+ item_could_not_be_removed: "आइटम हाल की गतिविधियों की सूची से हटाया नहीं जा सका."
13
+ item_created: "जोड़ा गया गतिविधि"
14
+ item_removed: "आइटम को सफलतापूर्वक हाल की गतिविधियों की सूची से हटा दिया."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: टिप्पणी
17
+ paging_newer: «नया
18
+ paging_older: "पुराने »"
19
+ permission_denied: "क्षमा करें, आप ऐसा नहीं कर सकते."
20
+ post: हिस्सा
21
+ problem_with_status: "एक समस्या अपनी स्थिति बदल गई"
22
+ status_indicator: है
23
+ status_update_prompt: "तुम अभी क्या कर रहे हैं?"
24
+ template_or_item_required: "एक गतिविधि एक या एक मद को सही ढंग से प्रदर्शित करने के लिए टेम्पलेट की आवश्यकता है"
25
+ time_ago: "{{time_in_words}} पहले"
26
+ update_error: "उफ़ ... वहाँ एक समस्या थी. {{errors}}"
27
+ update_status_message: "अपनी स्थिति अद्यतन!"
28
+ updating_status_message: "अपनी स्थिति अद्यतन. कृपया प्रतीक्षा करें."
29
+ write_prompt: "टिप्पणी लिखें ..."
30
+ activity_templates:
31
+ status_update: "स्तर अपडेट"
data/locales/hr.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ hr:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "Recent Activity"
6
+ adding_comment_message: "Dodavanje komentar ..."
7
+ all_activities: "Sve aktivnosti"
8
+ clear: Jasno
9
+ create_error: "Došlo je do problema u dodavanju traženu djelatnost: {{error}}"
10
+ delete: Izbrisati
11
+ invite_friends: "Pozovi prijatelje"
12
+ item_could_not_be_removed: "Predmet nije mogao biti skinut sa popisa nedavnih aktivnosti."
13
+ item_created: "Added aktivnost"
14
+ item_removed: "Stavka uspješno uklonjen iz nedavne aktivnosti liste."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: Komentar
17
+ paging_newer: «Novija
18
+ paging_older: "Starije »"
19
+ permission_denied: "Nažalost, ne možete učiniti."
20
+ post: Dijeliti
21
+ problem_with_status: "Došlo je do problema mijenja vaš status"
22
+ status_indicator: je
23
+ status_update_prompt: "Što to radiš sada?"
24
+ template_or_item_required: "Aktivnost zahtijeva predložak ili stavke prikazati ispravno"
25
+ time_ago: "{{time_in_words}} Ago"
26
+ update_error: "Ups ... Došlo je do problema. {{errors}}"
27
+ update_status_message: "ažurirajte svoj status!"
28
+ updating_status_message: "Ažuriranje vašeg statusa. Molimo pričekajte."
29
+ write_prompt: "Write a comment ..."
30
+ activity_templates:
31
+ status_update: "Status Updates"
data/locales/hu.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ hu:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "Legutóbbi tevékenység"
6
+ adding_comment_message: "Adding komment ..."
7
+ all_activities: "Minden tevékenységet"
8
+ clear: Világos
9
+ create_error: "Gond van a hozzá a kért tevékenység: {{error}}"
10
+ delete: Töröl
11
+ invite_friends: "Invite Friends"
12
+ item_could_not_be_removed: "Elem nem távolítható el a legújabb tevékenységek listáját."
13
+ item_created: "Hozzáadva tevékenység"
14
+ item_removed: "Pont sikerült eltávolítani a legutóbbi tevékenységek listáját."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: Hozzászólás
17
+ paging_newer: «Újabb
18
+ paging_older: "Régebbiek »"
19
+ permission_denied: "Sajnáljuk, de nem tehetem."
20
+ post: Megoszt
21
+ problem_with_status: "Gond van a változó a status"
22
+ status_indicator: van
23
+ status_update_prompt: "Mit csinálsz most?"
24
+ template_or_item_required: "Egy tevékenység megköveteli a sablon, vagy egy elem jelenik meg helyesen, hogy"
25
+ time_ago: "{{time_in_words}} Ezelőtt"
26
+ update_error: "Hoppá ... Volt egy kis probléma. {{errors}}"
27
+ update_status_message: "frissíti az állapot!"
28
+ updating_status_message: "Aktualizálás szerezhetnek. Kérem, várjon."
29
+ write_prompt: "Írj egy megjegyzést ..."
30
+ activity_templates:
31
+ status_update: "Status Updates"
data/locales/id.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ id:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "Aktivitas Terbaru"
6
+ adding_comment_message: "Menambahkan komentar ..."
7
+ all_activities: "Semua Kegiatan"
8
+ clear: Bersih
9
+ create_error: "Terjadi masalah menambahkan aktivitas yang diminta: {{error}}"
10
+ delete: Menghapus
11
+ invite_friends: "Mengundang Teman"
12
+ item_could_not_be_removed: "Item tidak dapat dihapus dari daftar kegiatan baru."
13
+ item_created: "Ditambahkan kegiatan"
14
+ item_removed: "Item berhasil dihapus dari daftar kegiatan baru."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: Komentar
17
+ paging_newer: «Newer
18
+ paging_older: "Older »"
19
+ permission_denied: "Maaf, Anda tidak dapat melakukan itu."
20
+ post: Berbagi
21
+ problem_with_status: "Terjadi masalah mengubah status Anda"
22
+ status_indicator: adalah
23
+ status_update_prompt: "What are you doing right now?"
24
+ template_or_item_required: "Suatu kegiatan yang membutuhkan template atau item untuk ditampilkan dengan benar"
25
+ time_ago: "{{time_in_words}} Lalu"
26
+ update_error: "Oops ... Ada masalah. {{errors}}"
27
+ update_status_message: "memperbarui status Anda!"
28
+ updating_status_message: "Memperbarui statusnya. Harap tunggu."
29
+ write_prompt: "Tulis komentar ..."
30
+ activity_templates:
31
+ status_update: "Status Pembaharuan"
data/locales/it.yml CHANGED
@@ -6,6 +6,7 @@ it:
6
6
  adding_comment_message: "Aggiungere commento ..."
7
7
  all_activities: "Tutte le attività"
8
8
  clear: Chiaro
9
+ create_error: "Si è verificato un problema aggiungendo la richiesta di attività: {{error}}"
9
10
  delete: Eliminare
10
11
  invite_friends: "Invita Amici"
11
12
  item_could_not_be_removed: "Voce non può essere rimosso dalla lista delle attività recenti."
@@ -26,3 +27,5 @@ it:
26
27
  update_status_message: "aggiornare lo stato!"
27
28
  updating_status_message: "Aggiornare il proprio status. Ti preghiamo di attendere."
28
29
  write_prompt: "Scrivi un commento ..."
30
+ activity_templates:
31
+ status_update: "Aggiornamenti sullo stato"
data/locales/iw.yml CHANGED
@@ -6,6 +6,7 @@ iw:
6
6
  adding_comment_message: "הוספת תגובה ..."
7
7
  all_activities: "כל הפעילויות"
8
8
  clear: ברור
9
+ create_error: "הייתה בעיה להוסיף המבוקשת פעילות: {{error}}"
9
10
  delete: למחוק
10
11
  invite_friends: "הזמן חברים"
11
12
  item_could_not_be_removed: "פריט שלא ניתן היה להסיר את רשימת הפעילויות האחרונות."
@@ -26,3 +27,5 @@ iw:
26
27
  update_status_message: "עדכן את הסטטוס!"
27
28
  updating_status_message: "אפשרות לעדכן את המצב. אנא המתן."
28
29
  write_prompt: "לכתוב הערה ..."
30
+ activity_templates:
31
+ status_update: "עדכוני סטטוס"
data/locales/ja.yml CHANGED
@@ -6,6 +6,7 @@ ja:
6
6
  adding_comment_message: コメントを追加しています...
7
7
  all_activities: すべてのアクティビティ
8
8
  clear: 片付ける
9
+ create_error: "そこに問題が要請活動を追加: {{error}}されました"
9
10
  delete: 削除する
10
11
  invite_friends: 友だちを招待
11
12
  item_could_not_be_removed: アイテムは、最近の活動をリストから削除されませんでした。
@@ -26,3 +27,5 @@ ja:
26
27
  update_status_message: お客様の状況を更新!
27
28
  updating_status_message: あなたのステータスを更新する。しばらくお待ちください。
28
29
  write_prompt: コメントを書く...
30
+ activity_templates:
31
+ status_update: ステータスの更新
data/locales/ko.yml CHANGED
@@ -6,6 +6,7 @@ ko:
6
6
  adding_comment_message: "코멘트를 추가 ..."
7
7
  all_activities: "모든 활동"
8
8
  clear: 맑은
9
+ create_error: "거기에 문제가 요청된 작업을 추가 : {{error}}했다"
9
10
  delete: 삭제
10
11
  invite_friends: "친구 초대"
11
12
  item_could_not_be_removed: "상품은 최근 활동을 목록에서 제거되지 않을 수있습니다."
@@ -26,3 +27,5 @@ ko:
26
27
  update_status_message: "귀하의 상태를 업데이 트!"
27
28
  updating_status_message: "귀하의 상태를 업데이 트했다. 잠시 기다려주십시오."
28
29
  write_prompt: "덧글 쓰기 ..."
30
+ activity_templates:
31
+ status_update: "상태 업데이트"
data/locales/lt.yml CHANGED
@@ -6,6 +6,7 @@ lt:
6
6
  adding_comment_message: "Įrašyta komentarą ..."
7
7
  all_activities: "Visi Veikla"
8
8
  clear: Aiškus
9
+ create_error: "Iškilo problema įrašant paprašė veikla: {{error}}"
9
10
  delete: Ištrinti
10
11
  invite_friends: "Pakviesti draugų"
11
12
  item_could_not_be_removed: "Punktas negali būti pašalinta iš paskutinių veiklos sąrašas."
@@ -26,3 +27,5 @@ lt:
26
27
  update_status_message: "Atnaujinkite savo statusą!"
27
28
  updating_status_message: "Atnaujinama savo statusą. Prašome palaukti."
28
29
  write_prompt: "Rašyti komentarą ..."
30
+ activity_templates:
31
+ status_update: "Statusas Atnaujinimai"
data/locales/lv.yml CHANGED
@@ -6,6 +6,7 @@ lv:
6
6
  adding_comment_message: "Ievietošanas komentāru ..."
7
7
  all_activities: "Visas darbības"
8
8
  clear: Skaidrs
9
+ create_error: "Radās problēma, pievienojot pieprasītā darbība: {{error}}"
9
10
  delete: Dzēst
10
11
  invite_friends: "Uzaicināt draugu"
11
12
  item_could_not_be_removed: "Postenis nevarēja izņemt no neseno darbību sarakstu."
@@ -26,3 +27,5 @@ lv:
26
27
  update_status_message: "atjauniniet savu statusu!"
27
28
  updating_status_message: "Atjaunināšana Jūsu statusu. Lūdzu, uzgaidiet."
28
29
  write_prompt: "Rakstīt komentāru ..."
30
+ activity_templates:
31
+ status_update: "Status Updates"
data/locales/mt.yml ADDED
@@ -0,0 +1,31 @@
1
+ ---
2
+ mt:
3
+ muck:
4
+ activities:
5
+ activity_feed_title: "Riċenti Attività"
6
+ adding_comment_message: "Żżid kumment ..."
7
+ all_activities: "Attivitajiet Kollha"
8
+ clear: Ċar
9
+ create_error: "Kien hemm problema mitluba jżidu l-attività: {{error}}"
10
+ delete: Ħassar
11
+ invite_friends: "Invite Friends"
12
+ item_could_not_be_removed: "Punt ma setgħetx titneħħa mill-attivitajiet reċenti lista."
13
+ item_created: "Added attività"
14
+ item_removed: "Punt b&#39;suċċess jitneħħa mill-attivitajiet reċenti lista."
15
+ joined_status: "{{name}} joined {{application_name}}"
16
+ make_comment: Kumment
17
+ paging_newer: "«Iktar Godda"
18
+ paging_older: "Older »"
19
+ permission_denied: "Skużana, inti ma tistax tagħmel dan."
20
+ post: Aqsam
21
+ problem_with_status: "Kien hemm problema tiegħek jinbidlu status"
22
+ status_indicator: huwa
23
+ status_update_prompt: "X&#39;Ser tagħmel dritt issa?"
24
+ template_or_item_required: "Attività teħtieġ template jew oġġett li jintwerew b&#39;mod korrett"
25
+ time_ago: "{{time_in_words}} Ilu"
26
+ update_error: "Oops ... Kien hemm problema. {{errors}}"
27
+ update_status_message: "update tiegħek status!"
28
+ updating_status_message: "Aġġornament istat tiegħek. Jekk jogħġbok stenna."
29
+ write_prompt: "Write kumment ..."
30
+ activity_templates:
31
+ status_update: "Status Aġġornamenti"
data/locales/nl.yml CHANGED
@@ -6,6 +6,7 @@ nl:
6
6
  adding_comment_message: "Het toevoegen van commentaar ..."
7
7
  all_activities: "Alle activiteiten"
8
8
  clear: Helder
9
+ create_error: "Er een probleem was het toevoegen van de gevraagde activiteit: {{error}}"
9
10
  delete: Wissen
10
11
  invite_friends: "Vrienden uitnodigen"
11
12
  item_could_not_be_removed: "Post kan niet worden verwijderd uit de recente activiteiten lijst."
@@ -26,3 +27,5 @@ nl:
26
27
  update_status_message: "update your status!"
27
28
  updating_status_message: "Updaten van uw status. Please wait."
28
29
  write_prompt: "Schrijf een opmerking ..."
30
+ activity_templates:
31
+ status_update: "Status Updates"