Browse Source

feat(UI): Add UI For controlling group join and leave system messages setting

reviewable/pr6450/r5
Anthony Bilinski 4 years ago
parent
commit
069ab92fd0
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 6
      src/widget/form/settings/generalform.cpp
  2. 1
      src/widget/form/settings/generalform.h
  3. 8
      src/widget/form/settings/generalsettings.ui
  4. 4
      translations/ar.ts
  5. 4
      translations/be.ts
  6. 4
      translations/bg.ts
  7. 4
      translations/cs.ts
  8. 4
      translations/da.ts
  9. 4
      translations/de.ts
  10. 4
      translations/el.ts
  11. 4
      translations/eo.ts
  12. 4
      translations/es.ts
  13. 4
      translations/et.ts
  14. 4
      translations/fa.ts
  15. 4
      translations/fi.ts
  16. 4
      translations/fr.ts
  17. 4
      translations/gl.ts
  18. 4
      translations/he.ts
  19. 4
      translations/hr.ts
  20. 4
      translations/hu.ts
  21. 4
      translations/is.ts
  22. 4
      translations/it.ts
  23. 4
      translations/ja.ts
  24. 4
      translations/kn.ts
  25. 4
      translations/ko.ts
  26. 4
      translations/lt.ts
  27. 4
      translations/lv.ts
  28. 4
      translations/mk.ts
  29. 4
      translations/nl.ts
  30. 4
      translations/nl_BE.ts
  31. 4
      translations/no_nb.ts
  32. 4
      translations/pl.ts
  33. 4
      translations/pt.ts
  34. 4
      translations/pt_BR.ts
  35. 4
      translations/ro.ts
  36. 4
      translations/ru.ts
  37. 4
      translations/si.ts
  38. 4
      translations/sk.ts
  39. 4
      translations/sl.ts
  40. 4
      translations/sq.ts
  41. 4
      translations/sr.ts
  42. 4
      translations/sr_Latn.ts
  43. 4
      translations/sv.ts
  44. 4
      translations/sw.ts
  45. 4
      translations/ta.ts
  46. 4
      translations/tr.ts
  47. 4
      translations/ug.ts
  48. 4
      translations/uk.ts
  49. 4
      translations/ur.ts
  50. 4
      translations/zh_CN.ts
  51. 4
      translations/zh_TW.ts

6
src/widget/form/settings/generalform.cpp

@ -151,6 +151,7 @@ GeneralForm::GeneralForm(SettingsWidget* myParent) @@ -151,6 +151,7 @@ GeneralForm::GeneralForm(SettingsWidget* myParent)
bodyUI->closeToTray->setEnabled(showSystemTray);
bodyUI->statusChanges->setChecked(s.getStatusChangeNotificationEnabled());
bodyUI->groupJoinLeaveMessages->setChecked(s.getShowGroupJoinLeaveMessages());
bodyUI->autoAwaySpinBox->setValue(s.getAutoAwayTime());
bodyUI->autoSaveFilesDir->setText(s.getGlobalAutoAcceptDir());
@ -222,6 +223,11 @@ void GeneralForm::on_statusChanges_stateChanged() @@ -222,6 +223,11 @@ void GeneralForm::on_statusChanges_stateChanged()
Settings::getInstance().setStatusChangeNotificationEnabled(bodyUI->statusChanges->isChecked());
}
void GeneralForm::on_groupJoinLeaveMessages_stateChanged()
{
Settings::getInstance().setShowGroupJoinLeaveMessages(bodyUI->groupJoinLeaveMessages->isChecked());
}
void GeneralForm::on_autoAwaySpinBox_editingFinished()
{
int minutes = bodyUI->autoAwaySpinBox->value();

1
src/widget/form/settings/generalform.h

@ -51,6 +51,7 @@ private slots: @@ -51,6 +51,7 @@ private slots:
void on_autoAwaySpinBox_editingFinished();
void on_minimizeToTray_stateChanged();
void on_statusChanges_stateChanged();
void on_groupJoinLeaveMessages_stateChanged();
void on_autoacceptFiles_stateChanged();
void on_maxAutoAcceptSizeMB_editingFinished();
void on_autoSaveFilesDir_clicked();

8
src/widget/form/settings/generalsettings.ui

@ -222,6 +222,13 @@ instead of closing entirely.</string> @@ -222,6 +222,13 @@ instead of closing entirely.</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="groupJoinLeaveMessages">
<property name="text">
<string>Add a chat message when a user joins or leaves a group</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
@ -364,6 +371,7 @@ instead of closing entirely.</string> @@ -364,6 +371,7 @@ instead of closing entirely.</string>
<tabstop>minimizeToTray</tabstop>
<tabstop>closeToTray</tabstop>
<tabstop>statusChanges</tabstop>
<tabstop>groupJoinLeaveMessages</tabstop>
<tabstop>autoAwaySpinBox</tabstop>
<tabstop>autoSaveFilesDir</tabstop>
<tabstop>autoacceptFiles</tabstop>

4
translations/ar.ts vendored

@ -1146,6 +1146,10 @@ instead of closing entirely.</source> @@ -1146,6 +1146,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/be.ts vendored

@ -1150,6 +1150,10 @@ instead of closing entirely.</source> @@ -1150,6 +1150,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/bg.ts vendored

@ -1150,6 +1150,10 @@ instead of closing entirely.</source> @@ -1150,6 +1150,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation>Може да зададете това на база приятел с десен клик върху отделните приятели.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/cs.ts vendored

@ -1150,6 +1150,10 @@ nedojde k jeho úplnému ukončení.</translation> @@ -1150,6 +1150,10 @@ nedojde k jeho úplnému ukončení.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Toto můžete nastavit na jednoho přítele kliknutím pravým tlačítkem na jednotlivé přátele.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/da.ts vendored

@ -1145,6 +1145,10 @@ instead of closing entirely.</source> @@ -1145,6 +1145,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/de.ts vendored

@ -1156,6 +1156,10 @@ anstatt ganz zu schließen.</translation> @@ -1156,6 +1156,10 @@ anstatt ganz zu schließen.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Dies lässt sich für jeden Kontakt per Rechtsklick einstellen.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/el.ts vendored

@ -1142,6 +1142,10 @@ instead of closing entirely.</source> @@ -1142,6 +1142,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/eo.ts vendored

@ -1138,6 +1138,10 @@ instead of closing entirely.</source> @@ -1138,6 +1138,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/es.ts vendored

@ -1150,6 +1150,10 @@ en lugar de cerrarse por completo.</translation> @@ -1150,6 +1150,10 @@ en lugar de cerrarse por completo.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Se puede configurar de forma personalizada con clic derecho sobre el amigo.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/et.ts vendored

@ -1150,6 +1150,10 @@ jätab ta tööle teavituste alal.</translation> @@ -1150,6 +1150,10 @@ jätab ta tööle teavituste alal.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Seda saad muuta vastavalt igale sõbrale tehes sõbral paremklõpsu.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/fa.ts vendored

@ -1148,6 +1148,10 @@ instead of closing entirely.</source> @@ -1148,6 +1148,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/fi.ts vendored

@ -1149,6 +1149,10 @@ eikä sulkeudu kokonaan.</translation> @@ -1149,6 +1149,10 @@ eikä sulkeudu kokonaan.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Voit asettaa tämän kontaktikohtaisesti klikkaamalla kontaktia hiiren oikealla näppäimellä.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/fr.ts vendored

@ -1149,6 +1149,10 @@ au lieu de fermer entièrement.</translation> @@ -1149,6 +1149,10 @@ au lieu de fermer entièrement.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Vous pouvez définir ce paramètre pour chaque ami en faisant un clic droit sur chacun d&apos;eux.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/gl.ts vendored

@ -1149,6 +1149,10 @@ instead of closing entirely.</source> @@ -1149,6 +1149,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/he.ts vendored

@ -1145,6 +1145,10 @@ instead of closing entirely.</source> @@ -1145,6 +1145,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/hr.ts vendored

@ -1143,6 +1143,10 @@ instead of closing entirely.</source> @@ -1143,6 +1143,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/hu.ts vendored

@ -1141,6 +1141,10 @@ instead of closing entirely.</source> @@ -1141,6 +1141,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/is.ts vendored

@ -1145,6 +1145,10 @@ instead of closing entirely.</source> @@ -1145,6 +1145,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/it.ts vendored

@ -1149,6 +1149,10 @@ invece di chiudersi completamente.</translation> @@ -1149,6 +1149,10 @@ invece di chiudersi completamente.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Puoi impostare questo su una base per amico cliccando con il tasto destro sui singoli amici.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/ja.ts vendored

@ -1141,6 +1141,10 @@ instead of closing entirely.</source> @@ -1141,6 +1141,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/kn.ts vendored

@ -1145,6 +1145,10 @@ instead of closing entirely.</source> @@ -1145,6 +1145,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/ko.ts vendored

@ -1146,6 +1146,10 @@ instead of closing entirely.</source> @@ -1146,6 +1146,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/lt.ts vendored

@ -1150,6 +1150,10 @@ vietoje to, kad būtų visiškai uždarytas.</translation> @@ -1150,6 +1150,10 @@ vietoje to, kad būtų visiškai uždarytas.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Galite nustatyti individualiai ant bet kurio kontakto spustelėję dešiniuoju pelės klavišu.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/lv.ts vendored

@ -1157,6 +1157,10 @@ vietā pilnīgi aizveroties.</translation> @@ -1157,6 +1157,10 @@ vietā pilnīgi aizveroties.</translation>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/mk.ts vendored

@ -1150,6 +1150,10 @@ instead of closing entirely.</source> @@ -1150,6 +1150,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/nl.ts vendored

@ -1142,6 +1142,10 @@ instead of closing entirely.</source> @@ -1142,6 +1142,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/nl_BE.ts vendored

@ -1149,6 +1149,10 @@ instead of closing entirely.</source> @@ -1149,6 +1149,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/no_nb.ts vendored

@ -1144,6 +1144,10 @@ instead of closing entirely.</source> @@ -1144,6 +1144,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/pl.ts vendored

@ -1160,6 +1160,10 @@ instead of closing entirely.</source> @@ -1160,6 +1160,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/pt.ts vendored

@ -1149,6 +1149,10 @@ em vez de fechar.</translation> @@ -1149,6 +1149,10 @@ em vez de fechar.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Pode definir esta configuração para cada contacto clicando com o botão direito do rato sobre eles.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/pt_BR.ts vendored

@ -1156,6 +1156,10 @@ ao invés de fechar.</translation> @@ -1156,6 +1156,10 @@ ao invés de fechar.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Você pode definir esta configuração para cada contato clicando com o botão direito sobre eles.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/ro.ts vendored

@ -1157,6 +1157,10 @@ instead of closing entirely.</source> @@ -1157,6 +1157,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation>Puteți seta acest lucru pe bază de prieten, făcând clic dreapta pe prieteni individuali.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/ru.ts vendored

@ -1153,6 +1153,10 @@ instead of closing entirely.</source> @@ -1153,6 +1153,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation>Вы можете установить это для каждого друга, нажатием правой кнопки на каждом из них.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/si.ts vendored

@ -1145,6 +1145,10 @@ instead of closing entirely.</source> @@ -1145,6 +1145,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/sk.ts vendored

@ -1157,6 +1157,10 @@ namiesto toho, že by sa zavrel úplne.</translation> @@ -1157,6 +1157,10 @@ namiesto toho, že by sa zavrel úplne.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Toto môžete nastaviť na individuálnej úrovni pomocou kliknutia pravým tlačidlom na vašich jednotlivých priateľov.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/sl.ts vendored

@ -1145,6 +1145,10 @@ instead of closing entirely.</source> @@ -1145,6 +1145,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/sq.ts vendored

@ -1145,6 +1145,10 @@ instead of closing entirely.</source> @@ -1145,6 +1145,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/sr.ts vendored

@ -1150,6 +1150,10 @@ instead of closing entirely.</source> @@ -1150,6 +1150,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/sr_Latn.ts vendored

@ -1151,6 +1151,10 @@ instead of closing entirely.</source> @@ -1151,6 +1151,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/sv.ts vendored

@ -1148,6 +1148,10 @@ instead of closing entirely.</source> @@ -1148,6 +1148,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation>Du kan ställa in detta per vän genom att högerklicka på enskilda vänner.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/sw.ts vendored

@ -1145,6 +1145,10 @@ instead of closing entirely.</source> @@ -1145,6 +1145,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/ta.ts vendored

@ -1150,6 +1150,10 @@ instead of closing entirely.</source> @@ -1150,6 +1150,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/tr.ts vendored

@ -1152,6 +1152,10 @@ tamamen kapanmak yerine tepsiye kapanacak.</translation> @@ -1152,6 +1152,10 @@ tamamen kapanmak yerine tepsiye kapanacak.</translation>
<comment>autoaccept cb tooltip</comment>
<translation>Bunu, her bir arkadaşa sağ tıklayarak arkadaş temelinde ayarlayabilirsiniz.</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/ug.ts vendored

@ -1149,6 +1149,10 @@ instead of closing entirely.</source> @@ -1149,6 +1149,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/uk.ts vendored

@ -1143,6 +1143,10 @@ instead of closing entirely.</source> @@ -1143,6 +1143,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/ur.ts vendored

@ -1153,6 +1153,10 @@ instead of closing entirely.</source> @@ -1153,6 +1153,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/zh_CN.ts vendored

@ -1148,6 +1148,10 @@ instead of closing entirely.</source> @@ -1148,6 +1148,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation>您可以通过右键单击单个朋友来为每个朋友设置此设置。</translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

4
translations/zh_TW.ts vendored

@ -1148,6 +1148,10 @@ instead of closing entirely.</source> @@ -1148,6 +1148,10 @@ instead of closing entirely.</source>
<comment>autoaccept cb tooltip</comment>
<translation type="unfinished"></translation>
</message>
<message>
<source>Add a chat message when a user joins or leaves a group</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GenericChatForm</name>

Loading…
Cancel
Save