2
0
mirror of https://github.com/majn/telegram-purple synced 2025-08-31 05:55:07 +00:00

Fix 'permantently' typos

Credits go to yslandro (Yngve Spjeld-Landro).
This commit is contained in:
Ben Wiederhake
2020-01-27 09:02:50 +01:00
parent dcec921dc1
commit 1b3eaba07d
2 changed files with 24 additions and 24 deletions

View File

@@ -294,92 +294,92 @@ msgstr ""
msgid "Sending image failed." msgid "Sending image failed."
msgstr "" msgstr ""
#: ../tgp-msg.c:457 #: ../tgp-msg.c:497
#, c-format #, c-format
msgid "%s sent a sticker." msgid "%s sent a sticker."
msgstr "" msgstr ""
#: ../tgp-msg.c:473 #: ../tgp-msg.c:513
msgid "[message unavailable]" msgid "[message unavailable]"
msgstr "" msgstr ""
#: ../tgp-msg.c:487 #: ../tgp-msg.c:527
msgid "[photo]" msgid "[photo]"
msgstr "" msgstr ""
#: ../tgp-msg.c:491 #: ../tgp-msg.c:531
msgid "[audio]" msgid "[audio]"
msgstr "" msgstr ""
#: ../tgp-msg.c:495 #: ../tgp-msg.c:535
msgid "[video]" msgid "[video]"
msgstr "" msgstr ""
#: ../tgp-msg.c:500 #: ../tgp-msg.c:540
msgid "[document]" msgid "[document]"
msgstr "" msgstr ""
#: ../tgp-msg.c:505 #: ../tgp-msg.c:545
msgid "[position]" msgid "[position]"
msgstr "" msgstr ""
#: ../tgp-msg.c:509 #: ../tgp-msg.c:549
msgid "[contact]" msgid "[contact]"
msgstr "" msgstr ""
#: ../tgp-msg.c:513 #: ../tgp-msg.c:553
msgid "[webpage]" msgid "[webpage]"
msgstr "" msgstr ""
#: ../tgp-msg.c:517 #: ../tgp-msg.c:557
msgid "[unsupported media]" msgid "[unsupported media]"
msgstr "" msgstr ""
#: ../tgp-msg.c:549 #: ../tgp-msg.c:582
#, c-format #, c-format
msgid "%s<b>&gt; %s wrote:</b><br>&gt; %s<br>%s" msgid "%s<b>&gt; %s wrote:</b><br>&gt; %s<br>%s"
msgstr "" msgstr ""
#: ../tgp-msg.c:551 #: ../tgp-msg.c:584
#, c-format #, c-format
msgid "%s<b>&gt; Unknown user wrote:</b><br>&gt; %s<br>%s" msgid "%s<b>&gt; Unknown user wrote:</b><br>&gt; %s<br>%s"
msgstr "" msgstr ""
#: ../tgp-msg.c:607 #: ../tgp-msg.c:640
msgid "failed loading message" msgid "failed loading message"
msgstr "" msgstr ""
#. Content of a file transfer #. Content of a file transfer
#: ../tgp-msg.c:649 ../tgp-msg.c:699 #: ../tgp-msg.c:682 ../tgp-msg.c:732
msgid "document" msgid "document"
msgstr "" msgstr ""
#. Content of a file transfer #. Content of a file transfer
#: ../tgp-msg.c:652 #: ../tgp-msg.c:685
msgid "audio" msgid "audio"
msgstr "" msgstr ""
#. Content of a file transfer #. Content of a file transfer
#: ../tgp-msg.c:655 #: ../tgp-msg.c:688
msgid "animation" msgid "animation"
msgstr "" msgstr ""
#. Content of a file transfer #. Content of a file transfer
#: ../tgp-msg.c:658 #: ../tgp-msg.c:691
msgid "video" msgid "video"
msgstr "" msgstr ""
#: ../tgp-msg.c:786 #: ../tgp-msg.c:810
#, c-format #, c-format
msgid "<b>&gt; Forwarded from %s:</b><br>&gt; %s" msgid "<b>&gt; Forwarded from %s:</b><br>&gt; %s"
msgstr "" msgstr ""
#: ../tgp-msg.c:788 #: ../tgp-msg.c:812
#, c-format #, c-format
msgid "<b>&gt; Forwarded:</b><br>&gt; %s" msgid "<b>&gt; Forwarded:</b><br>&gt; %s"
msgstr "" msgstr ""
#: ../tgp-msg.c:897 #: ../tgp-msg.c:921
msgid "loading document or picture failed" msgid "loading document or picture failed"
msgstr "" msgstr ""
@@ -550,7 +550,7 @@ msgid "Leave Chat"
msgstr "" msgstr ""
#: ../tgp-request.c:371 #: ../tgp-request.c:371
msgid "Do you want to leave this chat permantently?" msgid "Do you want to leave this chat permanently?"
msgstr "" msgstr ""
#: ../tgp-request.c:376 #: ../tgp-request.c:376
@@ -558,7 +558,7 @@ msgid "Abort Secret Chat"
msgstr "" msgstr ""
#: ../tgp-request.c:378 #: ../tgp-request.c:378
msgid "Do you want to terminate this secret chat permantently?" msgid "Do you want to terminate this secret chat permanently?"
msgstr "" msgstr ""
#: ../tgp-request.c:383 #: ../tgp-request.c:383

View File

@@ -368,14 +368,14 @@ void tgprpl_request_delete_contact (PurpleConnection *gc, PurpleBuddy *buddy, Pu
if (! (P->chat.flags & TGLCF_LEFT)) { if (! (P->chat.flags & TGLCF_LEFT)) {
title1 = _("Leave Chat"); title1 = _("Leave Chat");
title2 = title1; title2 = title1;
msg = _("Do you want to leave this chat permantently?"); msg = _("Do you want to leave this chat permanently?");
} }
break; break;
case TGL_PEER_ENCR_CHAT: case TGL_PEER_ENCR_CHAT:
title1 = _("Abort Secret Chat"); title1 = _("Abort Secret Chat");
title2 = title1; title2 = title1;
msg = _("Do you want to terminate this secret chat permantently?"); msg = _("Do you want to terminate this secret chat permanently?");
break; break;
case TGL_PEER_USER: case TGL_PEER_USER: