Avoid using pluralize on moderation pages (#12589)
Pluralize function from Rails framework does not work with other languages than English, moreover it does not even work properly with English [1]. Not that the latest applies to this context, it's just a sign that we best to avoid this function, especially when there are more reliable ways. This commit changes how reports pages generated in order to avoid usage of pluralize function, replacing it with default translation function, called with given counter. On top of that, we have to make strings pluralizable, so have to change locale files. [1]: https://medium.com/@anna7/b3927de2ca8e#6a60main
parent
1c10283217
commit
d5b7a4b116
|
@ -28,7 +28,7 @@
|
||||||
.report-card__profile
|
.report-card__profile
|
||||||
= account_link_to target_account, '', size: 36, path: admin_account_path(target_account.id)
|
= account_link_to target_account, '', size: 36, path: admin_account_path(target_account.id)
|
||||||
.report-card__profile__stats
|
.report-card__profile__stats
|
||||||
= link_to pluralize(target_account.targeted_moderation_notes.count, t('admin.reports.account.note')), admin_account_path(target_account.id)
|
= link_to t('admin.reports.account.notes', count: target_account.targeted_moderation_notes.count), admin_account_path(target_account.id)
|
||||||
%br/
|
%br/
|
||||||
- if target_account.suspended?
|
- if target_account.suspended?
|
||||||
%span.red= t('admin.accounts.suspended')
|
%span.red= t('admin.accounts.suspended')
|
||||||
|
|
|
@ -25,16 +25,16 @@
|
||||||
%tr
|
%tr
|
||||||
%th= t('admin.reports.reported_account')
|
%th= t('admin.reports.reported_account')
|
||||||
%td= admin_account_link_to @report.target_account
|
%td= admin_account_link_to @report.target_account
|
||||||
%td= table_link_to 'flag', pluralize(@report.target_account.targeted_reports.count, t('admin.reports.account.report')), admin_reports_path(target_account_id: @report.target_account.id)
|
%td= table_link_to 'flag', t('admin.reports.account.reports', count: @report.target_account.targeted_reports.count), admin_reports_path(target_account_id: @report.target_account.id)
|
||||||
%td= table_link_to 'file', pluralize(@report.target_account.targeted_moderation_notes.count, t('admin.reports.account.note')), admin_reports_path(target_account_id: @report.target_account.id)
|
%td= table_link_to 'file', t('admin.reports.account.notes', count: @report.target_account.targeted_moderation_notes.count), admin_reports_path(target_account_id: @report.target_account.id)
|
||||||
%tr
|
%tr
|
||||||
%th= t('admin.reports.reported_by')
|
%th= t('admin.reports.reported_by')
|
||||||
- if @report.account.instance_actor?
|
- if @report.account.instance_actor?
|
||||||
%td{ colspan: 3 }= site_hostname
|
%td{ colspan: 3 }= site_hostname
|
||||||
- elsif @report.account.local?
|
- elsif @report.account.local?
|
||||||
%td= admin_account_link_to @report.account
|
%td= admin_account_link_to @report.account
|
||||||
%td= table_link_to 'flag', pluralize(@report.account.targeted_reports.count, t('admin.reports.account.report')), admin_reports_path(target_account_id: @report.account.id)
|
%td= table_link_to 'flag', t('admin.reports.account.reports', count: @report.account.targeted_reports.count), admin_reports_path(target_account_id: @report.account.id)
|
||||||
%td= table_link_to 'file', pluralize(@report.account.targeted_moderation_notes.count, t('admin.reports.account.note')), admin_reports_path(target_account_id: @report.account.id)
|
%td= table_link_to 'file', t('admin.reports.account.notes', count: @report.account.targeted_moderation_notes.count), admin_reports_path(target_account_id: @report.account.id)
|
||||||
- else
|
- else
|
||||||
%td{ colspan: 3 }= @report.account.domain
|
%td{ colspan: 3 }= @report.account.domain
|
||||||
%tr
|
%tr
|
||||||
|
|
|
@ -399,9 +399,6 @@ ar:
|
||||||
created_msg: تم إنشاء ملاحظة الشكوى بنجاح!
|
created_msg: تم إنشاء ملاحظة الشكوى بنجاح!
|
||||||
destroyed_msg: تم حذف ملاحظة الشكوى بنجاح!
|
destroyed_msg: تم حذف ملاحظة الشكوى بنجاح!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: ملحوظة
|
|
||||||
report: تقرير
|
|
||||||
action_taken_by: تم اتخاذ الإجراء مِن طرف
|
action_taken_by: تم اتخاذ الإجراء مِن طرف
|
||||||
are_you_sure: هل أنت متأكد ؟
|
are_you_sure: هل أنت متأكد ؟
|
||||||
assign_to_self: عين لي
|
assign_to_self: عين لي
|
||||||
|
|
|
@ -398,9 +398,6 @@ ca:
|
||||||
created_msg: La nota del informe s'ha creat correctament!
|
created_msg: La nota del informe s'ha creat correctament!
|
||||||
destroyed_msg: La nota del informe s'ha esborrat correctament!
|
destroyed_msg: La nota del informe s'ha esborrat correctament!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nota
|
|
||||||
report: informe
|
|
||||||
action_taken_by: Mesures adoptades per
|
action_taken_by: Mesures adoptades per
|
||||||
are_you_sure: N'estàs segur?
|
are_you_sure: N'estàs segur?
|
||||||
assign_to_self: Assignar-me
|
assign_to_self: Assignar-me
|
||||||
|
|
|
@ -398,9 +398,6 @@ co:
|
||||||
created_msg: Nota di signalamentu creata!
|
created_msg: Nota di signalamentu creata!
|
||||||
destroyed_msg: Nota di signalamentu sguassata!
|
destroyed_msg: Nota di signalamentu sguassata!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nota
|
|
||||||
report: palisà
|
|
||||||
action_taken_by: Intervenzione di
|
action_taken_by: Intervenzione di
|
||||||
are_you_sure: Site sicuru·a?
|
are_you_sure: Site sicuru·a?
|
||||||
assign_to_self: Assignallu à mè
|
assign_to_self: Assignallu à mè
|
||||||
|
|
|
@ -410,9 +410,6 @@ cs:
|
||||||
created_msg: Poznámka o nahlášení úspěšně vytvořena!
|
created_msg: Poznámka o nahlášení úspěšně vytvořena!
|
||||||
destroyed_msg: Poznámka o nahlášení úspěšně smazána!
|
destroyed_msg: Poznámka o nahlášení úspěšně smazána!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: poznámka
|
|
||||||
report: nahlášení
|
|
||||||
action_taken_by: Akci vykonal/a
|
action_taken_by: Akci vykonal/a
|
||||||
are_you_sure: Jste si jistý/á?
|
are_you_sure: Jste si jistý/á?
|
||||||
assign_to_self: Přidělit ke mně
|
assign_to_self: Přidělit ke mně
|
||||||
|
|
|
@ -419,9 +419,6 @@ cy:
|
||||||
created_msg: Llwyddwyd i greu nodyn adroddiad!
|
created_msg: Llwyddwyd i greu nodyn adroddiad!
|
||||||
destroyed_msg: Llwyddwyd i ddileu nodyn adroddiad!
|
destroyed_msg: Llwyddwyd i ddileu nodyn adroddiad!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nodyn
|
|
||||||
report: adroddiad
|
|
||||||
action_taken_by: Gwnaethpwyd hyn gan
|
action_taken_by: Gwnaethpwyd hyn gan
|
||||||
are_you_sure: Ydych chi'n sicr?
|
are_you_sure: Ydych chi'n sicr?
|
||||||
assign_to_self: Aseinio i mi
|
assign_to_self: Aseinio i mi
|
||||||
|
|
|
@ -333,9 +333,6 @@ da:
|
||||||
created_msg: Anmeldelse note blev oprettet!
|
created_msg: Anmeldelse note blev oprettet!
|
||||||
destroyed_msg: Anmeldelse note blev slettet!
|
destroyed_msg: Anmeldelse note blev slettet!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: notat
|
|
||||||
report: anmeld
|
|
||||||
action_taken_by: Handling udført af
|
action_taken_by: Handling udført af
|
||||||
are_you_sure: Er du sikker?
|
are_you_sure: Er du sikker?
|
||||||
assign_to_self: Tildel til mig
|
assign_to_self: Tildel til mig
|
||||||
|
|
|
@ -396,9 +396,6 @@ de:
|
||||||
created_msg: Meldungs-Kommentar erfolgreich erstellt!
|
created_msg: Meldungs-Kommentar erfolgreich erstellt!
|
||||||
destroyed_msg: Meldungs-Kommentar erfolgreich gelöscht!
|
destroyed_msg: Meldungs-Kommentar erfolgreich gelöscht!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: Notiz
|
|
||||||
report: Meldung
|
|
||||||
action_taken_by: Maßnahme ergriffen durch
|
action_taken_by: Maßnahme ergriffen durch
|
||||||
are_you_sure: Bist du dir sicher?
|
are_you_sure: Bist du dir sicher?
|
||||||
assign_to_self: Mir zuweisen
|
assign_to_self: Mir zuweisen
|
||||||
|
|
|
@ -398,9 +398,6 @@ el:
|
||||||
created_msg: Επιτυχής δημιουργία σημείωσης καταγγελίας!
|
created_msg: Επιτυχής δημιουργία σημείωσης καταγγελίας!
|
||||||
destroyed_msg: Επιτυχής διαγραφή σημείωσης καταγγελίας!
|
destroyed_msg: Επιτυχής διαγραφή σημείωσης καταγγελίας!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: σημείωση
|
|
||||||
report: καταγγελία
|
|
||||||
action_taken_by: Ενέργεια από τον/την
|
action_taken_by: Ενέργεια από τον/την
|
||||||
are_you_sure: Σίγουρα;
|
are_you_sure: Σίγουρα;
|
||||||
assign_to_self: Ανάθεση σε μένα
|
assign_to_self: Ανάθεση σε μένα
|
||||||
|
|
|
@ -400,8 +400,12 @@ en:
|
||||||
destroyed_msg: Report note successfully deleted!
|
destroyed_msg: Report note successfully deleted!
|
||||||
reports:
|
reports:
|
||||||
account:
|
account:
|
||||||
note: note
|
notes:
|
||||||
report: report
|
one: "%{count} note"
|
||||||
|
other: "%{count} notes"
|
||||||
|
reports:
|
||||||
|
one: "%{count} report"
|
||||||
|
other: "%{count} reports"
|
||||||
action_taken_by: Action taken by
|
action_taken_by: Action taken by
|
||||||
are_you_sure: Are you sure?
|
are_you_sure: Are you sure?
|
||||||
assign_to_self: Assign to me
|
assign_to_self: Assign to me
|
||||||
|
|
|
@ -348,9 +348,6 @@ en_GB:
|
||||||
created_msg: Report note successfully created!
|
created_msg: Report note successfully created!
|
||||||
destroyed_msg: Report note successfully deleted!
|
destroyed_msg: Report note successfully deleted!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: note
|
|
||||||
report: report
|
|
||||||
action_taken_by: Action taken by
|
action_taken_by: Action taken by
|
||||||
are_you_sure: Are you sure?
|
are_you_sure: Are you sure?
|
||||||
assign_to_self: Assign to me
|
assign_to_self: Assign to me
|
||||||
|
|
|
@ -380,9 +380,6 @@ eo:
|
||||||
created_msg: Signala noto sukcese kreita!
|
created_msg: Signala noto sukcese kreita!
|
||||||
destroyed_msg: Signala noto sukcese forigita!
|
destroyed_msg: Signala noto sukcese forigita!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: noto
|
|
||||||
report: signalo
|
|
||||||
action_taken_by: Ago farita de
|
action_taken_by: Ago farita de
|
||||||
are_you_sure: Ĉu vi certas?
|
are_you_sure: Ĉu vi certas?
|
||||||
assign_to_self: Asigni al mi
|
assign_to_self: Asigni al mi
|
||||||
|
|
|
@ -395,9 +395,6 @@ es-AR:
|
||||||
created_msg: "¡La nota de denuncia fue creada exitosamente!"
|
created_msg: "¡La nota de denuncia fue creada exitosamente!"
|
||||||
destroyed_msg: "¡La nota de denuncia fue eliminada exitosamente!"
|
destroyed_msg: "¡La nota de denuncia fue eliminada exitosamente!"
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nota
|
|
||||||
report: denuncia
|
|
||||||
action_taken_by: Acción tomada por
|
action_taken_by: Acción tomada por
|
||||||
are_you_sure: "¿Estás seguro?"
|
are_you_sure: "¿Estás seguro?"
|
||||||
assign_to_self: Asignármela a mí
|
assign_to_self: Asignármela a mí
|
||||||
|
|
|
@ -398,9 +398,6 @@ es:
|
||||||
created_msg: "¡El registro de la denuncia se ha creado correctamente!"
|
created_msg: "¡El registro de la denuncia se ha creado correctamente!"
|
||||||
destroyed_msg: "¡El registro de la denuncia se ha borrado correctamente!"
|
destroyed_msg: "¡El registro de la denuncia se ha borrado correctamente!"
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nota
|
|
||||||
report: denuncia
|
|
||||||
action_taken_by: Acción tomada por
|
action_taken_by: Acción tomada por
|
||||||
are_you_sure: "¿Estás seguro?"
|
are_you_sure: "¿Estás seguro?"
|
||||||
assign_to_self: Asignármela a mí
|
assign_to_self: Asignármela a mí
|
||||||
|
|
|
@ -401,9 +401,6 @@ et:
|
||||||
created_msg: Teade edukalt koostatud!
|
created_msg: Teade edukalt koostatud!
|
||||||
destroyed_msg: Teade edukalt kustutatud!
|
destroyed_msg: Teade edukalt kustutatud!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: märkus
|
|
||||||
report: teavita
|
|
||||||
action_taken_by: Meetmeid kasutanud
|
action_taken_by: Meetmeid kasutanud
|
||||||
are_you_sure: Olete kindel?
|
are_you_sure: Olete kindel?
|
||||||
assign_to_self: Määra mulle
|
assign_to_self: Määra mulle
|
||||||
|
|
|
@ -398,9 +398,6 @@ eu:
|
||||||
created_msg: Salaketa oharra ongi sortu da!
|
created_msg: Salaketa oharra ongi sortu da!
|
||||||
destroyed_msg: Salaketa oharra ongi ezabatu da!
|
destroyed_msg: Salaketa oharra ongi ezabatu da!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: oharra
|
|
||||||
report: salaketa
|
|
||||||
action_taken_by: Neurrien hartzailea
|
action_taken_by: Neurrien hartzailea
|
||||||
are_you_sure: Ziur zaude?
|
are_you_sure: Ziur zaude?
|
||||||
assign_to_self: Esleitu niri
|
assign_to_self: Esleitu niri
|
||||||
|
|
|
@ -396,9 +396,6 @@ fa:
|
||||||
created_msg: یادداشت گزارش با موفقیت ساخته شد!
|
created_msg: یادداشت گزارش با موفقیت ساخته شد!
|
||||||
destroyed_msg: یادداشت گزارش با موفقیت حذف شد!
|
destroyed_msg: یادداشت گزارش با موفقیت حذف شد!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: یادداشت
|
|
||||||
report: گزارش
|
|
||||||
action_taken_by: انجامدهنده
|
action_taken_by: انجامدهنده
|
||||||
are_you_sure: آیا مطمئن هستید؟
|
are_you_sure: آیا مطمئن هستید؟
|
||||||
assign_to_self: به عهدهٔ من بگذار
|
assign_to_self: به عهدهٔ من بگذار
|
||||||
|
|
|
@ -270,9 +270,6 @@ fi:
|
||||||
created_msg: Muistiinpano onnistuneesti lisätty raporttiin!
|
created_msg: Muistiinpano onnistuneesti lisätty raporttiin!
|
||||||
destroyed_msg: Muistiinpano onnistuneesti poistettu raportista!
|
destroyed_msg: Muistiinpano onnistuneesti poistettu raportista!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: muistiinpano
|
|
||||||
report: raportti
|
|
||||||
action_taken_by: Toimenpiteen tekijä
|
action_taken_by: Toimenpiteen tekijä
|
||||||
are_you_sure: Oletko varma?
|
are_you_sure: Oletko varma?
|
||||||
assign_to_self: Ota tehtäväksi
|
assign_to_self: Ota tehtäväksi
|
||||||
|
|
|
@ -398,9 +398,6 @@ fr:
|
||||||
created_msg: Note de signalement créée avec succès !
|
created_msg: Note de signalement créée avec succès !
|
||||||
destroyed_msg: Note de signalement effacée avec succès !
|
destroyed_msg: Note de signalement effacée avec succès !
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: note
|
|
||||||
report: signalement(s)
|
|
||||||
action_taken_by: Intervention de
|
action_taken_by: Intervention de
|
||||||
are_you_sure: Êtes vous certain⋅e ?
|
are_you_sure: Êtes vous certain⋅e ?
|
||||||
assign_to_self: Me l’assigner
|
assign_to_self: Me l’assigner
|
||||||
|
|
|
@ -396,9 +396,6 @@ gl:
|
||||||
created_msg: Creouse correctamente a nota do informe!
|
created_msg: Creouse correctamente a nota do informe!
|
||||||
destroyed_msg: Nota do informe eliminouse con éxito!
|
destroyed_msg: Nota do informe eliminouse con éxito!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nota
|
|
||||||
report: informe
|
|
||||||
action_taken_by: Acción tomada por
|
action_taken_by: Acción tomada por
|
||||||
are_you_sure: Está segura?
|
are_you_sure: Está segura?
|
||||||
assign_to_self: Asignarmo
|
assign_to_self: Asignarmo
|
||||||
|
|
|
@ -400,9 +400,6 @@ hu:
|
||||||
created_msg: Bejelentési feljegyzés létrehozva!
|
created_msg: Bejelentési feljegyzés létrehozva!
|
||||||
destroyed_msg: Bejelentési feljegyzés törölve!
|
destroyed_msg: Bejelentési feljegyzés törölve!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: feljegyzés
|
|
||||||
report: bejelentés
|
|
||||||
action_taken_by: 'Kezelte:'
|
action_taken_by: 'Kezelte:'
|
||||||
are_you_sure: Biztos vagy benne?
|
are_you_sure: Biztos vagy benne?
|
||||||
assign_to_self: Magamhoz rendelés
|
assign_to_self: Magamhoz rendelés
|
||||||
|
|
|
@ -391,9 +391,6 @@ id:
|
||||||
created_msg: Catatan laporan berhasil dibuat!
|
created_msg: Catatan laporan berhasil dibuat!
|
||||||
destroyed_msg: Catatan laporan berhasil dihapus!
|
destroyed_msg: Catatan laporan berhasil dihapus!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: catatan
|
|
||||||
report: lapor
|
|
||||||
action_taken_by: Aksi dilakukan oleh
|
action_taken_by: Aksi dilakukan oleh
|
||||||
are_you_sure: Apakah Anda yakin?
|
are_you_sure: Apakah Anda yakin?
|
||||||
assign_to_self: Tugaskan kpd saya
|
assign_to_self: Tugaskan kpd saya
|
||||||
|
|
|
@ -394,9 +394,6 @@ it:
|
||||||
created_msg: Nota rapporto creata!
|
created_msg: Nota rapporto creata!
|
||||||
destroyed_msg: Nota rapporto cancellata!
|
destroyed_msg: Nota rapporto cancellata!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: note
|
|
||||||
report: rapporto
|
|
||||||
action_taken_by: Azione intrapresa da
|
action_taken_by: Azione intrapresa da
|
||||||
are_you_sure: Sei sicuro?
|
are_you_sure: Sei sicuro?
|
||||||
assign_to_self: Assegna a me
|
assign_to_self: Assegna a me
|
||||||
|
|
|
@ -392,9 +392,6 @@ ja:
|
||||||
created_msg: 通報メモを書き込みました!
|
created_msg: 通報メモを書き込みました!
|
||||||
destroyed_msg: 通報メモを削除しました!
|
destroyed_msg: 通報メモを削除しました!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: メモ
|
|
||||||
report: 通報
|
|
||||||
action_taken_by: 通報処理者
|
action_taken_by: 通報処理者
|
||||||
are_you_sure: 本当に実行しますか?
|
are_you_sure: 本当に実行しますか?
|
||||||
assign_to_self: 担当になる
|
assign_to_self: 担当になる
|
||||||
|
|
|
@ -267,9 +267,6 @@ ka:
|
||||||
created_msg: რეპორტის ჩანაწერი წარმატებით შეიქმნა!
|
created_msg: რეპორტის ჩანაწერი წარმატებით შეიქმნა!
|
||||||
destroyed_msg: რეპორტის ჩანაწერი წარმატებით გაუქმდა!
|
destroyed_msg: რეპორტის ჩანაწერი წარმატებით გაუქმდა!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: ჩანაწერი
|
|
||||||
report: რეპორტი
|
|
||||||
action_taken_by: მოქმედება შეასრულა
|
action_taken_by: მოქმედება შეასრულა
|
||||||
are_you_sure: დარწმუნებული ხარ?
|
are_you_sure: დარწმუნებული ხარ?
|
||||||
assign_to_self: დანიშნე ჩემზე
|
assign_to_self: დანიშნე ჩემზე
|
||||||
|
|
|
@ -398,9 +398,6 @@ kk:
|
||||||
created_msg: Шағым жазбасы сәтті құрылды!
|
created_msg: Шағым жазбасы сәтті құрылды!
|
||||||
destroyed_msg: Шағым жазбасы сәтті өшірілді!
|
destroyed_msg: Шағым жазбасы сәтті өшірілді!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: жазба
|
|
||||||
report: шағым
|
|
||||||
action_taken_by: Белсенділік жасаған
|
action_taken_by: Белсенділік жасаған
|
||||||
are_you_sure: Шынымен бе?
|
are_you_sure: Шынымен бе?
|
||||||
assign_to_self: Мені тағайындау
|
assign_to_self: Мені тағайындау
|
||||||
|
|
|
@ -392,9 +392,6 @@ ko:
|
||||||
created_msg: 리포트 노트가 성공적으로 작성되었습니다!
|
created_msg: 리포트 노트가 성공적으로 작성되었습니다!
|
||||||
destroyed_msg: 리포트 노트가 성공적으로 삭제되었습니다!
|
destroyed_msg: 리포트 노트가 성공적으로 삭제되었습니다!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: 노트
|
|
||||||
report: 리포트
|
|
||||||
action_taken_by: 신고 처리자
|
action_taken_by: 신고 처리자
|
||||||
are_you_sure: 정말로 실행하시겠습니까?
|
are_you_sure: 정말로 실행하시겠습니까?
|
||||||
assign_to_self: 나에게 할당하기
|
assign_to_self: 나에게 할당하기
|
||||||
|
|
|
@ -309,9 +309,6 @@ lt:
|
||||||
created_msg: Skundo žinutė sekmingai sukurta!
|
created_msg: Skundo žinutė sekmingai sukurta!
|
||||||
destroyed_msg: Skundo žinutė sekmingai ištrinta!
|
destroyed_msg: Skundo žinutė sekmingai ištrinta!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: raštelis
|
|
||||||
report: skundas
|
|
||||||
action_taken_by: Veiksmo ėmėsi
|
action_taken_by: Veiksmo ėmėsi
|
||||||
are_you_sure: Ar tu įsitikinęs?
|
are_you_sure: Ar tu įsitikinęs?
|
||||||
assign_to_self: Paskirti man
|
assign_to_self: Paskirti man
|
||||||
|
|
|
@ -276,9 +276,6 @@ ms:
|
||||||
created_msg: Nota laporan berjaya dicipta!
|
created_msg: Nota laporan berjaya dicipta!
|
||||||
destroyed_msg: Nota laporan berjaya dipadam!
|
destroyed_msg: Nota laporan berjaya dipadam!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nota
|
|
||||||
report: laporan
|
|
||||||
action_taken_by: Tindakan oleh
|
action_taken_by: Tindakan oleh
|
||||||
are_you_sure: Anda pasti?
|
are_you_sure: Anda pasti?
|
||||||
assign_to_self: Berikan pada saya
|
assign_to_self: Berikan pada saya
|
||||||
|
|
|
@ -396,9 +396,6 @@ nl:
|
||||||
created_msg: Opmerking bij rapportage succesvol aangemaakt!
|
created_msg: Opmerking bij rapportage succesvol aangemaakt!
|
||||||
destroyed_msg: Opmerking bij rapportage succesvol verwijderd!
|
destroyed_msg: Opmerking bij rapportage succesvol verwijderd!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: opmerking
|
|
||||||
report: rapportage
|
|
||||||
action_taken_by: Actie uitgevoerd door
|
action_taken_by: Actie uitgevoerd door
|
||||||
are_you_sure: Weet je het zeker?
|
are_you_sure: Weet je het zeker?
|
||||||
assign_to_self: Aan mij toewijzen
|
assign_to_self: Aan mij toewijzen
|
||||||
|
|
|
@ -383,9 +383,6 @@ oc:
|
||||||
created_msg: Nòta de moderacion corrèctament creada !
|
created_msg: Nòta de moderacion corrèctament creada !
|
||||||
destroyed_msg: Nòta de moderacion corrèctament suprimida !
|
destroyed_msg: Nòta de moderacion corrèctament suprimida !
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nòta
|
|
||||||
report: rapòrt
|
|
||||||
action_taken_by: Mesura menada per
|
action_taken_by: Mesura menada per
|
||||||
are_you_sure: Es segur ?
|
are_you_sure: Es segur ?
|
||||||
assign_to_self: Me l’assignar
|
assign_to_self: Me l’assignar
|
||||||
|
|
|
@ -403,9 +403,6 @@ pl:
|
||||||
created_msg: Pomyslnie utworzono notatkę moderacyjną.
|
created_msg: Pomyslnie utworzono notatkę moderacyjną.
|
||||||
destroyed_msg: Pomyślnie usunięto notatkę moderacyjną.
|
destroyed_msg: Pomyślnie usunięto notatkę moderacyjną.
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: notatka
|
|
||||||
report: zgłoszenie
|
|
||||||
action_taken_by: Działanie podjęte przez
|
action_taken_by: Działanie podjęte przez
|
||||||
are_you_sure: Czy na pewno?
|
are_you_sure: Czy na pewno?
|
||||||
assign_to_self: Przypisz do siebie
|
assign_to_self: Przypisz do siebie
|
||||||
|
|
|
@ -368,9 +368,6 @@ pt-BR:
|
||||||
created_msg: Nota de denúncia criada com sucesso!
|
created_msg: Nota de denúncia criada com sucesso!
|
||||||
destroyed_msg: Nota de denúncia excluída com sucesso!
|
destroyed_msg: Nota de denúncia excluída com sucesso!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nota
|
|
||||||
report: denúncia
|
|
||||||
action_taken_by: Ação realizada por
|
action_taken_by: Ação realizada por
|
||||||
are_you_sure: Você tem certeza?
|
are_you_sure: Você tem certeza?
|
||||||
assign_to_self: Designar para mim
|
assign_to_self: Designar para mim
|
||||||
|
|
|
@ -346,9 +346,6 @@ pt-PT:
|
||||||
created_msg: Relatório criado com sucesso!
|
created_msg: Relatório criado com sucesso!
|
||||||
destroyed_msg: Relatório apagado com sucesso!
|
destroyed_msg: Relatório apagado com sucesso!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: nota
|
|
||||||
report: relatório
|
|
||||||
action_taken_by: Ação tomada por
|
action_taken_by: Ação tomada por
|
||||||
are_you_sure: Tens a certeza?
|
are_you_sure: Tens a certeza?
|
||||||
assign_to_self: Atribuí-me a mim
|
assign_to_self: Atribuí-me a mim
|
||||||
|
|
|
@ -410,9 +410,6 @@ ru:
|
||||||
created_msg: Примечание жалобы создано!
|
created_msg: Примечание жалобы создано!
|
||||||
destroyed_msg: Примечание жалобы удалено!
|
destroyed_msg: Примечание жалобы удалено!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: заметок
|
|
||||||
report: жалоб
|
|
||||||
action_taken_by: 'Действие предпринято:'
|
action_taken_by: 'Действие предпринято:'
|
||||||
are_you_sure: Вы уверены?
|
are_you_sure: Вы уверены?
|
||||||
assign_to_self: Назначить себе
|
assign_to_self: Назначить себе
|
||||||
|
|
|
@ -403,9 +403,6 @@ sk:
|
||||||
created_msg: Poznámka o nahlásení úspešne vytvorená!
|
created_msg: Poznámka o nahlásení úspešne vytvorená!
|
||||||
destroyed_msg: Poznámka o nahlásení úspešne vymazaná!
|
destroyed_msg: Poznámka o nahlásení úspešne vymazaná!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: poznámka
|
|
||||||
report: nahlás
|
|
||||||
action_taken_by: Zákrok vykonal/a
|
action_taken_by: Zákrok vykonal/a
|
||||||
are_you_sure: Si si istý/á?
|
are_you_sure: Si si istý/á?
|
||||||
assign_to_self: Priraď sebe
|
assign_to_self: Priraď sebe
|
||||||
|
|
|
@ -375,9 +375,6 @@ sl:
|
||||||
created_msg: Opomba o prijavi je uspešno ustvarjena!
|
created_msg: Opomba o prijavi je uspešno ustvarjena!
|
||||||
destroyed_msg: Opomba o prijavi je uspešno izbrisana!
|
destroyed_msg: Opomba o prijavi je uspešno izbrisana!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: opomba
|
|
||||||
report: prijava
|
|
||||||
action_taken_by: Dejanje, ki ga je sprejel
|
action_taken_by: Dejanje, ki ga je sprejel
|
||||||
are_you_sure: Ali ste prepričani?
|
are_you_sure: Ali ste prepričani?
|
||||||
assign_to_self: Dodeli meni
|
assign_to_self: Dodeli meni
|
||||||
|
|
|
@ -315,9 +315,6 @@ sq:
|
||||||
created_msg: Shënimi i raportimit u krijua me sukses!
|
created_msg: Shënimi i raportimit u krijua me sukses!
|
||||||
destroyed_msg: Shënimi i raportimit u fshi me sukses!
|
destroyed_msg: Shënimi i raportimit u fshi me sukses!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: shënim
|
|
||||||
report: raportojeni
|
|
||||||
action_taken_by: Veprimi i ndërmarrë nga
|
action_taken_by: Veprimi i ndërmarrë nga
|
||||||
are_you_sure: A jeni i sigurt?
|
are_you_sure: A jeni i sigurt?
|
||||||
assign_to_self: Caktojani vetes
|
assign_to_self: Caktojani vetes
|
||||||
|
|
|
@ -330,9 +330,6 @@ sr:
|
||||||
created_msg: Белешка пријаве успешно направљена!
|
created_msg: Белешка пријаве успешно направљена!
|
||||||
destroyed_msg: Белешка пријаве успешно избрисана!
|
destroyed_msg: Белешка пријаве успешно избрисана!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: белешка
|
|
||||||
report: извештај
|
|
||||||
action_taken_by: Акцију извео
|
action_taken_by: Акцију извео
|
||||||
are_you_sure: Да ли сте сигурни?
|
are_you_sure: Да ли сте сигурни?
|
||||||
assign_to_self: Додели мени
|
assign_to_self: Додели мени
|
||||||
|
|
|
@ -318,9 +318,6 @@ sv:
|
||||||
created_msg: Anmälningsanteckning har skapats!
|
created_msg: Anmälningsanteckning har skapats!
|
||||||
destroyed_msg: Anmälningsanteckning har raderats!
|
destroyed_msg: Anmälningsanteckning har raderats!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: anteckning
|
|
||||||
report: anmälan
|
|
||||||
action_taken_by: Åtgärder vidtagna av
|
action_taken_by: Åtgärder vidtagna av
|
||||||
are_you_sure: Är du säker?
|
are_you_sure: Är du säker?
|
||||||
assign_to_self: Tilldela till mig
|
assign_to_self: Tilldela till mig
|
||||||
|
|
|
@ -310,9 +310,6 @@ th:
|
||||||
created_msg: สร้างหมายเหตุรายงานสำเร็จ!
|
created_msg: สร้างหมายเหตุรายงานสำเร็จ!
|
||||||
destroyed_msg: ลบหมายเหตุรายงานสำเร็จ!
|
destroyed_msg: ลบหมายเหตุรายงานสำเร็จ!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: หมายเหตุ
|
|
||||||
report: รายงาน
|
|
||||||
are_you_sure: คุณแน่ใจหรือไม่?
|
are_you_sure: คุณแน่ใจหรือไม่?
|
||||||
assign_to_self: มอบหมายให้ฉัน
|
assign_to_self: มอบหมายให้ฉัน
|
||||||
assigned: ผู้ควบคุมที่ได้รับมอบหมาย
|
assigned: ผู้ควบคุมที่ได้รับมอบหมาย
|
||||||
|
|
|
@ -398,9 +398,6 @@ tr:
|
||||||
created_msg: Şikayet notu başarıyla oluşturuldu!
|
created_msg: Şikayet notu başarıyla oluşturuldu!
|
||||||
destroyed_msg: Şikayet notu başarıyla silindi!
|
destroyed_msg: Şikayet notu başarıyla silindi!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: not
|
|
||||||
report: şikayet
|
|
||||||
action_taken_by: tarafından gerçekleştirilen eylem
|
action_taken_by: tarafından gerçekleştirilen eylem
|
||||||
are_you_sure: Emin misiniz?
|
are_you_sure: Emin misiniz?
|
||||||
assign_to_self: Bana ata
|
assign_to_self: Bana ata
|
||||||
|
|
|
@ -400,9 +400,6 @@ uk:
|
||||||
created_msg: Скарга успішно створена!
|
created_msg: Скарга успішно створена!
|
||||||
destroyed_msg: Скарга успішно видалена!
|
destroyed_msg: Скарга успішно видалена!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: нотатка
|
|
||||||
report: скарга
|
|
||||||
action_taken_by: Дія виконана
|
action_taken_by: Дія виконана
|
||||||
are_you_sure: Ви впевнені?
|
are_you_sure: Ви впевнені?
|
||||||
assign_to_self: Призначити мені
|
assign_to_self: Призначити мені
|
||||||
|
|
|
@ -384,9 +384,6 @@ zh-CN:
|
||||||
created_msg: 举报记录建立成功!
|
created_msg: 举报记录建立成功!
|
||||||
destroyed_msg: 举报记录删除成功!
|
destroyed_msg: 举报记录删除成功!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: 条记录
|
|
||||||
report: 条举报
|
|
||||||
action_taken_by: 操作执行者
|
action_taken_by: 操作执行者
|
||||||
are_you_sure: 你确定吗?
|
are_you_sure: 你确定吗?
|
||||||
assign_to_self: 接管
|
assign_to_self: 接管
|
||||||
|
|
|
@ -233,9 +233,6 @@ zh-HK:
|
||||||
created_msg: 舉報筆記已建立。
|
created_msg: 舉報筆記已建立。
|
||||||
destroyed_msg: 舉報筆記已刪除。
|
destroyed_msg: 舉報筆記已刪除。
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: 筆記
|
|
||||||
report: 舉報
|
|
||||||
action_taken_by: 操作執行者
|
action_taken_by: 操作執行者
|
||||||
are_you_sure: 你確認嗎?
|
are_you_sure: 你確認嗎?
|
||||||
assign_to_self: 指派給自己
|
assign_to_self: 指派給自己
|
||||||
|
|
|
@ -323,9 +323,6 @@ zh-TW:
|
||||||
created_msg: 檢舉記錄建立成功!
|
created_msg: 檢舉記錄建立成功!
|
||||||
destroyed_msg: 檢舉記錄刪除成功!
|
destroyed_msg: 檢舉記錄刪除成功!
|
||||||
reports:
|
reports:
|
||||||
account:
|
|
||||||
note: 條記錄
|
|
||||||
report: 條檢舉
|
|
||||||
action_taken_by: 操作執行者
|
action_taken_by: 操作執行者
|
||||||
are_you_sure: 你確定嗎?
|
are_you_sure: 你確定嗎?
|
||||||
assign_to_self: 指派給自己
|
assign_to_self: 指派給自己
|
||||||
|
|
Loading…
Reference in New Issue