masthelp.po 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the masthelp package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: masthelp 1.1\n"
  9. "Report-Msgid-Bugs-To: masthelp@insicuri.net\n"
  10. "POT-Creation-Date: 2024-08-25 11:45+0200\n"
  11. "PO-Revision-Date: 2022-12-20 18:47+0000\n"
  12. "Last-Translator: Alex Maryson Jr. <akamar87@gmail.com>\n"
  13. "Language-Team: Russian <https://hosted.weblate.org/projects/mastodon-help/site/ru/>\n"
  14. "Language: ru\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
  19. "X-Generator: Weblate 4.15.1-dev\n"
  20. #: web/site/404.php:10
  21. msgid "resource not found"
  22. msgstr "страница не найдена"
  23. #: web/site/404.php:11
  24. msgid "Sorry, the requested URL doesn’t match any resource on this server."
  25. msgstr "Извините, указанный URL не был найден на этом сервере."
  26. #: web/site/404.php:12
  27. msgid "Try the menu ;-)"
  28. msgstr "Воспользуйтесь меню ;-)"
  29. #: web/site/about.php:12
  30. #, fuzzy
  31. msgid "About us"
  32. msgstr "О нас"
  33. #: web/site/about.php:13
  34. #, php-format
  35. msgid "The first version of our <a href=\"../%s\">Guide</a> was written in 2019 by <a href=\"https://mastodon.bida.im/@Ca_Gi\">Ca_Gi</a>, who kept it up to date until early 2022. Since then the <a href=\"../%s\">Guide</a> has been updated by <a href=\"https://kolektiva.social/@jones_\">Jones</a>, who also takes care of the development and maintenance of the website and contribute to its translation from Italian to English language. Many other Mastodon users, particularly from the <a href=\"https://mastodon.bida.im\">mastodon.bida.im</a> Italian instance, have contributed to the writing of the <a href=\"../%s\">Guide</a> and to the website development and maintenance. Among them we would like to thank at least <a href=\"https://mastodon.bida.im/@jops\">Jops</a>, an admin of <a href=\"https://bida.im\">bida.im</a> who is in charge, among other things, of the <a href=\"https://bida.im\">bida</a>’s server hosting mastodon.help, <a href=\"https://mastodon.bida.im/@RedGlow\">RedGlow</a>, who integrated <a href=\"https://github.com/patrickschur/language-detection\">Patrick Schur’s PHP library for automatic language recognition</a> into the crawler that collects data for our <a href=\"../instances/%s\">Mastodon instances search engine</a>, and <a href=\"https://mastodon.bida.im/@paulbutgold\">paulbutgold</a>, who developed the website admin section’s page to manage its notifications."
  36. msgstr ""
  37. #: web/site/about.php:17 web/site/contribute.php:13
  38. msgid "Translation"
  39. msgstr "Перевод"
  40. #: web/site/about.php:19
  41. #, fuzzy
  42. msgid "Since october 2022, the translation of this site is done on <a href=\"https://hosted.weblate.org/projects/mastodon-help/site/\">Weblate</a>."
  43. msgstr "С октября 2022 перевод этого сайта выполняется на <a href=\"https://hosted.weblate.org/projects/mastodon-help/site/\">Weblate</a>."
  44. #: web/site/about.php:22
  45. msgid "Arabic"
  46. msgstr "Арабский"
  47. #: web/site/about.php:25
  48. msgid "Catalan"
  49. msgstr "Каталанский"
  50. #: web/site/about.php:28
  51. msgid "Czech"
  52. msgstr "Чешский"
  53. #: web/site/about.php:31
  54. msgid "French"
  55. msgstr "Французский"
  56. #: web/site/about.php:33
  57. msgid "Galician"
  58. msgstr "Галисийский"
  59. #: web/site/about.php:35
  60. msgid "German"
  61. msgstr "Немецкий"
  62. #. 'es'=>['orname'=>'Español','trname'=>_('Spanish')],
  63. #. 'fr'=>['orname'=>'Français','trname'=>_('French')],
  64. #. 'gl'=>['orname'=>'Galego','trname'=>_('Galician')],
  65. #: web/site/about.php:37 web/lib/supplangs.php:12
  66. msgid "Italian"
  67. msgstr "Итальянский"
  68. #: web/site/about.php:40
  69. msgid "Persian"
  70. msgstr "Персидский"
  71. #: web/site/about.php:43
  72. msgid "Portuguese (Brazil)"
  73. msgstr "Португальский (Бразилия)"
  74. #: web/site/about.php:46
  75. msgid "Russian"
  76. msgstr "Русский"
  77. #: web/site/about.php:50
  78. msgid "Spanish"
  79. msgstr "Испанский"
  80. #: web/site/about.php:53
  81. msgid "Ukrainian"
  82. msgstr "Украинский"
  83. #: web/site/about.php:56
  84. msgid "Code"
  85. msgstr "Код"
  86. #: web/site/about.php:58
  87. #, php-format
  88. msgid "The code for this website is %shere%s."
  89. msgstr ""
  90. #: web/site/about.php:60
  91. msgid "License"
  92. msgstr "Лицензия"
  93. #: web/site/about.php:61
  94. #, fuzzy, php-format
  95. msgid "Except where otherwise noted, content on this site is licensed under a %sCreative Commons Attribution 4.0 International license%s."
  96. msgstr "Если не указано иное, содержание этого сайта лицензировано на условиях <a href=\"https://creativecommons.org/licenses/by/4.0\">лицензии Creative Commons Attribution 4.0 International</a>."
  97. #: web/site/contribute.php:12 web/site/index.php:176
  98. msgid "Contribute to Mastodon Help development"
  99. msgstr "Внесите свой вклад в разработку Mastodon Help"
  100. #: web/site/contribute.php:15
  101. msgid "Please help us make this site better by contributing to its translation on <a href=\"https://hosted.weblate.org/projects/mastodon-help/site/\">Weblate</a>! :-)"
  102. msgstr "Пожалуйста, помогите нам улучшить сайт, помогая с переводом на <a href=\"https://hosted.weblate.org/projects/mastodon-help/site/\">Weblate</a>! :-)"
  103. #: web/site/contribute.php:17
  104. msgid "We are currently looking for a platform that would allow anyone interested to contribute to the update of the translations that were done for the previous version of mastodon.help and to the translation of this new version in other languages, so, if you are interested, keep an eye on this page, which we hope we’ll be able to update very soon ;-)"
  105. msgstr ""
  106. #: web/site/contribute.php:18
  107. msgid "Reporting problems"
  108. msgstr "Сообщить о проблеме"
  109. #: web/site/contribute.php:19
  110. msgid "You can report any problem you may experience with the site (bugs, wrong translations, instances we should exclude by default in our search engine because they accept fascist / racist / sexist / ableist / sovereignist contents) to us at <span class=\"magt\">masthelp[at]insicuri.net</span>."
  111. msgstr "Вы можете сообщить нам о проблеме с сайтом (неисправность; неправильный перевод; инстансы, которые должны быть заблокированы нашим поисковым движком потому, что они поддерживают фашизм / расизм / сексизм / эйблизм / сувернизацию) на <span class=\"magt\">masthelp[собака]insicuri.net</span>."
  112. #: web/site/fedidevpact.php:12
  113. msgid "FediDevPact"
  114. msgstr ""
  115. #: web/site/fedidevpact.php:14
  116. msgid "We think it’s appropriate to sign this pact in general, and we think it’s now more appropriate than ever before because we are worried that <a href=\"https://en.wikipedia.org/wiki/Embrace,_extend,_and_extinguish\">the currently ongoing process involving Meta implementing (Embracing) ActivityPub in its Threads platform, heralds a subsequent phase during which Meta and possibly other subjects, will try to Extend/Modify and possibly Extinguish the Fediverse as it is now</a> with great probability of succeeding, because <a href=\"https://www.w3.org/membership/list/\">Meta is currently part of the W3C</a>, and also because <a href=\"https://mastodon.social/@Gargron/111576825980285552\">it seems that Meta has the backing of Eugen Rochko (AKA Gargron), CEO and lead developer of Mastodon</a>, which is currently and by far <a href=\"https://fediverse.observer/stats\">the most widely used platform of the Fediverse</a>, and who is also owner of <a href=\"https://mastodon.social/about\">mastodon.social, the most populated Mastodon instance</a>, and perhaps of the entire development team of Mastodon; and because we want to avoid culturally legitimating Meta, which has been and is guilty, with its platforms (Facebook, Instagram, Whatsapp, Threads itself, and others) of profiling users for targeting advertisements, of collecting and buying and selling data even for electoral purposes for the worst subjects of the most extreme global right, and of censoring realities of the global left while non-censoring realities of the most extreme global right, and of facilitating ethnic genocides, and of exploiting people forced to work continuously for little more than 1 euro an hour to censor the worst of the worst of the worst of the internet (videos of sexual abuse, pedophilia, etc.); and because we are worried that in a very near future, using Threads or Mastodon and possibly other fediverse platforms too, even while blocking threads.net instances and any other possible Meta instances from other platform’s instances, will be less and less different in terms of data raking, privacy, etc., especially because if those other Fediverse platforms will implement the new, modified and-or extended ActivityPub releases, then both instances’ admins blocking and not blocking Threads will have the power to make money by selling increasingly invasive advertising space to increasingly large companies, to collect data for profiling and “targeting” advertisement on their users, and so on: of becoming commercial in the worst sense of the word, maybe at first larvishly, and then less and less larvishly; while admins of instances not blocking at their instance level threads.net and any other possible Meta instances will expose their user to being followed by Threads users, and thus also to data raking by Meta even on their “followers only” posts, and even on any “direct message” they may address to at least one Threads user: Meta has done that and is most probably still doing that on its platforms, in spite of the few court cases which accounted it guilty of doing this, punishing it with financial penalties which are ludicrous to Meta because of its huge financial wealth."
  117. msgstr ""
  118. #: web/site/home.php:10
  119. msgid "Index"
  120. msgstr "Содержание"
  121. #: web/site/home.php:14
  122. msgid "Close index"
  123. msgstr "Закрыть содержание"
  124. #: web/site/home.php:22 web/site/home.php:98
  125. msgid "Foreword to the new version"
  126. msgstr ""
  127. #: web/site/home.php:24 web/site/home.php:106
  128. msgid "Introduction"
  129. msgstr "Введение"
  130. #: web/site/home.php:26 web/site/home.php:117
  131. msgid "What is Mastodon?"
  132. msgstr "Что такое Mastodon?"
  133. #: web/site/home.php:28 web/site/home.php:121
  134. msgid "Mastodon is not <em>a</em> social network"
  135. msgstr "Масторон это <em>не</em> социальная сеть"
  136. #: web/site/home.php:29 web/site/home.php:129
  137. msgid "So what is Mastodon?"
  138. msgstr "Так что такое Mastodon?"
  139. #: web/site/home.php:30 web/site/home.php:135
  140. msgid "Who owns Mastodon?"
  141. msgstr "Кому принадлежит Mastodon?"
  142. #: web/site/home.php:34 web/site/home.php:142
  143. msgid "The Instance"
  144. msgstr "Инстансы"
  145. #: web/site/home.php:36 web/site/home.php:146
  146. msgid "Running an Instance"
  147. msgstr "Ведение инстанса"
  148. #: web/site/home.php:37 web/site/home.php:154
  149. msgid "Choosing the Instance"
  150. msgstr "Выбор инстанса"
  151. #: web/site/home.php:38 web/site/home.php:166
  152. msgid "Medium and small Instances are better"
  153. msgstr "Средние и маленькие инстансы лучше"
  154. #: web/site/home.php:39 web/site/home.php:177
  155. msgid "Interactions and echo-chambers"
  156. msgstr "Взаимодействия и эхо-камеры"
  157. #: web/site/home.php:40 web/site/home.php:186
  158. msgid "Instances with customized and modified software"
  159. msgstr ""
  160. #: web/site/home.php:41 web/site/home.php:191
  161. #, fuzzy
  162. msgid "Copyrights"
  163. msgstr "Авторские права"
  164. #: web/site/home.php:45 web/site/home.php:198
  165. #, fuzzy
  166. msgid "User-side software"
  167. msgstr "Программное обеспечение"
  168. #: web/site/home.php:47 web/site/home.php:202
  169. msgid "Mastodon on smartphones"
  170. msgstr "Mastodon на смартфонах"
  171. #: web/site/home.php:48 web/site/home.php:213
  172. msgid "Mastodon on the desktop"
  173. msgstr "Mastodon на компьютере"
  174. #: web/site/home.php:52 web/site/home.php:231
  175. msgid "Using Mastodon"
  176. msgstr "Использование Mastodon"
  177. #: web/site/home.php:54 web/site/home.php:235
  178. #, fuzzy
  179. msgid "Mastodon Address"
  180. msgstr "Mastodon Help"
  181. #: web/site/home.php:55 web/site/home.php:245
  182. #, fuzzy
  183. msgid "Three Timelines"
  184. msgstr "Три ленты"
  185. #: web/site/home.php:56 web/site/home.php:257
  186. msgid "Trending posts, hashtags, news and accounts"
  187. msgstr ""
  188. #: web/site/home.php:57 web/site/home.php:267
  189. msgid "Threads and branches"
  190. msgstr "Треды и ветки"
  191. #: web/site/home.php:58 web/site/home.php:281
  192. msgid "Searching things"
  193. msgstr "Поиск штук"
  194. #: web/site/home.php:59 web/site/home.php:288
  195. msgid "The post’s privacy"
  196. msgstr "Приватность поста"
  197. #: web/site/home.php:60 web/site/home.php:301
  198. msgid "Sharing a post"
  199. msgstr ""
  200. #: web/site/home.php:61 web/site/home.php:309
  201. msgid "Content Warning"
  202. msgstr "Предупреждение о содержании"
  203. #: web/site/home.php:62 web/site/home.php:318
  204. msgid "Describing media for accessibility"
  205. msgstr ""
  206. #: web/site/home.php:63 web/site/home.php:332
  207. msgid "Moving to another Instance"
  208. msgstr "Переход на другой инстанс"
  209. #: web/site/home.php:64 web/site/home.php:338
  210. msgid "No “Retweet and comment”"
  211. msgstr "Никаких “Ретвитов и комментариев”"
  212. #: web/site/home.php:68 web/site/home.php:346
  213. msgid "Moderation"
  214. msgstr "Модерация"
  215. #: web/site/home.php:70 web/site/home.php:350
  216. #, fuzzy
  217. msgid "Harassment and moderation"
  218. msgstr "Домогания и модерация"
  219. #: web/site/home.php:71 web/site/home.php:356
  220. #, fuzzy
  221. msgid "Limiting and suspending"
  222. msgstr "Блокировка и заглушение"
  223. #: web/site/home.php:75 web/site/home.php:364
  224. msgid "Federation"
  225. msgstr "Федерация"
  226. #: web/site/home.php:77 web/site/home.php:368
  227. msgid "The Fediverse"
  228. msgstr "Федивёрс"
  229. #: web/site/home.php:78 web/site/home.php:387
  230. msgid "Decentralized and federated"
  231. msgstr "Децентрализация и федерация"
  232. #: web/site/home.php:79 web/site/home.php:398
  233. msgid "How federation works (theory)"
  234. msgstr "Как работает федерация (теория)"
  235. #: web/site/home.php:80 web/site/home.php:416
  236. msgid "How federation works (practice)"
  237. msgstr "Как работает федерация (практика)"
  238. #: web/site/home.php:84
  239. msgid "A critique of Mastodon development team’s politics"
  240. msgstr ""
  241. #: web/site/home.php:94
  242. msgid "Mastodon Help"
  243. msgstr "Mastodon Help"
  244. #: web/site/home.php:102
  245. msgid "Hello :-)<br>After about two months since we replaced the old content on this site with a single page in which we wrote that updating this Guide to Mastodon would not be worth our effort and the time it would take us, because of the many harmful choices the Mastodon development team made, today, Friday, November 3, 2023, mastodon.help is back online, with an updated Guide: the reasons for our disappointment and criticism have unfortunately not gone away, but we felt that <a href=\"#Critique\">expressing them here</a>, in an updated version of this resource that we still feel can be useful and that we hope can be more so precisely because of its critical approach, is better than abandoning it and putting it permanently offline."
  246. msgstr ""
  247. #: web/site/home.php:110
  248. #, fuzzy
  249. msgid "Mastodon is a <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software\">Free and Open Source</a> microblogging platform whose functionalities may resemble those of Twitter or Tumblr. Its development was started by programmer Eugen Rochko in 2016, and since then Mastodon has steadily grown, due to its adoption by an increasing number of communities looking for an independent social environment, untied from large companies and free from their censorship."
  250. msgstr "Mastodon — это инновационная саморазмещаемая платформа по ведению микроблоков с открытым исходным кодом, похожая на Twitter и Tumblr. Его разработка началась в 2016 году Евгением Рошко, и с того момента Mastodon стремительно привлекает новых пользователей и сообщества, ищущие социальное окружение, не зависимые от логики больших компаний и цензуры."
  251. #: web/site/home.php:111
  252. #, fuzzy
  253. msgid "But Mastodon is not a Twitter clone: it is structurally and functionally very different, and much more interesting!"
  254. msgstr "Mastodon - это не клон Твиттера, так как он отличается по концепту, структуре и функционалу и гораздо интереснее!"
  255. #: web/site/home.php:112
  256. #, fuzzy
  257. msgid "This page, that was last updated at the end of October 2023, is not <a href=\"https://docs.joinmastodon.org/\">the official guide to Mastodon</a>, but an introduction to its basic features and concepts that allows you to understand and appreciate how it works. It is structured in a series of independent sections that you can jump to from the Index (see the related link in the upper-left corner of your screen), but it can also be read as a single text."
  258. msgstr "Эта страница — это введение в основные концепции и возможности Mastodon, которвые вы полностью понимать, чтобы понять, как работает Mastodon. Она структурирована в отдельные секции, по которым можно перемещаться из содержания (ссылка находится сверху слева), однако она может читаться как цельный текст."
  259. #: web/site/home.php:113
  260. #, fuzzy, php-format
  261. msgid "The site also features <a href=\"instances/%s\">a search engine for Mastodon Instances</a> where you can choose the one that best fits your needs."
  262. msgstr "Этот сайт так же хостит <a href=\"instances/en\">поисковой движок по инстансам</a>, с помощью которого вы можете найти инстанс Mastodon, который удовлетворяет ваши потребности."
  263. #: web/site/home.php:122
  264. #, fuzzy
  265. msgid "There is no such thing as <em>a</em> social network called Mastodon! There are, instead, thousands of independent social networks called Mastodon Instances."
  266. msgstr "Не существует <em>социальной сети </em>под названием Mastodon! Вместо неё есть тысячи инстансов независимых социальных сетей называемых инстансами Mastodon."
  267. #: web/site/home.php:123
  268. #, fuzzy
  269. msgid "Every Instance has its own independent server, its own homepage, its own community, its own rules, and it’s administered and moderated by different people."
  270. msgstr "У каждого инстанса есть свой сервер, сообщество, правила, администрация и модерация."
  271. #: web/site/home.php:124
  272. #, fuzzy
  273. msgid "From any Instance it is possible to interact with users who are on any other Instance. It works a bit like e-mail (you can send an e-mail from Gmail to a Yahoo address, right?)."
  274. msgstr "С каждого инстанса Mastodon возможно взаимодействовать с пользователями других инстансов. Работает так же, как и емейл (можно отправлять емэйл с Яндекса на Мейл.ру, ведь так?). Всё потому, что все инстансы могут быть связанны между собой."
  275. #: web/site/home.php:125
  276. msgid "Those who administer an Instance may <a href=\"#LimitingAndSuspending\">limit or suspend</a> users from their own and any other Instance, and may also decide to <a href=\"#LimitingAndSuspending\">limit or suspend</a> entire other Instances, for example because they allow posting offensive content, or because they are not properly moderated. These <a href=\"#LimitingAndSuspending\">limitations and suspensions</a>, however, will only affect the Instance they administer."
  277. msgstr ""
  278. #: web/site/home.php:130
  279. #, fuzzy
  280. msgid "When we say “Mastodon” we mean the whole network of Mastodon Instances, but also the technology they share."
  281. msgstr "Когда мы говорим “Mastodon”, мы имеем ввиду всю сеть инстансов Mastodon, а так же и технологию, которую разделяют инстансы."
  282. #: web/site/home.php:131
  283. #, fuzzy
  284. msgid "With a metaphor, Mastodon can be described as a galaxy of independent but interconnected social networks using a common platform."
  285. msgstr "Сеть можно неплохо описать, сказав, что Mastodon это “галактика взаимосвязанных социальных сетей, основанных на общей платформе”."
  286. #: web/site/home.php:136
  287. #, fuzzy
  288. msgid "Everybody! Since it is a <a href=\"https://fsf.org\">Free</a> (as “in beer” too) and <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software\">Open Source</a> platform, anyone can use it, modify it and, if they wish, install it on their own server to create an Instance. It is a classic example of the philosophy behind <a href=\"https://fsf.org\">Free Software</a>: make and share open software tools that anyone can use as they like and contribute to improve."
  289. msgstr "Послушайте все! Так как Mastodon — это бесплатная платворма с открытым исходным кодом, любой может её использовать, модифицировать и устанавливать на свой сервер. К тому же, люди, разработавшие Mastodon, не владеют никакими авторскими правами на него. Основная философия свободного и открытого программного обеспечения — делиться полезными программами, которые все могут использовать, делать вклады и улчшать их."
  290. #: web/site/home.php:137
  291. msgid "A girl with her arms opened in front of a blue sky. Photo by Jess Hall."
  292. msgstr "Девушка с открытыми руками перед голубым небом. Фото от Jess Hall."
  293. #: web/site/home.php:137
  294. msgid "Photo by Jess Hall."
  295. msgstr "Фото от Jess Hall."
  296. #: web/site/home.php:138
  297. #, fuzzy
  298. msgid "Your personal data are located on the Instance server you register on. This means that, besides you, only those who administer your Instance can access them, just as on any other platform, be it commercial or not."
  299. msgstr "Ваши персональные данные содержатся на выбранном вами инстансе. Это значит, что только к ним может получить только администрация инстанса (как и на каждой социальной платформе)."
  300. #: web/site/home.php:147
  301. #, fuzzy
  302. msgid "Anyone with a server and enough technical skills to manage it can set up a Mastodon Instance. <a href=\"https://github.com/mastodon/mastodon\">Mastodon server software</a> is completely <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software\">Free and Open Source (FOSS)</a>, and “free as in beer” too, but maintaining a server and buying an internet domain has costs and requires a certain amount of work, as well as managing moderation. Depending on the technical specifications, the configuration you choose and how many people use your Instance, the cost can range from a few hundred euros per year to some thousand."
  303. msgstr "Все, у кого есть сервер и достаточно навыков его оперирования, могут создать свой инстанс. <a href=\"https://github.com/mastodon/mastodon\">Серверная программа Mastodon</a> полностью <a href=\"https://ru.wikipedia.org/wiki/%D0%A1%D0%B2%D0%BE%D0%B1%D0%BE%D0%B4%D0%BD%D0%BE%D0%B5_%D0%B8_%D0%BE%D1%82%D0%BA%D1%80%D1%8B%D1%82%D0%BE%D0%B5_%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D0%BD%D0%BE%D0%B5_%D0%BE%D0%B1%D0%B5%D1%81%D0%BF%D0%B5%D1%87%D0%B5%D0%BD%D0%B8%D0%B5\">открыта и свободна</a>, но хостинг сервера и покупка доменного имени потребуют некоторых затрат. Так же нужно работать над поддержанием и модерацией инстанса. В зависимости от технической конфигурации и количества пользователей инстанса, его ведение может стоить от ста до тысячи долларов в год."
  304. #: web/site/home.php:148
  305. msgid "Many Instances cover their costs with crowdfunding or collections among members, but it cannot be ruled out that some may resort to other ways, like asking for a fee."
  306. msgstr ""
  307. #: web/site/home.php:149
  308. #, fuzzy
  309. msgid "Mastodon, however, was born as an ad-free platform. For this reason, it’s not well suited for advertising, and anyway, if an Instance were to self-fund itself through advertisements, it would most likely be <a href=\"#LimitingAndSuspending\">suspended</a> by most of the other Instances."
  310. msgstr "Мастодон изначально был платформой без рекламы. По этой причине, инстансы которые финансируются за счёт рекламы, будут заглушены или заблокированы многоими другими."
  311. #: web/site/home.php:150
  312. msgid "Close-up of a server. Photo by Whrelf Siemens."
  313. msgstr "Сервер крупным планом. Фото от Whrelf Siemens."
  314. #: web/site/home.php:150
  315. msgid "Photo by Whrelf Siemens."
  316. msgstr "Фото от Whrelf Siemens."
  317. #: web/site/home.php:155
  318. #, fuzzy
  319. msgid "Since every Instance is completely independent of the others, every Instance is different from the others."
  320. msgstr "Поскольку каждый инстанс совершенно независим, инстансы могут сильно отличаться друг от друга."
  321. #: web/site/home.php:156
  322. #, fuzzy
  323. msgid "If you register on an Instance that is run by a French vegan community, you should expect that most of the posts you will read will be in French and that posting photos of steaks and grills will be considered offensive and against the policy."
  324. msgstr "Если вы зарегистрировались на инстансе сообщества французских веганов, стоит ожидать, что большинство пользователей будут общаться на французском, а что за выкладывание фотографий барбекю и мясных блюд будет считаться оскорбительным."
  325. #: web/site/home.php:157
  326. #, fuzzy
  327. msgid "If instead you registered on an Instance run by an British religious community, the posts will be mostly in English and pictures of steaks and grills would be welcome, but probably posting nude pictures might cause you some problems."
  328. msgstr "Аналогично, если вы зарегистрируетесь на инстансе британского религиозного сообщества, её польхователи будут говорить по-английски, фотографии барбекю будут приветствоваться, однако выкладывание обнажёнки будет проблемой."
  329. #: web/site/home.php:158
  330. #, fuzzy
  331. msgid "Choosing the Instance that best matches your needs and interests is the key to best accessing the Mastodon Galaxy."
  332. msgstr "Выбор инстанса, который лучше всего подходит вашим требованиям — это лучший способ получения доступа в галактику Mastodon."
  333. #: web/site/home.php:159
  334. #, fuzzy
  335. msgid "You can choose an Instance by language, policy and terms of service, topics it covers and its ethical and political positions, or by other criteria. In any case, remember that the more you feel at home on the Instance of your choice, the better."
  336. msgstr "Вы можете выбрать инстанс по языку, политике модерирования, политических взглядах и любым другим критериям. В любом случае, чем больше вы чувстуете себя как дома, тем лучше."
  337. #: web/site/home.php:160
  338. msgid "A well run Instance should always have its own well defined and accessible policy, and should make the list of other Instances it may have <a href=\"#LimitingAndSuspending\">limited or suspended</a> available."
  339. msgstr ""
  340. #: web/site/home.php:161
  341. msgid "Please forgive us for repeating this, but it is really important to register on an Instance where those who perform moderation speak your language and share with you at least those political positions that you consider essential: only in this way will you be able to communicate effectively with them."
  342. msgstr ""
  343. #: web/site/home.php:162
  344. #, fuzzy
  345. msgid "Don’t be afraid to try as many Instances as you like: you can decide later whether to delete the account you don’t want to use or even <a href=\"#MovingToAnotherInstance\">move it to another Instance</a>!"
  346. msgstr "Не бойтесь попробовать столько инстансов, сколько хотите — вы всегда можете удалить позже аккаунт, связать их вместе, или оставих их всех! Нет пределов!"
  347. #: web/site/home.php:167
  348. msgid "Mastodon Instances number in the thousands: there are both those with only five users and those with over three hundred thousand users."
  349. msgstr ""
  350. #: web/site/home.php:168
  351. #, fuzzy
  352. msgid "Among the latter is mastodon.social. It’s the Instance created and run by Mastodon main developer, but this doesn’t mean that it should be considered as some kind of “Mastodon Official Instance”, because each Instance has exactly the same powers as the others, neither more nor less."
  353. msgstr "Одним из таких инстансов является mastodon.social. Этот инстанс создан создателем Mastodon и им же управляется, однако это не значит что это “официальный” инстанс Mastodon, потому что каждый инстанс имеет равный статус с другими."
  354. #: web/site/home.php:169
  355. #, fuzzy
  356. msgid "The main problem with very big Instances like this is that, since they are not connected to a specific community and are more complex to moderate, it is likely for some of the obnoxious behaviors that we usually see in large commercial social networks to develop within them."
  357. msgstr "Проблема с такими огромными инстансами в том, что так как они не соединены ни с каким обществом или особенностью, их модерация более сложная, у них появляются некоторые проблемы больших коммерческих социальных сетей с поведением пользователей."
  358. #: web/site/home.php:170
  359. msgid "To give an example: if you register on a large generalist Instance based abroad, administered by people who don’t know your language, and someone started threatening you, those who administer the Instance might have a hard time even realizing that you were receiving threats. Or, if you register on an Instance that doesn’t have a feminist or anti-homophobic policy, those administering it might tend to downplay real abusive behaviors against you. Conversely, if you register on an Instance whose policy you agree with, moderation will also be better suited to your needs."
  360. msgstr ""
  361. #: web/site/home.php:171
  362. #, fuzzy
  363. msgid "The Mastodon Galaxy works best when it connects many small and medium-sized Instances, not by relying only on a few generalist big Instances."
  364. msgstr "Это лишь одна из причин, почему сеть Mastodon работает лучше всего при соединении многих маленьких и средних сообществ вместо пологания на несколько огромных."
  365. #: web/site/home.php:172
  366. #, php-format
  367. msgid "This is the reason why, by default, <a href=\"instances/%s\">our search engine</a> doesn’t include among the results those Instances that have more than thirty thousand users, although you can set it to do so."
  368. msgstr ""
  369. #: web/site/home.php:173
  370. msgid "You can read more about this topic in our <a href=\"#Critique\">Critique of Mastodon development team’s politics</a>."
  371. msgstr ""
  372. #: web/site/home.php:178
  373. msgid "Considering the large number of tools Mastodon provides for <a href=\"#LimitingAndSuspending\">limiting and suspending</a> users and Instances, one might think that the Mastodon Galaxy mostly consists of isolated communities locked in their own bubbles."
  374. msgstr ""
  375. #: web/site/home.php:179
  376. #, fuzzy
  377. msgid "Two plush monkeys, one covering its eyes and the other covering its ears. Photo by Streuli Silvan."
  378. msgstr "Две плюшевые обезъяны, одна закрывает свои уши, вторая закрывает свои глаза. Фото от Streuli Silvan."
  379. #: web/site/home.php:179
  380. msgid "Photo by Streuli Silvan."
  381. msgstr "Фото от Streuli Silvan."
  382. #: web/site/home.php:180
  383. #, fuzzy
  384. msgid "In contrast, reality is quite different, and in fact the variety of communities that intersect on Mastodon can hardly be found on large commercial social networks."
  385. msgstr "Хоть это и технически возможно, на самом деле всё совсем иначе и на самом деле на Mastodon есть большое количество разнообразных сообществ, которых редко встретишь на большинстве социальных сетей."
  386. #: web/site/home.php:181
  387. msgid "While it is technically possible for those who administer an Instance to set it up to be isolated from the others, by default each Instance is open to interaction with all the others, and only later can those who administer it decide to stop some of these interactions. The latter choice is usually based on the culture and open-mindedness of the community using the Instance. A community that does not respect different people and lifestyles will most likely <a href=\"#LimitingAndSuspending\">suspend</a> and be <a href=\"#LimitingAndSuspending\">suspended</a> by many Instances. In contrast, an Instance inhabited by a community willing to respectfully dialogue with those who have a different culture or lifestyle will never be <a href=\"#LimitingAndSuspending\">suspended</a> by other Instances that are populated by similarly willing communities."
  388. msgstr ""
  389. #: web/site/home.php:182
  390. #, fuzzy
  391. msgid "Since its inception, Mastodon has been adopted by various communities that share anti-fascist, anti-racist, anti-sexist, pro-LGBTQIA+, anti-homophobic and anti-transphobic values, and over time it has attracted communities from indigenous peoples and ethnic minorities, ecologists, animal rights advocates, vegetarians, vegans, human rights advocates, etc. For this reason, most of the communities that are currently on Mastodon will <a href=\"#LimitingAndSuspending\">limit or suspend</a> those who spread racist and bigot content. Instances created by racist groups, in fact, are isolated with great efficiency."
  392. msgstr "С момента своего создания Mastodon был принят разными сообществами, которые несут антифашистские, антирасистские, антисексистские, про-ЛГБТ, антигомофобные, антитрансфобные ценности, и со временем привлек другие сообщества, которые продвигают экологию, аборигенов, группы по защите прав человека и животного, вегетарианство и веганство, а также меньшинства, антикастеистские движения и т.д. По этим причинам расистам и фанатикам наверняка будет запрещен доступ в большинство инстансов, а если они будут создавать свои собственные инстанции, то эти инстанции будут быстро изолированы от большинства существующих."
  393. #: web/site/home.php:187
  394. msgid "Those who administer an Instance can choose to activate or deactivate certain features (for example, an Instance can be configured to not show <a href=\"#TrendingThings\">Trending Posts, Trending Hashtags and Trending News</a>) and, since Mastodon is <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software\">Free and Open Source software</a>, they can even make changes to <a href=\"https://github.com/mastodon/mastodon\">its source code</a>, for example to give users of the Instance they administer an amount of available characters for each post higher than the standard 500."
  395. msgstr ""
  396. #: web/site/home.php:192
  397. #, fuzzy
  398. msgid "Each Mastodon Instance is independent, has its own specific policy and, since when you post something on Mastodon that content is physically saved on your Instance’s server, it is handled according to your Instance’s own rules."
  399. msgstr "Каждый инстанс совершенно независим от остальных и имеет свою политику и условия использования. Поэтому, когда вы публикуете что-то на Mastodon, ваш контент сохраняется на сервере вашего инстанса, и каждый инстанс в зависимости от своих правил будет управлять им по-разному."
  400. #: web/site/home.php:193
  401. #, fuzzy
  402. msgid "If you are interested in using Mastodon as a tool to promote your art, or if for other reasons you want your content to get some specific kind of protection and treatment, you may prefer Instances specialized in that."
  403. msgstr "Если вы хотите рекламировать своё творчество на Mastodon, или хотите определённых гарантий для вашего контента, вы должны выбрать инстанс, который специализируется в этом."
  404. #: web/site/home.php:194
  405. msgid "However, due to the federated nature of the platform, any public post may reach other Instances, that are not required to provide the same protections provided by yours."
  406. msgstr ""
  407. #: web/site/home.php:203
  408. msgid "On smartphones, Mastodon can be used from any web browser or with one of the many available Apps."
  409. msgstr ""
  410. #: web/site/home.php:204
  411. msgid "On Android, the best known Apps are Mastodon (the official app), Tusky, Fedilab and Subway Tooter. With the exception of Subway Tooter, you can download these Apps not only from the Google Play Store, but also from <a href=\"https://f-droid.org\">F-Droid</a>, an alternative Apps store that includes only <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software\">Free and Open Source</a> and privacy-friendly Apps."
  412. msgstr ""
  413. #: web/site/home.php:205
  414. #, fuzzy
  415. msgid "On iOS you have a similar amount of choice, with Mastodon (the official App), Toot! and Mast being the most widely used Apps."
  416. msgstr "На iOS есть аналогичный выбор: Amaroq, Toot! и Mast являются самыми широкоиспользуемыми приложениями."
  417. #: web/site/home.php:206
  418. #, fuzzy
  419. msgid "Every App is a little different from the others and has its own pros and cons, so you will have to try them out and see for yourself which one is best for you, just like with Instances."
  420. msgstr "Каждое приложение немного отлично от остальных, и у них есть свои плюсы и минусы, так что вам нужно попробовать каждый и выбрать тот, что вам лучше подходит, прямо как с инстансами Mastodon!"
  421. #: web/site/home.php:207
  422. #, fuzzy
  423. msgid "Be aware that some of these Apps, such as Toot! and Mast, may not be <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software\">Free and Open Source</a>."
  424. msgstr "Имейте в виду, что некоторые приложения, такие как Toot и Mast, могут быть не свободными или не с открытым исходным кодом!"
  425. #: web/site/home.php:208
  426. msgid "Each App may add or, conversely, not provide certain features. For example, some Apps allow automatic translation of posts, while others may indicate whether an account is a bot with a special icon, and so on."
  427. msgstr ""
  428. #: web/site/home.php:209
  429. #, fuzzy
  430. msgid "Three screenshots showing Mastodon running on a smartphone."
  431. msgstr "Три скриншота, на которых на смартфонах запущен Mastodon."
  432. #: web/site/home.php:214
  433. #, fuzzy
  434. msgid "The typical way to access an Instance on desktop computers is by simply openining its homepage in a web browser. However, there are also specialized Applications, such as"
  435. msgstr "Обычный способ входа в ваш инстанс с компьютера — зайти на страницу инстанса через браузер. К тому же есть настольные приложения для Mastodon, такие как"
  436. #: web/site/home.php:220
  437. msgid "There are also alternative web frontends! They are simply websites that let you access your Instance by entering your <a href=\"#MastodonAddress\">Mastodon Address</a> and password, and that provide an interface that is different and may better suit you than the one that the official Mastodon web frontend provides. Among the best known alternative web frontends are"
  438. msgstr ""
  439. #: web/site/home.php:222
  440. #, fuzzy
  441. msgid "a simplified Mastodon web frontend"
  442. msgstr "Скриншот официального фронтенда Mastodon."
  443. #: web/site/home.php:223
  444. msgid "a web frontend that looks like Twitter"
  445. msgstr ""
  446. #: web/site/home.php:225
  447. msgid "What we have written about smartphone Apps also applies to desktop Applications and alternative web frontends: each Application and frontend may have features that others lack, or may work a little differently. Therefore, it is possible that certain instructions, tips and tricks meant for people accessing Mastodon from the web homepage of their Instance will not work on a desktop Application or an alternative web frontend."
  448. msgstr ""
  449. #: web/site/home.php:226
  450. msgid "In addition, some functions may be be called in slightly different ways in different Apps and frontends. For example, those that on one App may be called “Direct messages” could be called “Private posts” on others."
  451. msgstr ""
  452. #: web/site/home.php:227
  453. msgid "A screenshot from Mastodon official web frontend."
  454. msgstr "Скриншот официального фронтенда Mastodon."
  455. #: web/site/home.php:236
  456. msgid "A Mastodon Address is made up just as an e-mail address:"
  457. msgstr ""
  458. #: web/site/home.php:237
  459. #, fuzzy
  460. msgid "username@instance"
  461. msgstr "@имя@инстанс"
  462. #: web/site/home.php:238
  463. #, fuzzy
  464. msgid "Sometimes new users tend to tell only the username (the part preceding the “@”) as their address, but that way the address is incomplete and unusable, just as an e-mail address without the part following the “@”."
  465. msgstr "Многие новички думают, что их юзернейм это только часть <em>@имя</em>, но она сама по себе бесполезна, как и емейл адрес без того, что пишется после <em>@</em>."
  466. #: web/site/home.php:239
  467. msgid "Mastodon also gives you the ability to define and change at any time a “Display name” that can be different from your username, and none of the Instances we know require you to use your real first and-or last name for either the username or the “Display name”."
  468. msgstr ""
  469. #: web/site/home.php:240
  470. msgid "When you post on Mastodon you can mention people by simply writing their addresses preceded by “@” (for example, «Hello @goofy@instance1.net and @pluto@instance2.net, how are you?»). If you mention someone on Mastodon by writing only their username, in most cases the user-side software will assume that they are on the same Instance as you."
  471. msgstr ""
  472. #: web/site/home.php:241
  473. msgid "Note that many Apps automatically suggest completion of addresses."
  474. msgstr ""
  475. #: web/site/home.php:246
  476. #, fuzzy
  477. msgid "On Mastodon there are three different Timelines"
  478. msgstr "На Mastodon у вас есть 3 разных ленты"
  479. #: web/site/home.php:248
  480. #, fuzzy
  481. msgid "<em>Home:</em> it shows all the posts, replies and reblogs from the accounts you follow;"
  482. msgstr "<em>Домашняя</em>: как в Twitter, она показывает посты со всех инстансов от всех, на кого вы подписаны;"
  483. #: web/site/home.php:249
  484. #, fuzzy
  485. msgid "<em>Local:</em> it shows all the new public posts from all the accounts on your Instance, excluding replies and reblogs;"
  486. msgstr "<em>Локальная</em>: показывает посты всех пользователей вашего инстанса;"
  487. #: web/site/home.php:250
  488. #, fuzzy
  489. msgid "<em>Federated:</em> just like the Local Timeline, but it also shows public posts from other Instances’ accounts that are followed by at least one account of your Instance, still excluding replies and reblogs."
  490. msgstr "<em>Локальная</em>: показывает посты всех пользователей вашего инстанса;"
  491. #: web/site/home.php:252
  492. msgid "On these three Timelines posts are shown in descending chronological order."
  493. msgstr ""
  494. #: web/site/home.php:253
  495. #, fuzzy
  496. msgid "A screenshot showing the header with the icons of the three Timelines."
  497. msgstr "Скриншот, показывающий заголовки трёх лент."
  498. #: web/site/home.php:258
  499. msgid "In addition to the <a href=\"#ThreeTimelines\">three chronological Timelines</a>, over the past few years Mastodon has gradually introduced other ways of displaying content, currently four: Trending Posts, Trending Hashtags, Trending News and Trending Accounts."
  500. msgstr ""
  501. #: web/site/home.php:259
  502. msgid "These new views are accessible, in the web frontend and official Apps, as subsections of a section called “Explore”, where they are respectively called “Posts”, “Hashtags”, “News” and “For You”."
  503. msgstr ""
  504. #: web/site/home.php:260
  505. msgid "A screenshot showing the “Hashtags” subsection of the “Explore” section on Mastodon default web frontend."
  506. msgstr ""
  507. #: web/site/home.php:261
  508. msgid "Trending Posts are those that have gotten the most interactions (stars, reblogs, replies) in the last few days, Trending Hashtags are those that have been used the most in the last few days, Trending News are links to articles from news sites that have been linked to the most in the last few days, and Trending Accounts are the most followed and active."
  509. msgstr ""
  510. #: web/site/home.php:262
  511. msgid "All these new views are technically based on all the posts and accounts of your Instance, plus those of other Instances that are known to yours."
  512. msgstr ""
  513. #: web/site/home.php:263
  514. msgid "We really dislike the introduction of these new views, and you can read why in our <a href=\"#Critique\">Critique of Mastodon development team’s politics</a>."
  515. msgstr ""
  516. #: web/site/home.php:268
  517. #, fuzzy
  518. msgid "A thread can evolve into a sort of “tree” formed by lateral discussions that can develop from any post. The following image represents a thread that, starting from an initial post, develops into four “branches”:"
  519. msgstr "Тред может разрастить в виде “дерева”, потому что люди будут отвечать на разные посты или на другие ответы. На данном рисунке изображён тред, который с одного поста разветвляется на четыре ветки:"
  520. #: web/site/home.php:269
  521. msgid "A graphical representation of a thread that develops into four branches. Each post is represented by a small square with a progressive number. The small square representing the initial post stands at the top, and subsequent squares, with progressively higher numbers, are arranged downward. The different branches are represented by lines connecting the squares. The branch that we might call “main” is formed by answers 1, 2, 3 and 4, that are arranged below the initial post along a perfectly vertical line. From the square representing answer number 1, however, a second line departs to the left, connecting squares 2a and 3a. These represent branch “a”. From the square representing answer number 2 of the “main branch” departs, to its right, a ramification called “b”, consisting of posts 3b, 4b, 5b, 6b. Finally, there is the last branch, called “c”, that does not branch off from a post of the main branch, but from the right side of the square representing post 5b. Branch “c” consists of posts 6c and 7c."
  522. msgstr ""
  523. #: web/site/home.php:270
  524. msgid "Those who use Twitter already know this way of organizing threads, but those who come from different platforms (e.g., Facebook) may take some time to get used to it."
  525. msgstr ""
  526. #: web/site/home.php:271
  527. #, fuzzy
  528. msgid "In order to navigate within a highly branched discussion, it is necessary to understand only one concept: when you select a post, the thread is reorganized to show only those posts that, starting from the first one, led up to the one that was selected, and, below it, those belonging to subsequent branches are shown in their chronological order."
  529. msgstr "Если вы хотите прочитать сильно разветвлённый тред, то важно понимать, что когда выбран пост, тред перестраивается для показа только той ветки, которая начинается с первого поста и оканчивается выбранным, а так же показываются все посты и ветки, которые идут от выбранного поста."
  530. #: web/site/home.php:272
  531. #, fuzzy
  532. msgid "Let’s give some examples. If you want to read the full thread from the previous image, you just have to select its first post, and all subsequent ones will be reordered to appear in their chronological order (see the image below)."
  533. msgstr "Приведём несколько примеров. Если вы хотите посмотреть тред, который изображён выше, и вы выбрали первый пост, все последующие посты будут выстроены в хронологическом порядке (см. картинку ниже)."
  534. #: web/site/home.php:273
  535. msgid "The initial post is highlighted. The different threads in the previous image are now reorganized into a single vertical line. At the top is still the initial post, and below it, descending, there are posts 1, 2, 3, and 4. The connecting line showing the chronological-discursive concatenation of the “main branch” starts from the initial post and connects the posts just mentioned. Below post 4 we find posts 2a and 3a. The connecting line of branch “b” starts from post 1 making a wide curve to the left until it touches post 2a and from there it continues vertically to post 3a. Further below we find posts 3b, 4b, 5b, 6b. The branch junction line starts at post 2, makes a wide curve to the right until it touches post 3b and then descends to post 6b. Below that we find posts 6c and 7c, with the line of conjunction starting at post 5b, making a right curve until it touches post 6c and then descends to post 7c."
  536. msgstr ""
  537. #: web/site/home.php:274
  538. msgid "If you select post number 2, subsequent ones will still to be shown in the same order we just described, but those of the branches that develop from earlier posts will not be shown (in this case posts 2a and 3a are not shown)."
  539. msgstr ""
  540. #: web/site/home.php:275
  541. msgid "Compared to the previous image, now the highlighted post is post 2. Below it, the posts remain arranged as previously described, with the only difference being that branch “a”, the one that starting with post 1 develops to the left in posts 2a and 3a, is no longer present in the vertical line of posts and is shown instead aside and in gray, to indicate its exclusion. Therefore the vertical line consists of posts 1, 2, 3 and 4, then 3b, 4b, 5b, 6b, and finally 6c and 7c."
  542. msgstr ""
  543. #: web/site/home.php:276
  544. msgid "If you select the last post of a certain branch (in this case post 7c), all previous posts that, starting from the first one, lead to 7c, will be shown in chronological order, but none of the other branches will be shown."
  545. msgstr ""
  546. #: web/site/home.php:277
  547. msgid "Now the highlighted post is 7c, and the vertical line shows only the posts that from the initial one led to it, i.e., in order, 1, 2, 3b, 4b, 5b, 6c, 7c. All branches developing from posts prior to 7c are shown aside and in gray, to indicate their exclusion."
  548. msgstr ""
  549. #: web/site/home.php:282
  550. msgid "On some Instances, what you enter in the search box is searched for only in the hashtags, “Display names” and addresses that are known to your Instance (you can limit the search to hashtags only by prefixing a “#” character to the term to be searched; by prefixing an “@” character instead, you limit it to accounts). On other Instances – those that have Mastodon’s advanced search mechanism enabled – the search is also performed on the full text of posts you have written, starred, reblogged, or where your <a href=\"#MastodonAddress\">Mastodon Address</a> has been mentioned."
  551. msgstr ""
  552. #: web/site/home.php:283
  553. msgid "To have your Instance retrieve and display a post that was published on another Instance, even when your Instance has not fetched it already, it is always possible to enter its URL in the search box, and this will allow you to interact with it (reply, star, reblog, etc.). The same applies to accounts."
  554. msgstr ""
  555. #: web/site/home.php:284
  556. msgid "A screenshot showing the search box."
  557. msgstr "Скриншот, показывающий поисковую строку."
  558. #: web/site/home.php:289
  559. msgid "When you publish a post you can choose among four different privacy levels"
  560. msgstr ""
  561. #: web/site/home.php:291
  562. msgid "An icon depicting our planet."
  563. msgstr ""
  564. #: web/site/home.php:291
  565. msgid "<em>Public:</em> your post will appear on public Timelines (Local and Federated) and anyone will be able to read it. It will also be received in the Home Timeline by your followers and those who you possibly mentioned. The latter will also receive it as a notification. <em>Public</em> posts are marked with a globe icon."
  566. msgstr ""
  567. #: web/site/home.php:292
  568. msgid "An icon depicting an open padlock."
  569. msgstr ""
  570. #: web/site/home.php:292
  571. msgid "<em>Unlisted:</em> identical to the Public post, except that it will not appear on the Local and Federated Timelines. It will still be readable by anyone on your profile. <em>Unlisted</em> posts are marked with an open padlock icon."
  572. msgstr ""
  573. #: web/site/home.php:293
  574. msgid "An icon depicting a closed padlock."
  575. msgstr ""
  576. #: web/site/home.php:293
  577. #, fuzzy
  578. msgid "<em>Followers only:</em> your post will only be readable by your followers and those who you may mention. To their eyes it will appear as a Public post, except for the icon depicting a closed padlock."
  579. msgstr "<em>Для подписчиков</em>: ваши посты всё ещё полупубличны, потому что его увидят только ваши подписчики. Для них он выглядит как обычный публичный пост. Посты <em>для подписчиков</em> можно распознать по значку закрытого замка."
  580. #: web/site/home.php:294
  581. msgid "An icon depicting a letter envelope."
  582. msgstr ""
  583. #: web/site/home.php:294
  584. msgid "<em>Mentioned people only:</em> your post will be readable only by those accounts you mentioned in it. These posts, also called “Private messages”, “Direct messages” or “DM”, are marked by an icon depicting a letter envelope."
  585. msgstr ""
  586. #: web/site/home.php:296
  587. #, fuzzy
  588. msgid "Remember, however, that Mastodon is designed primarily to circulate what you write and generate discussion, not for privacy: technically, those who administer your Instance have the ability to read everything you write, including direct messages, just as they do on large commercial social networks."
  589. msgstr "В любом случае помните, что Mastodon создан, чтобы подтолкнуть к взаимодействию, а не к приватности – администраторы вашего инстанса могут читать все ваши сообщения, включая прямые, как и в любой другой крупной социальной сети."
  590. #: web/site/home.php:297
  591. #, fuzzy
  592. msgid "For exchanging encrypted and secure messages there are other, specific platforms."
  593. msgstr "Для шифрованной переписки есть другие, более специализированные платформы."
  594. #: web/site/home.php:302
  595. msgid "If you want to introduce your followers to someone they may not know yet, or suggest them to read a <a href=\"#PostPrivacy\">Public or Unlisted</a> post (also known as a “toot”, in Mastodon jargon), you can reblog it (this action, in Mastodon jargon, is also known as a “boost”), or you can mention in a reply to it the addresses of those you think might be interested."
  596. msgstr ""
  597. #: web/site/home.php:303
  598. msgid "You can also cite a post by copying its URL (see the image below) and pasting it into a new post of yours, but this method, although it gives others the same opportunity to read the linked post as the methods described above, makes it less easy for them to interact with the post and the person who wrote it."
  599. msgstr ""
  600. #: web/site/home.php:304
  601. msgid "Note that all of these actions are possible or make sense only with <a href=\"#PostPrivacy\">Public or Unlisted</a> posts (for example, posts with “Followers only” privacy can’t be reblogged, and if you link to them in another post, or suggest them with a reply mentioning those you think might be interested, they will still be visible only to followers of the person who wrote them)."
  602. msgstr ""
  603. #: web/site/home.php:305
  604. #, fuzzy
  605. msgid "A screenshot showing the “three dots” menu that is present on every post, with the “Copy link to status” entry highlighted."
  606. msgstr "Скриншот, показывающий меню “три точки” с выделенным пунктом “скопировать ссылку к статусу”."
  607. #: web/site/home.php:310
  608. msgid "When you write a post, Mastodon gives you the ability to set up a Content Warning (CW), that is an additional text field where you can write a custom warning that will be displayed above the content of the post, while the content itself will be hidden, and in order to view it one will need to tap or click on a button. In addition, when Content Warning is used, any attached media (images, audio, video) will be hidden behind an opaque box that one will be able to remove by clicking or tapping on it (it is also possible to hide media this way without setting a Content Warning)."
  609. msgstr ""
  610. #: web/site/home.php:311
  611. msgid "Content Warning is used with content that, while allowed by your Instance’s policy, might offend the sensibility of some people, for example violent images, depictions of nudity, text with spoilers or about topics that might be unpleasant for someone."
  612. msgstr ""
  613. #: web/site/home.php:312
  614. msgid "For example, if you want to write a post where you reveal part of the plot of a movie, you can turn on Content Warning and fill it with the movie title followed by “spoiler”."
  615. msgstr ""
  616. #: web/site/home.php:313
  617. msgid "Each Instance has its own rules regarding the use of Content Warning, so it is not rare to see them used in uncommon ways. For example, on some Instances Content Warning may be mandatory for selfies or pictures of food. This is because what is commonly accepted on one Instance may be considered a sensitive topic on another. In fact, it is not uncommon for an Instance to be <a href=\"#LimitingAndSuspending\">limited or suspended</a> by others because its users do not use Content Warning on certain types of content."
  618. msgstr ""
  619. #: web/site/home.php:314
  620. msgid "Each user can still set their preferences so that posts preceded by Content Warning and attached media are always shown."
  621. msgstr ""
  622. #: web/site/home.php:319
  623. msgid "On Mastodon and the Fediverse there are many people who are unable to get to know the content of an image, video, or audio without a textual description of it, for example, blind or visually impaired people who use screen readers to convert written text to synthesized speech, or deaf or partially hearing people, or people with other disabilities. There are five simple things that those who are able can do to make this content more accessible."
  624. msgstr ""
  625. #: web/site/home.php:321
  626. msgid "Before publishing a post with attached media, tap or click on the “Edit” link found on the preview of each attached media to add a textual description of what you see and-or hear, then read it by asking yourself if you can imagine, based on what you have written, the salient elements of the image, video, or audio; finally, remember to tap or click on the “Apply” button, if necessary."
  627. msgstr ""
  628. #: web/site/home.php:322
  629. msgid "When writing a hashtag, always use the “CamelCase,” which means capitalize the first character of each word (e.g., “#DogsOfMastodon” instead of “#dogsofmastodon”): capitalized initials make the hashtag more readable and, most importantly, help screen readers to separate words correctly and thus pronounce the hashtag comprehensibly."
  630. msgstr ""
  631. #: web/site/home.php:323
  632. msgid "Avoid random capitalization in what you write to parody poor or excited writers, as this prevents screen readers from functioning effectively."
  633. msgstr ""
  634. #: web/site/home.php:324
  635. msgid "If you happen to read the hashtag “#Alt4Me” in a post replying to a post with attached media, it means that a person who is unable to otherwise know their content wants a description of them. If you can, reply to the post with this hashtag by providing it."
  636. msgstr ""
  637. #: web/site/home.php:325
  638. msgid "If you come across a post with media without a description, even if it was not requested be proactive and respond with a description preceded by the hashtag “#Alt4You”, which will allow people who need it to find it more easily."
  639. msgstr ""
  640. #: web/site/home.php:327
  641. msgid "Note that it may also happen that the hashtag “#Alt4Me” is added directly into the original post by the person who wrote it because they cannot describe the attached media or are in difficulty to do so, for example because of some disability."
  642. msgstr ""
  643. #: web/site/home.php:328
  644. msgid "The text of this section is a reworking of the content of <a href=\"https://fedi.tips/how-do-i-make-posts-more-accessible-to-blind-people-on-mastodon-and-the-fediverse/\">this</a> and <a href=\"https://fedi.tips/how-do-i-make-posts-more-accessible-to-deaf-people-on-mastodon-and-the-fediverse/\">this</a> page from <a href=\"https://fedi.tips\">fedi.tips</a>, as it showed on Friday 27 October 2023."
  645. msgstr ""
  646. #: web/site/home.php:333
  647. msgid "If you want to move to another Instance, you can transfer to your new account the accounts that follow you, those you follow, the list of those you have muted or blocked, the list of Instances you have blocked, and your bookmarks. Currently, however, you cannot transfer your posts."
  648. msgstr ""
  649. #: web/site/home.php:334
  650. msgid "Please see <a href=\"https://docs.joinmastodon.org/user/moving/\">the official guide</a> for an explanation of these possibilities."
  651. msgstr ""
  652. #: web/site/home.php:339
  653. msgid "Currently, on Mastodon, there is no feature analogous to Twitter’s “Retweet and comment”."
  654. msgstr ""
  655. #: web/site/home.php:340
  656. msgid "<a href=\"https://blog.joinmastodon.org/2018/07/cage-the-mastodon/\">This lack was intentional</a>, because “Retweet and comment” is mostly used to create disruption, generate controversy, and harass those who have written a post without discussing it directly. While it’s true that this feature can also be used in good ways, for example to advise someone of an ongoing discussion they may be interested in, the same can be done in <a href=\"#SharingPosts\">other ways</a> that are less likely to generate arguments."
  657. msgstr ""
  658. #: web/site/home.php:341
  659. msgid "Unfortunately, however, the development team seems to have changed its mind, and <a href=\"https://joinmastodon.org/roadmap\">the implementation of a “Quote posts” function, similar to “Retweet and comment”, is planned</a>."
  660. msgstr ""
  661. #: web/site/home.php:342
  662. msgid "You can read more about why we dislike this feature to come in our <a href=\"#Critique\">Critique of Mastodon development team’s politics</a>."
  663. msgstr ""
  664. #: web/site/home.php:351
  665. msgid "Mastodon is known to be a platform where there is no room for harassment and trolling, not because there is none (it is impossible) but because its structure and the tools it provides allow for extremely efficient moderation and quick interventions against malicious people or Instances. In addition to the technical tools, it is the communities themselves who frequent the Instances that actively collaborate in keeping their network a livable environment! Different communities help each other by alerting others when they detect malicious behavior from an account, or when they identify Instances run by groups that spread hate content and intolerance, or that do not have efficient enough moderation. Since each Instance is moderated by different people, the relationship between those who frequent it and those who moderate it is much closer than in large and centralized commercial social networks."
  666. msgstr ""
  667. #: web/site/home.php:352
  668. msgid "It is important, however, to remember that each Instance is a separate entity with its own independent policy, and that moderation is always a political action, even when it claims to follow a policy of cool impartiality, that in reality is always in defense of the <em>status quo</em>."
  669. msgstr ""
  670. #: web/site/home.php:357
  671. #, fuzzy
  672. msgid "If those who administer Instance 1 <em>limit</em> Instance 2, all accounts on Instance 2 and all their posts will be hidden from Instance 1, but accounts on Instance 1 will still be able to interact with those they are already following on Instance 2, and vice-versa."
  673. msgstr "Если администрация инстанса1 <em>блокирует</em> инстанс2, тогда пользователи инстанса1 не могут блокировать с пользователями инстанса2."
  674. #: web/site/home.php:358
  675. #, fuzzy
  676. msgid "If those who administer Instance 1 <em>suspend</em> Instance 2, people who have their accounts on Instance 1 will no longer be able to interact with those on Instance 2, and vice-versa."
  677. msgstr "Если администрация инстанса1 <em>блокирует</em> инстанс2, тогда пользователи инстанса1 не могут блокировать с пользователями инстанса2."
  678. #: web/site/home.php:359
  679. msgid "Basically, <em>suspension</em> is applied to those Instances that are considered to be banned outright, for example because they spread racist content, while <em>limitation</em> (that in older Mastodon versions was called <em>silencing</em>) is used for those Instances that are frowned upon or objectionable, for example because they are full of bots, or because they spread content bordering the limiting Instance’s policy. Those in charge of moderation, of course, can also <em>limit</em> or <em>suspend</em>, on their Instance, individual accounts frome their own or any other Instance."
  680. msgstr ""
  681. #: web/site/home.php:360
  682. msgid "Similarly, any user from their own account can <em>mute</em> (the equivalent of <em>limiting</em>) or <em>block</em> (the equivalent of <em>suspension</em>) any other account, thus ensuring that they will no longer see posts coming from the other account and, in the case of <em>blocking</em>, preventing the other account from mentioning their own and receiving and reading their posts. Any user can also <em>block</em> entire Instances, to avoid any interaction with them and the accounts they host."
  683. msgstr ""
  684. #: web/site/home.php:369
  685. msgid "All the Mastodon Instances that together form the entire “Mastodon Galaxy” are part of something much bigger called the Fediverse."
  686. msgstr ""
  687. #: web/site/home.php:370
  688. msgid "Besides Mastodon, in fact, there are many other federated, <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software\">Free and Open Source</a> platforms using the same common protocol, <a href=\"https://activitypub.rocks\">ActivityPub</a>. Some of them, like <a href=\"https://pleroma.social\">Pleroma</a> and <a href=\"https://misskey-hub.net\">Misskey</a>, are also similar to Twitter, but others are very different."
  689. msgstr ""
  690. #: web/site/home.php:372
  691. #, fuzzy
  692. msgid "<a href=\"https://pixelfed.org\">Pixelfed</a> is similar to Instagram;"
  693. msgstr "<a href=\"https://pinafore.social\">Pinafore</a>: упрощённый фронтенд Mastodon"
  694. #: web/site/home.php:373
  695. #, fuzzy
  696. msgid "<a href=\"https://joinpeertube.org\">PeerTube</a> is similar to YouTube;"
  697. msgstr "<a href=\"https://pinafore.social\">Pinafore</a>: упрощённый фронтенд Mastodon"
  698. #: web/site/home.php:374
  699. #, fuzzy
  700. msgid "<a href=\"https://friendi.ca\">Friendica</a> is similar to Facebook;"
  701. msgstr "<a href=\"https://pinafore.social\">Pinafore</a>: упрощённый фронтенд Mastodon"
  702. #: web/site/home.php:375
  703. #, fuzzy
  704. msgid "<a href=\"https://www.funkwhale.audio\">Funkwhale</a> is similar to SoundCloud;"
  705. msgstr "<a href=\"https://pinafore.social\">Pinafore</a>: упрощённый фронтенд Mastodon"
  706. #: web/site/home.php:376
  707. #, fuzzy
  708. msgid "<a href=\"https://writefreely.org\">WriteFreely</a> is a blogging platform;"
  709. msgstr "<a href=\"https://pinafore.social\">Pinafore</a>: упрощённый фронтенд Mastodon"
  710. #: web/site/home.php:377
  711. msgid "<a href=\"https://hubzilla.org\">Hubzilla</a> is a powerful multifunctional platform."
  712. msgstr ""
  713. #: web/site/home.php:379
  714. msgid "And <a href=\"https://en.wikipedia.org/wiki/Fediverse\">there are more...</a>"
  715. msgstr ""
  716. #: web/site/home.php:380
  717. msgid "All of these platforms, like Mastodon, don’t have a unique central server, but are “Galaxies” of many independent Instances: there is no “main” or “official” Friendica Instance, you can choose among different Pixelfed Instances, and so on. And all of these platforms (“Galaxies”) interact with each other, forming the Fediverse."
  718. msgstr ""
  719. #: web/site/home.php:381
  720. msgid "What does that mean? Well, imagine that you could directly receive Facebook statuses on Twitter, or even liking and commenting a YouTube video using your Tumblr account: that’s what the Fediverse is! You have a Pixelfed account? Ok, I don’t use Pixelfed but I can follow you from Mastodon! A friend of mine doesn’t like Mastodon and prefers the more Facebook-like Friendica instead? No problem: he can follow me from Friendica and we can both write to and interact with each other, while staying each one on the platform that we prefer!"
  721. msgstr ""
  722. #: web/site/home.php:382
  723. msgid "Remember, however, that the Fediverse is constantly evolving and therefore not everything always works right already. Some things may work differently than you would like, and the people carrying out their development may not be able to fix them on the fly, or to add features that you prioritize over others. Work is in progress, in short, and so it is not surprising that you will have to make some compromises."
  724. msgstr ""
  725. #: web/site/home.php:383
  726. msgid "The logos of many FOSS social network platforms before a background representing a universe (the Fediverse)."
  727. msgstr ""
  728. #: web/site/home.php:388
  729. msgid "Most commercial social platforms are centralized. This means that for each of them there is a single central authority that manages and controls everything technically, legally, and commercially, and that sets a single policy for all of its users."
  730. msgstr ""
  731. #: web/site/home.php:389
  732. msgid "If you want to interact with a Twitter account, for example, you have no other way but to open an account on twitter.com yourself, accepting its terms and conditions."
  733. msgstr ""
  734. #: web/site/home.php:390
  735. msgid "A graphical representation of a centralized network: in the center is the Twitter logo surrounded by many dots, each of which represents a user and is connected to the central logo by straight line segments."
  736. msgstr ""
  737. #: web/site/home.php:391
  738. msgid "Mastodon, on the other hand, is a galaxy of independent, decentralized social networks called Instances, each with its own server, community, policy and terms of service."
  739. msgstr ""
  740. #: web/site/home.php:392
  741. msgid "A graphical representation of four decentralized networks: four Mastodon logos, representing as many Instances, each surrounded by some dots representing users, that are connected to the logo they surround by straight line segments."
  742. msgstr ""
  743. #: web/site/home.php:393
  744. msgid "But Mastodon is also federated! This means that all of these social networks can interact with each other (though they are not obliged to)."
  745. msgstr ""
  746. #: web/site/home.php:394
  747. msgid "A graphical representation of a federated social network: there are four Mastodon logos, representing as many Instances, each surrounded by some dots representing users, that are connected to the logo they surround by straight line segments. Each Mastodon logo is also connected to each other by a curved line segment."
  748. msgstr ""
  749. #: web/site/home.php:399
  750. msgid "A newly created Instance is open to connections with other Instances, but is not immediately connected (“federated”) with any of them, so initially people using it will only be able to interact among themselves."
  751. msgstr ""
  752. #: web/site/home.php:400
  753. msgid "Graphical representation of the Mastodon Galaxy. Several Mastodon logos represent individual Instances. They are in scattered locations and of different sizes. Some are connected with others (connections are represented by lines), forming three separate networks. In one corner is an Instance separate from all others and named “My Instance”."
  754. msgstr ""
  755. #: web/site/home.php:401
  756. msgid "The moment a person on your Instance creates a connection with a person on another Instance or vice-versa (more on how this happens later), all the people using the same Instance as you will be able to interact with the person on the other Instance."
  757. msgstr ""
  758. #: web/site/home.php:402
  759. msgid "Same graphical representation as in the previous image. Now, however, from “My Instance” starts a previously absent line that connects it to one of the Instances that is part of one of the three already described networks."
  760. msgstr ""
  761. #: web/site/home.php:403
  762. msgid "The person on the other Instance reblogs and interacts with the posts of other people they are in contact with, whether they are on your Instance or others. All these interactions are visible to people who, from your Instance, are followers of the person on the other; these people, in turn, can take part in these interactions and create new ones. Thus the number of connections between previously unknown people and Instances begins to grow (this is what federating means)."
  763. msgstr ""
  764. #: web/site/home.php:404
  765. msgid "Same graphical representation as in the previous image. Now, however, many lines depart from “My Instance” that connect it to all the Instances in the network that the Instance with which the first connection occurred is part of. The other two networks remain separate."
  766. msgstr ""
  767. #: web/site/home.php:405
  768. msgid "Any user of any Instance can create a new connection with any other Instance."
  769. msgstr ""
  770. #: web/site/home.php:406
  771. msgid "Same graphical representation as in the previous image. Now, however, “My Instance” is part of the network with which it had begun to federate, and even more lines connect it to other Instances in that network. At its edge, however, a line representing a connection links a small Instance of the network we are now part of with an Instance that is part of one of the two previously isolated networks."
  772. msgstr ""
  773. #: web/site/home.php:407
  774. msgid "Basically, the more you interact with people who are on other Instances, the larger the network of your Instance becomes, until it forms a giant federated network consisting of a huge number of independent Instances. Your Instance’s federated network, however, will probably never cover the entire Mastodon Galaxy, but only a part of it. How far it will stretch depends on how active the people on your Instance are: the more connections you make with different and distant Instances, the wider your network will be."
  775. msgstr ""
  776. #: web/site/home.php:408
  777. msgid "The network we are now a part of has merged with the one with which, in the previous image, a first connection was made, and in fact two of the three initial networks have become one giant whole of which “My Instance” is also a part. The third network still remains isolated."
  778. msgstr ""
  779. #: web/site/home.php:409
  780. msgid "If your Instance <a href=\"#LimitingAndSuspending\">suspends</a> one of the Instances it came in contact with, the other connections still remain and the other Instances will still be able to interact with the one your Instance <a href=\"#LimitingAndSuspending\">suspended</a>."
  781. msgstr ""
  782. #: web/site/home.php:410
  783. msgid "Within the large network that has formed, of which “My Instance” is now an integral part, one of the lines connecting it to the other Instances is now gray in color and, halfway along its length, has an “X” superimposed, representing the interruption of the connection with one of the other Instances. All other lines representing links between the other Instances remain unchanged. The third network still remains isolated."
  784. msgstr ""
  785. #: web/site/home.php:411
  786. msgid "Notice that some Instances may form completely separate and “parallel” networks. This may happen because these Instances have been <a href=\"#LimitingAndSuspending\">suspended</a> by a large number of other Instances, or because no connection has yet been made. These Instances are also part of the Mastodon Galaxy, but they occupy a different and distant part of it. They are not part of “our” federated network, but of a separate, different, autonomous and independent network."
  787. msgstr ""
  788. #: web/site/home.php:412
  789. msgid "And it doesn’t stop there: the same concepts we have just seen apply to all the platforms in the Fediverse! Your Mastodon Instance can connect not only with people from other Mastodon Instances, but also with people using Pleroma, Friendica, Pixelfed, PeerTube, and so on. Can you imagine how wide and varied the federated network of each Instance can be? ;-)"
  790. msgstr ""
  791. #: web/site/home.php:417
  792. msgid "On commercial and centralized social networks everything is done while staying within them, never leaving the gates of the platform."
  793. msgstr ""
  794. #: web/site/home.php:418
  795. #, php-format
  796. msgid "On Mastodon and the other Fediverse platforms things work differently: your own and your Instance’s federated network grow with the reblog mechanism (for example, when you follow an account that reblogs some posts from another account that you’ve never seen before, and you decide to follow the latter too, and so on), that doesn’t require you to leave your Instance, but they can grow by many other means: anyone can discover new and interesting Instances, accounts and posts by checking dedicated online resources (like <a href=\"instances/%s\">our Instances search engine</a> and those you can find on <a href=\"links/%s\">our Links page</a>), or by browsing the web outside Mastodon, reading blogs and magazines and having real-life interactions. Just as in real life, those who explore allow boundaries to be expanded faster!"
  797. msgstr ""
  798. #: web/site/home.php:419
  799. msgid "Keep in mind, moreover, that most Mastodon Instances, as well as most Instances of other Fediverse platforms, allow you, from their web homepages and without having an account, to read their <a href=\"#ThreeTimelines\">Local Timeline</a>, simply by tapping or clicking on the “Live feeds” link (“See what’s happening,” on Instances with older versions of Mastodon), and to browse their “Profiles directory,” where the profiles of the users who have opted-in it are shown, by accessing it from the corresponding link."
  800. msgstr ""
  801. #: web/site/home.php:420
  802. msgid "A screenshot showing the web homepage of a Mastodon Instance with the “Live feeds” and “Profiles directory” links highlighted by two red circles."
  803. msgstr ""
  804. #: web/site/home.php:421
  805. msgid "If during your explorations outside your Instance you find an interesting account or post from a federated platform, all you need to do to be able to interact with it is to copy its URL, paste it into your Instance’s search box, and press “Enter”. This will show the account’s profile, that you’ll be able to follow, or the post, that you’ll be able to “star”, reblog or reply to."
  806. msgstr ""
  807. #: web/site/home.php:422
  808. msgid "Depending on whether you are accessing Mastodon from a browser or an App, this feature may slightly change. It may also vary a bit depending on which Fediverse platforms are involved. Some platforms have special buttons to help you with the operation. One of them, for example, is PeerTube. If you want to share a video post from a PeerTube Instance you are visiting, you can do so from your browser by clicking or tapping the “Share” button under the video itself."
  809. msgstr ""
  810. #: web/site/home.php:423
  811. #, fuzzy
  812. msgid "A screenshot showing a PeerTube Instance with the “Share” button of a video post highlighted by a red circle that is pointed to by a red arrow."
  813. msgstr "Скриншот, показывающий меню “три точки” с выделенным пунктом “скопировать ссылку к статусу”."
  814. #: web/site/home.php:424
  815. msgid "This will bring up a popup from which you can easily copy the URL of the video post by clicking or tapping the “Copy” button."
  816. msgstr ""
  817. #: web/site/home.php:425
  818. #, fuzzy
  819. msgid "A screenshot showing a popup with the “Copy” button highlighted by a red arrow."
  820. msgstr "Скриншот, показывающий меню “три точки” с выделенным пунктом “скопировать ссылку к статусу”."
  821. #: web/site/home.php:426
  822. msgid "At this point you can go to your Mastodon Instance website, paste the copied URL into its search box, and press “Enter”: the video post will appear inside Mastodon, and from there you’ll be able to “star” it, reblog it, comment on it, and to follow the PeerTube account that posted it."
  823. msgstr ""
  824. #: web/site/home.php:427
  825. msgid "A screenshot showing the main page of a Mastodon Instance website, with the search box filled with the URL of the video post that is already showing prominently in the center column of the page itself."
  826. msgstr ""
  827. #: web/site/home.php:428
  828. msgid "Or, if you just want to follow the account that the video was posted from, you can directly tap or click on the “Subscribe” button on PeerTube."
  829. msgstr ""
  830. #: web/site/home.php:429
  831. #, fuzzy
  832. msgid "A screenshot showing a video post page on a PeerTube Instance website with the “Subscribe” button highlighted by a red circle to which an equally red arrow points."
  833. msgstr "Скриншот, показывающий меню “три точки” с выделенным пунктом “скопировать ссылку к статусу”."
  834. #: web/site/home.php:430
  835. msgid "This will cause a popup menu to appear from which you’ll be able to subscribe to the PeerTube account (i.e., follow it) by entering your <a href=\"#MastodonAddress\">Mastodon Address</a>."
  836. msgstr ""
  837. #: web/site/home.php:431
  838. msgid "A screenshot showing the popup menu that appears when clicking on the “Subscribe” button on the page of a video post on a PeerTube Instance’s website."
  839. msgstr ""
  840. #: web/site/home.php:432
  841. msgid "Once you enter your <a href=\"#MastodonAddress\">Mastodon Address</a> and press “Enter,” a new browser tab will open and, if you are not already logged in to your Mastodon Instance, you will be asked to do so, otherwise you will be directly shown a page from which you can confirm that you want to follow the PeerTube account from your Mastodon account."
  842. msgstr ""
  843. #: web/site/home.php:433
  844. #, fuzzy
  845. msgid "A screenshot showing a Mastodon follow confirmation page."
  846. msgstr "Три скриншота, на которых на смартфонах запущен Mastodon."
  847. #: web/site/home.php:434
  848. msgid "That’s it! Now you can open the PeerTube account profile you just followed on your Mastodon Instance website, or on the PeerTube Instance website, or simply close this browser tab."
  849. msgstr ""
  850. #: web/site/home.php:435
  851. msgid "A screenshot showing a Mastodon Instance website page with a message confirming that you are following the PeerTube account, a “Go to web” button that you can use to open in Mastodon the profile of the PeerTube account you just followed, a “Show the user’s profile” button that you can use to open it on its PeerTube Instance, and a message adding that you can also close that browser tab."
  852. msgstr ""
  853. #: web/site/home.php:439
  854. msgid "A critique of Mastodon<br />development team’s politics"
  855. msgstr ""
  856. #: web/site/home.php:443
  857. msgid "Mastodon is by far the most widely used platform in the Fediverse (<a href=\"https://fedidb.org/network\">fedidb.org</a> reports today, November 3, 2023, almost 12,000 active servers, while the second most used platform, Misskey, only has approximately 1,200), and it shares with the other Fediverse platforms some features that make it much better than commercial social networks: the absence of profiling tools, giving also greater privacy, and the structural unfitness for its use in advertising by large companies."
  858. msgstr ""
  859. #: web/site/home.php:444
  860. msgid "At the same time, however, its development team pursues in many ways a strong centralization of the Fediverse toward the already most populated Mastodon servers and in particular toward mastodon.social, the Instance it directly manages, for example by means of the design of the the official Apps’ welcome screen, which does everything possible to drive new users to sign up on mastodon.social, by presenting the most populated Instances on top of <a href=\"https://joinmastodon.org/servers\">this page</a>, with mastodon.social in the lead, and by carefully avoiding the introduction into the web frontend and the official Apps of simple features that are already present in other compatible clients, such as the ability to follow the <a href=\"#ThreeTimelines\">Local Timelines</a> of Instances other than one’s own, and to discover new Instances from one’s own account: features that would by themselves reduce, and only for those who so wish, the differences between using a small-medium sized Instance and a large one. All of this has greatly contributed to determining the current situation, in which <a href=\"basket/MastodonInstancesByUsersCount.ods\">the 1% of the most populated Mastodon Instances hosts 86% of Mastodon users, and the 10% hosts 99%</a>, and the situation is even worse when one looks at <a href=\"basket/MastodonInstancesByActiveUsersCount.ods\">the data regarding the active users</a>; and this is problematic because, as <a href=\"#MediumAndSmallIsBetter\">we have written in our Guide since the very beginning</a>, such large Instances are difficult to moderate, and therefore social harassment dynamics that are typical of commercial social networks easily recreate there, and because those who run them gain a lot of power over too many people, and because a more distributed network made up of many small to medium-sized Instances is much more resistant than a network with this level of centralization."
  861. msgstr ""
  862. #: web/site/home.php:445
  863. msgid "Moreover, the implementation of content views such as <a href=\"#TrendingThings\">Trending Posts, Trending Hashtags, Trending News and Trending Accounts</a> introduces and reproduces in the Fediverse the competitive and meritocratic dynamics – with merit defined in essence by the popularity of a piece of content – that are typical of commercial social, and the same cumulative tendency whereby the content and accounts that they make most visible are much more likely to become even more so than others. Besides, although these views can be deactivated (with the regrettable exception of Trending Accounts, and only in bulk) by those who administer an Instance, they are active by default, and their possible deactivation, at present, produces a disadvantage for the Instances that enact it: in the official Apps, in fact, the corresponding subsections of the “Explore” section do not get hidden and remain empty, easily giving users, particularly new ones, the impression of an inactive, isolated, or malfunctioning Instance."
  864. msgstr ""
  865. #: web/site/home.php:446
  866. msgid "Finally, to make the current trend of reproducing commercial social network dynamics worse, the introduction of a feature similar to X/Twitter’s “Retweet and comment”, which just a few years ago Eugen Rochko, Mastodon’s main developer, <a href=\"https://blog.joinmastodon.org/2018/07/cage-the-mastodon/\">considered harmful and therefore declared he would not implement</a>, is looming: “Quote posts” are already <a href=\"https://joinmastodon.org/roadmap\">planned in Mastodon’s development roadmap</a> and will inevitably be used mainly, as is already the case on X/Twitter, to create disruption, generate controversy and harass the person who wrote a post without discussing it directly with them, while <a href=\"#SharingPosts\">recommending a post or an ongoing thread can already be done in other ways that are less prone to harassing usage</a>."
  867. msgstr ""
  868. #: web/site/home.php:447
  869. msgid "We think that in a social context that is culturally and materially increasingly marked by competition, centralization, and the inability to confront each other outside of these dynamics, which are pursued and advocated by all the big economic and political players through their media overpower, those who develop <a href=\"https://en.wikipedia.org/wiki/Free_and_open-source_software\">FOSS</a> social networks should avoid providing even only optional features such as Trending Post, Hashtags, News, Accounts, and the “Quote posts” to come, and to pursue in their turn, in their small context, the centralization and deterioration of social interactions for their own benefit; all the more so when they claim and pride themselves on pursuing instead cooperation, equal confrontation and decentralization."
  870. msgstr ""
  871. #: web/site/index.php:81 web/site/index.php:109 web/site/stats.php:41
  872. msgid "Guide"
  873. msgstr ""
  874. #: web/site/index.php:82 web/site/index.php:123 web/site/instances.php:78
  875. #: web/site/stats.php:42
  876. #, fuzzy
  877. msgid "Instances"
  878. msgstr "Инстансы"
  879. #: web/site/index.php:83 web/site/index.php:144 web/site/stats.php:44
  880. msgid "Links"
  881. msgstr ""
  882. #: web/site/index.php:84 web/site/index.php:153 web/site/stats.php:45
  883. msgid "About"
  884. msgstr "О нас"
  885. #: web/site/index.php:85 web/site/index.php:163 web/site/instances.php:798
  886. #: web/site/stats.php:46
  887. msgid "Statistics"
  888. msgstr ""
  889. #: web/site/index.php:86 web/site/index.php:175 web/site/stats.php:47
  890. msgid "Contribute"
  891. msgstr ""
  892. #: web/site/index.php:89
  893. msgid "Language"
  894. msgstr ""
  895. #: web/site/index.php:110
  896. msgid "A thorough introduction to Mastodon"
  897. msgstr ""
  898. #: web/site/index.php:124
  899. #, fuzzy
  900. msgid "Mastodon instances"
  901. msgstr "Mastodon на смартфонах"
  902. #: web/site/index.php:134 web/site/instances.php:629 web/site/stats.php:43
  903. #: web/site/users.php:70 web/site/users.php:531
  904. msgid "Users"
  905. msgstr ""
  906. #: web/site/index.php:135
  907. msgid "Directory of Mastodon users"
  908. msgstr ""
  909. #: web/site/index.php:145
  910. msgid "Useful Mastodon and Fediverse related links"
  911. msgstr ""
  912. #: web/site/index.php:154
  913. msgid "Info about Mastodon Help’s authors, contributors, license"
  914. msgstr ""
  915. #: web/site/index.php:164
  916. #, fuzzy
  917. msgid "Statistics about Mastodon Help"
  918. msgstr "Mastodon Help"
  919. #: web/site/index.php:187 web/site/index.php:188
  920. #, fuzzy
  921. msgid "Resource not found"
  922. msgstr "страница не найдена"
  923. #: web/site/index.php:212 web/site/index.php:213 web/site/instances.php:56
  924. #: web/site/stats.php:29 web/site/users.php:238
  925. msgid "Couldn’t connect to database: "
  926. msgstr ""
  927. #: web/site/instances.php:73
  928. msgid "Go to search"
  929. msgstr ""
  930. #: web/site/instances.php:88 web/site/users.php:100
  931. #, fuzzy
  932. msgid "Show introduction"
  933. msgstr "Введение"
  934. #: web/site/instances.php:93 web/site/users.php:106
  935. #, fuzzy
  936. msgid "Hide introduction"
  937. msgstr "Введение"
  938. #: web/site/instances.php:116
  939. #, fuzzy
  940. msgid "Show Threads moderation statistics"
  941. msgstr "Домогания и модерация"
  942. #: web/site/instances.php:120
  943. #, fuzzy
  944. msgid "Hide Threads moderation statistics"
  945. msgstr "Домогания и модерация"
  946. #: web/site/instances.php:140 web/site/instances.php:418 web/site/users.php:324
  947. msgid "Random, recommended first"
  948. msgstr ""
  949. #: web/site/instances.php:142 web/site/instances.php:393 web/site/users.php:343
  950. msgid "Random"
  951. msgstr ""
  952. #: web/site/instances.php:218
  953. msgid "<div id=\"help\" class=\"hiddiv\"><p class=\"intro\">This search engine for Mastodon instances is based on a database that gets updated by our crawler every night (CET).</p><p class=\"intro\">Instances are considered new for 30 days after they are discovered.</p><p class=\"intro\">When an instance has not responded to our daily checks for more than 30 days it is no longer considered in statistics and searches and it gets checked only on the first of the month, rather than daily, until it possibly responds again, or until its last succesful check is one year old; in this latter case, from that moment it gets checked only on the first day of each year.</p><p class=\"intro\">“Random ordering” of results varies daily.</p><p class=\"intro\">Default search criteria reflect our fondness for a decentralized and egalitarian Fediverse and our attempt to exclude instances accepting fascist, racist, sexist, ableist or sovereignist contents by marking them as noxious.</p><p class=\"intro\">To report any issue, technical or non-technical, or to suggest instances to exclude according to the above criteria, please contact us at our e-mail address, <span class=\"magt\">masthelp[at]insicuri.net</span>.</p></div>"
  954. msgstr ""
  955. #: web/site/instances.php:219
  956. #, php-format
  957. msgid "<p class=\"intro\">We currently count <span class=\"statd\">%s</span> Mastodon instances, with <span class=\"statd\">%s</span> users (<span class=\"statd\">%s</span> active during last month) and <span class=\"statd\">%s</span> published statuses. [<a id=\"msswitch\" onclick=\"swmetastats();\" style=\"cursor:pointer;\">Show Threads moderation statistics</a>]</p>"
  958. msgstr ""
  959. #: web/site/instances.php:276
  960. #, fuzzy
  961. msgid "Threads moderation statistics"
  962. msgstr "Домогания и модерация"
  963. #: web/site/instances.php:278
  964. msgid "These statistics on the status of Threads moderation are based on the list of moderated instances, which is accessible only on some instances, and on the list of instances adhering to the <a href=\"https://fedipact.online/\" target=\"_blank\">Anti-Meta Fedi Pact</a>."
  965. msgstr ""
  966. #: web/site/instances.php:280
  967. #, fuzzy
  968. msgid "Statistics on the state of Threads moderation<br>related to instances on which it is known"
  969. msgstr "Домогания и модерация"
  970. #: web/site/instances.php:282 web/site/instances.php:301
  971. msgid "Instances suspending Threads"
  972. msgstr ""
  973. #: web/site/instances.php:283 web/site/instances.php:302
  974. msgid "Instances limiting Threads"
  975. msgstr ""
  976. #: web/site/instances.php:284 web/site/instances.php:303
  977. msgid "Instances suspending or limiting Threads"
  978. msgstr ""
  979. #: web/site/instances.php:285 web/site/instances.php:304
  980. msgid "Instances not suspending or limiting Threads"
  981. msgstr ""
  982. #: web/site/instances.php:291 web/site/instances.php:311
  983. msgid "Users on instances suspending Threads"
  984. msgstr ""
  985. #: web/site/instances.php:292 web/site/instances.php:312
  986. msgid "Users on instances limiting Threads"
  987. msgstr ""
  988. #: web/site/instances.php:293 web/site/instances.php:313
  989. msgid "Users on instances suspending or limiting Threads"
  990. msgstr ""
  991. #: web/site/instances.php:294 web/site/instances.php:314
  992. msgid "Users on instances not suspending or limiting Threads"
  993. msgstr ""
  994. #: web/site/instances.php:299
  995. #, fuzzy
  996. msgid "Statistics on the state of Threads<br>moderation related to all instances."
  997. msgstr "Домогания и модерация"
  998. #: web/site/instances.php:305
  999. #, fuzzy
  1000. msgid "Instances whose Threads moderation status is unknown"
  1001. msgstr "Домогания и модерация"
  1002. #: web/site/instances.php:315
  1003. msgid "Users on instances whose Threads mod. status is unknown"
  1004. msgstr ""
  1005. #: web/site/instances.php:394
  1006. msgid "By users’ involvement (active users / users), descending"
  1007. msgstr ""
  1008. #: web/site/instances.php:395
  1009. msgid "By users’ involvement (active users / users), ascending"
  1010. msgstr ""
  1011. #: web/site/instances.php:396
  1012. msgid "By date and time of first sighting, descending"
  1013. msgstr ""
  1014. #: web/site/instances.php:397
  1015. msgid "By date and time of first sighting, ascending"
  1016. msgstr ""
  1017. #: web/site/instances.php:398 web/site/users.php:329
  1018. msgid "By number of users, descending"
  1019. msgstr ""
  1020. #. 'feat'=>array('t'=>_('Prima le consigliate'),'q'=>'Instances.Priority DESC'),
  1021. #. partecipazione: totusers/activeusers
  1022. #. 'part'=>array('t'=>_('Partecipazione (decr.)'),'q'=>'(Instances.UserCount / Instances.ActiveUsersMonth) ASC'),
  1023. #: web/site/instances.php:399 web/site/users.php:328
  1024. msgid "By number of users, ascending"
  1025. msgstr ""
  1026. #: web/site/instances.php:400 web/site/users.php:330
  1027. msgid "By number of active users, descending"
  1028. msgstr ""
  1029. #: web/site/instances.php:401
  1030. msgid "By number of active users, ascending"
  1031. msgstr ""
  1032. #: web/site/instances.php:402
  1033. msgid "By responsiveness to our checks, descending"
  1034. msgstr ""
  1035. #: web/site/instances.php:403
  1036. msgid "By responsiveness to our checks, ascending"
  1037. msgstr ""
  1038. #: web/site/instances.php:404
  1039. msgid "By available characters per post, descending"
  1040. msgstr ""
  1041. #: web/site/instances.php:405
  1042. msgid "By available characters per post, ascending"
  1043. msgstr ""
  1044. #: web/site/instances.php:406
  1045. msgid "Noxious first (switches off “Exclude noxious”)"
  1046. msgstr ""
  1047. #: web/site/instances.php:423
  1048. #, fuzzy
  1049. msgid "Search instances"
  1050. msgstr "Поиск штук"
  1051. #: web/site/instances.php:442 web/site/users.php:365
  1052. #, fuzzy
  1053. msgid "Search criteria"
  1054. msgstr "Поиск штук"
  1055. #: web/site/instances.php:443
  1056. #, fuzzy
  1057. msgid "Show instances where..."
  1058. msgstr "Поиск штук"
  1059. #: web/site/instances.php:445
  1060. msgid "Include only instances where the most used language is the one selected here"
  1061. msgstr ""
  1062. #: web/site/instances.php:445
  1063. msgid "Most used language is"
  1064. msgstr ""
  1065. #: web/site/instances.php:448
  1066. msgid "Any"
  1067. msgstr ""
  1068. #: web/site/instances.php:464
  1069. msgid "Include only instances whose URI, name or description (short or long) contains the specified expression"
  1070. msgstr ""
  1071. #: web/site/instances.php:464
  1072. msgid "URI, name or descriptions contain"
  1073. msgstr ""
  1074. #: web/site/instances.php:469
  1075. msgid "Include only instances which have at least this number of users [set to empty to disable this criterion]"
  1076. msgstr ""
  1077. #: web/site/instances.php:469
  1078. msgid "Users are at least"
  1079. msgstr ""
  1080. #: web/site/instances.php:473
  1081. msgid "Include only instances which have at most this number of users [set to empty to disable this criterion]"
  1082. msgstr ""
  1083. #: web/site/instances.php:473
  1084. msgid "Users are at most"
  1085. msgstr ""
  1086. #: web/site/instances.php:477
  1087. msgid "Include only instances which had at least this number of active users during the last 30 days [set to empty to disable this criterion]"
  1088. msgstr ""
  1089. #: web/site/instances.php:477
  1090. msgid "Active users are at least"
  1091. msgstr ""
  1092. #: web/site/instances.php:481
  1093. msgid "Include only instances on which the number of available characters per post is at least this [set to empty to disable this criterion]"
  1094. msgstr ""
  1095. #: web/site/instances.php:481
  1096. msgid "Max. chars per post are at least"
  1097. msgstr ""
  1098. #: web/site/instances.php:486 web/site/users.php:396
  1099. msgid "Exclude noxious instances"
  1100. msgstr ""
  1101. #: web/site/instances.php:486
  1102. msgid "Exclude if noxious"
  1103. msgstr ""
  1104. #: web/site/instances.php:493 web/site/users.php:403
  1105. msgid "Exclude instances which don’t accept new registrations"
  1106. msgstr ""
  1107. #: web/site/instances.php:493 web/site/users.php:403
  1108. msgid "Exclude if registrations are closed"
  1109. msgstr ""
  1110. #: web/site/instances.php:500
  1111. msgid "Include only instances which surely have Meta’s Threads *suspended*"
  1112. msgstr ""
  1113. #: web/site/instances.php:500
  1114. msgid "Include only if Threads is surely <i>suspended</i>"
  1115. msgstr ""
  1116. #: web/site/instances.php:507 web/site/users.php:410
  1117. msgid "Exclude instances on which admin approval is required for registration"
  1118. msgstr ""
  1119. #: web/site/instances.php:507 web/site/users.php:410
  1120. msgid "Exclude if registration requires approval"
  1121. msgstr ""
  1122. #: web/site/instances.php:514 web/site/users.php:417
  1123. msgid "Exclude instances which didn’t respond to last check"
  1124. msgstr ""
  1125. #: web/site/instances.php:514 web/site/users.php:417
  1126. msgid "Exclude if offline on last check"
  1127. msgstr ""
  1128. #: web/site/instances.php:521 web/site/users.php:433
  1129. msgid "Order of results"
  1130. msgstr ""
  1131. #: web/site/instances.php:533 web/site/users.php:445
  1132. msgid "Search"
  1133. msgstr ""
  1134. #: web/site/instances.php:537
  1135. msgid "Set criteria to include all instances"
  1136. msgstr ""
  1137. #: web/site/instances.php:541
  1138. msgid "Reset to default criteria"
  1139. msgstr ""
  1140. #: web/site/instances.php:609 web/site/instances.php:618
  1141. #: web/site/instances.php:624 web/site/users.php:513 web/site/users.php:521
  1142. #: web/site/users.php:526
  1143. #, fuzzy
  1144. msgid "Go to instance"
  1145. msgstr "Mastodon на смартфонах"
  1146. #: web/site/instances.php:610 web/site/users.php:514
  1147. msgid "Direct link to this instance’s card"
  1148. msgstr ""
  1149. #. if (!is_null($row['Priority'])) $out.='<img src="'.$prepath.'imgs/featured-it.svg" class="ifeat">';
  1150. #: web/site/instances.php:620 web/site/users.php:523
  1151. msgid "Recommended"
  1152. msgstr ""
  1153. #: web/site/instances.php:621
  1154. msgid "It seems like this instance’s server thumbnail’s URL points to a non existent file. This is usually easily fixable by the instance’s admin(s) by uploading again the image to their server. Note that the change won’t be displayed here before the nightly automatic update of this instance’s infos occurs."
  1155. msgstr ""
  1156. #: web/site/instances.php:624 web/site/users.php:526
  1157. msgid "Name"
  1158. msgstr ""
  1159. #. $out.='<div><span class="ilab">'._('Consigliata').'</span> ';
  1160. #. (!is_null($row['Priority'])) ? $out.='<span class="ivgood">'._('Si!').'</span>' : $out.=_('No');
  1161. #. $out.='</div>'.N;
  1162. #: web/site/instances.php:628 web/site/users.php:530
  1163. msgid "Languages"
  1164. msgstr ""
  1165. #: web/site/instances.php:630 web/site/users.php:532
  1166. msgid "Active users (last month)"
  1167. msgstr ""
  1168. #: web/site/instances.php:631 web/site/users.php:533
  1169. msgid "Active users (last six months)"
  1170. msgstr ""
  1171. #: web/site/instances.php:632
  1172. msgid "Characters per post (max)"
  1173. msgstr ""
  1174. #: web/site/instances.php:638 web/site/users.php:534
  1175. #, fuzzy
  1176. msgid "Known instances"
  1177. msgstr "Mastodon на смартфонах"
  1178. #. can't currently happen, but we put it there in any event
  1179. #. "Not available" in singular form - translators, please omit "{singular}" from translation,
  1180. #. it's there just to diversify this "Not available" from the next one
  1181. #: web/site/instances.php:643 web/site/instances.php:650
  1182. #: web/site/instances.php:666 web/site/instances.php:674
  1183. #: web/site/instances.php:719 web/site/instances.php:794
  1184. #: web/site/instances.php:816 web/site/instances.php:954 web/site/users.php:211
  1185. #: web/site/users.php:552 web/site/users.php:560 web/site/users.php:606
  1186. msgid "Not available{singular}"
  1187. msgstr ""
  1188. #: web/site/instances.php:645
  1189. msgid "Before"
  1190. msgstr ""
  1191. #: web/site/instances.php:645
  1192. msgid "We record this value only since"
  1193. msgstr ""
  1194. #: web/site/instances.php:649
  1195. msgid "First sight"
  1196. msgstr ""
  1197. #: web/site/instances.php:651
  1198. msgid "Last successful check"
  1199. msgstr ""
  1200. #: web/site/instances.php:652 web/site/users.php:544
  1201. msgid "Noxious"
  1202. msgstr ""
  1203. #: web/site/instances.php:653 web/site/users.php:545
  1204. msgid "Yes (see why below)"
  1205. msgstr ""
  1206. #: web/site/instances.php:653 web/site/instances.php:656 web/site/users.php:545
  1207. msgid "No"
  1208. msgstr ""
  1209. #: web/site/instances.php:655
  1210. msgid "New"
  1211. msgstr ""
  1212. #: web/site/instances.php:656
  1213. msgid "Yes!"
  1214. msgstr ""
  1215. #: web/site/instances.php:661 web/site/users.php:547
  1216. msgid "Software"
  1217. msgstr ""
  1218. #: web/site/instances.php:663 web/site/users.php:549
  1219. #, fuzzy
  1220. msgid "Registrations"
  1221. msgstr "Модерация"
  1222. #: web/site/instances.php:664 web/site/users.php:550
  1223. msgid "by admin approval"
  1224. msgstr ""
  1225. #: web/site/instances.php:668 web/site/users.php:554
  1226. msgid "Open"
  1227. msgstr ""
  1228. #: web/site/instances.php:670 web/site/users.php:556
  1229. #, fuzzy
  1230. msgid "Closed"
  1231. msgstr "Закрыть содержание"
  1232. #: web/site/instances.php:672 web/site/users.php:558
  1233. msgid "E-mail"
  1234. msgstr ""
  1235. #: web/site/instances.php:680
  1236. #, fuzzy
  1237. msgid "Meta’s Threads moderation"
  1238. msgstr "Домогания и модерация"
  1239. #: web/site/instances.php:682 web/site/instances.php:698
  1240. msgid "Threads is <i>suspended</i>"
  1241. msgstr ""
  1242. #: web/site/instances.php:682
  1243. msgid "according to the <a href=\"https://fedipact.online/\" target=\"_blank\">Anti-Meta Fedi Pact</a> list"
  1244. msgstr ""
  1245. #: web/site/instances.php:684
  1246. msgid "but it’s currently impossible to verify it because this instance’s list of moderated instances is not accessible"
  1247. msgstr ""
  1248. #: web/site/instances.php:686
  1249. msgid "but it appears to be <i>accessible</i>, instead"
  1250. msgstr ""
  1251. #: web/site/instances.php:686 web/site/instances.php:688
  1252. #: web/site/instances.php:690 web/site/instances.php:696
  1253. #: web/site/instances.php:698 web/site/instances.php:700
  1254. msgid "according to this instance’s list of moderated instances"
  1255. msgstr ""
  1256. #: web/site/instances.php:688
  1257. msgid "and also"
  1258. msgstr ""
  1259. #: web/site/instances.php:690
  1260. msgid "but it appears to be only <i>limited</i>, instead"
  1261. msgstr ""
  1262. #: web/site/instances.php:694
  1263. msgid "<i>Unknown</i> (this instance is not listed in the <a href=\"https://fedipact.online/\" target=\"_blank\">Anti-Meta Fedi Pact</a> list), and its list of moderated instances is not accessible"
  1264. msgstr ""
  1265. #: web/site/instances.php:696
  1266. msgid "Threads is neither <i>suspended</i> nor <i>limited</i>"
  1267. msgstr ""
  1268. #: web/site/instances.php:700
  1269. msgid "Threads is <i>limited</i>"
  1270. msgstr ""
  1271. #: web/site/instances.php:702
  1272. msgid "<i>Unknown value</i>"
  1273. msgstr ""
  1274. #: web/site/instances.php:702
  1275. msgid "please contact masthelp[at]insicuri.net"
  1276. msgstr ""
  1277. #: web/site/instances.php:706 web/site/users.php:566
  1278. msgid "Most used hashtags (last week)"
  1279. msgstr ""
  1280. #. "Not available" in plural form - translators, please omit "{plural}" from translation,
  1281. #. it's there just to diversify this "Not available" from the previous one
  1282. #: web/site/instances.php:714 web/site/instances.php:732
  1283. #: web/site/instances.php:759 web/site/instances.php:961 web/site/users.php:217
  1284. #: web/site/users.php:574
  1285. msgid "Not available{plural}"
  1286. msgstr ""
  1287. #: web/site/instances.php:719 web/site/users.php:579
  1288. msgid "Why we consider this instance noxious"
  1289. msgstr ""
  1290. #: web/site/instances.php:721 web/site/users.php:582
  1291. msgid "Short description"
  1292. msgstr ""
  1293. #: web/site/instances.php:722 web/site/users.php:583
  1294. #, fuzzy
  1295. msgid "Long description"
  1296. msgstr "Модерация"
  1297. #: web/site/instances.php:724
  1298. #, fuzzy
  1299. msgid "Instance rules"
  1300. msgstr "Инстансы"
  1301. #: web/site/instances.php:736
  1302. #, fuzzy
  1303. msgid "Moderated instances"
  1304. msgstr "Mastodon на смартфонах"
  1305. #: web/site/instances.php:736 web/site/instances.php:763
  1306. msgid "Each instance in this list is linked to our card only if it runs Mastodon and it is not dead."
  1307. msgstr ""
  1308. #: web/site/instances.php:738
  1309. msgid "limited"
  1310. msgstr ""
  1311. #: web/site/instances.php:738
  1312. msgid "suspended"
  1313. msgstr ""
  1314. #: web/site/instances.php:751
  1315. msgid "reason"
  1316. msgstr ""
  1317. #: web/site/instances.php:756 web/site/instances.php:782
  1318. msgid "None"
  1319. msgstr ""
  1320. #: web/site/instances.php:763
  1321. #, fuzzy
  1322. msgid "Instances certainly moderating this instance"
  1323. msgstr "Домогания и модерация"
  1324. #: web/site/instances.php:763
  1325. msgid "On many instances the list of instances they moderate is not public, so it is unlikely that this list is complete."
  1326. msgstr ""
  1327. #: web/site/instances.php:764
  1328. #, fuzzy
  1329. msgid "limitation"
  1330. msgstr "Модерация"
  1331. #: web/site/instances.php:764
  1332. msgid "suspension"
  1333. msgstr ""
  1334. #: web/site/instances.php:792
  1335. msgid "Opted out of search engines indexing"
  1336. msgstr ""
  1337. #: web/site/instances.php:795 web/site/users.php:585
  1338. #, fuzzy
  1339. msgid "Admin account"
  1340. msgstr "Аккаунт Mastodon"
  1341. #: web/site/instances.php:795 web/site/users.php:585
  1342. msgid "Date of creation"
  1343. msgstr ""
  1344. #: web/site/instances.php:795
  1345. msgid "Display name"
  1346. msgstr ""
  1347. #: web/site/instances.php:795
  1348. msgid "Bio"
  1349. msgstr ""
  1350. #: web/site/instances.php:801 web/site/users.php:591
  1351. msgid "Last 12 weeks activity"
  1352. msgstr ""
  1353. #: web/site/instances.php:805 web/site/users.php:595
  1354. msgid "totals:"
  1355. msgstr ""
  1356. #: web/site/instances.php:805 web/site/users.php:595
  1357. msgid "statuses"
  1358. msgstr ""
  1359. #: web/site/instances.php:805 web/site/users.php:595
  1360. msgid "logins"
  1361. msgstr ""
  1362. #: web/site/instances.php:805 web/site/users.php:595
  1363. #, fuzzy
  1364. msgid "registrations"
  1365. msgstr "Модерация"
  1366. #. initials for Statuses, Logins, Registrations
  1367. #: web/site/instances.php:814 web/site/users.php:604
  1368. msgid "S"
  1369. msgstr ""
  1370. #: web/site/instances.php:814 web/site/users.php:604
  1371. msgid "L"
  1372. msgstr ""
  1373. #: web/site/instances.php:814 web/site/users.php:604
  1374. msgid "R"
  1375. msgstr ""
  1376. #: web/site/instances.php:824 web/site/users.php:614
  1377. msgid "Last checks (green: OK; red: KO)"
  1378. msgstr ""
  1379. #: web/site/instances.php:831
  1380. msgid "Succesful checks"
  1381. msgstr ""
  1382. #: web/site/instances.php:847 web/site/users.php:637
  1383. msgid "Go to first page"
  1384. msgstr ""
  1385. #: web/site/instances.php:847 web/site/users.php:637
  1386. msgid "Go to previous page"
  1387. msgstr ""
  1388. #. $pnav.='<td>Page '.$p.'/'.$ptot.'</td>';
  1389. #: web/site/instances.php:851 web/site/users.php:641
  1390. msgid "Select page"
  1391. msgstr ""
  1392. #. page number prefix
  1393. #: web/site/instances.php:857 web/site/users.php:647
  1394. msgid "Page"
  1395. msgstr ""
  1396. #: web/site/instances.php:857 web/site/users.php:647
  1397. msgid "of"
  1398. msgstr ""
  1399. #: web/site/instances.php:857 web/site/users.php:647
  1400. #, fuzzy
  1401. msgid "instances"
  1402. msgstr "Поиск штук"
  1403. #: web/site/instances.php:861 web/site/users.php:651
  1404. msgid "Go to next page"
  1405. msgstr ""
  1406. #: web/site/instances.php:861 web/site/users.php:651
  1407. msgid "Go to last page"
  1408. msgstr ""
  1409. #: web/site/links.php:12
  1410. msgid "Some links you may find useful"
  1411. msgstr ""
  1412. #: web/site/links.php:14
  1413. msgid "a good starting point to approach the Fediverse"
  1414. msgstr ""
  1415. #: web/site/links.php:15
  1416. msgid "an extensive guide to the Fediverse with a Directory of accounts"
  1417. msgstr ""
  1418. #: web/site/links.php:16
  1419. msgid "another Mastodon instances database, has a wizard to help choosing one"
  1420. msgstr ""
  1421. #: web/site/links.php:17
  1422. msgid "very comprehensive stats about Fediverse, with another instances database covering all Fediverse platforms"
  1423. msgstr ""
  1424. #: web/site/links.php:18
  1425. msgid "another very good, unofficial, non-technical guide to using Mastodon and the wider Fediverse"
  1426. msgstr ""
  1427. #: web/site/links.php:19
  1428. msgid "a tool to split Mastodon posts"
  1429. msgstr ""
  1430. #: web/site/links.php:20
  1431. msgid "a tool to easily check if a Mastodon account is moderated by a Mastodon instance"
  1432. msgstr ""
  1433. #: web/site/links.php:21
  1434. msgid "a tool that is set up to easily check if «mastodon.uno», an italian Mastodon instance whose admins are well known for <a href=\"https://qua.name/diorama/astroturfing-the-italophone-fediverse\">bad practices</a> and censoring those who criticize them, is censoring a given post"
  1435. msgstr ""
  1436. #: web/site/links.php:22
  1437. msgid "Exercises for rachialgia (in italian language)"
  1438. msgstr ""
  1439. #: web/site/stats.php:17
  1440. msgid "Statistics for the last 30 days"
  1441. msgstr ""
  1442. #: web/site/stats.php:61
  1443. msgid "Hits per language"
  1444. msgstr ""
  1445. #: web/site/stats.php:72
  1446. msgid "Hits per page"
  1447. msgstr ""
  1448. #: web/site/stats.php:74
  1449. msgid "visit"
  1450. msgstr ""
  1451. #: web/site/stats.php:74
  1452. msgid "visits"
  1453. msgstr ""
  1454. #: web/site/stats.php:74
  1455. msgid "hit"
  1456. msgstr ""
  1457. #: web/site/stats.php:74
  1458. msgid "hits"
  1459. msgstr ""
  1460. #: web/site/users.php:81
  1461. msgid "Show advanced criteria"
  1462. msgstr ""
  1463. #: web/site/users.php:88
  1464. msgid "Hide advanced criteria"
  1465. msgstr ""
  1466. #: web/site/users.php:144
  1467. msgid "Reset all advanced criteria to default"
  1468. msgstr ""
  1469. #: web/site/users.php:147 web/site/users.php:377
  1470. msgid "Disable all advanced criteria"
  1471. msgstr ""
  1472. #: web/site/users.php:245
  1473. msgid "<div id=\"help\" class=\"helpd\"><p class=\"intro\">This is our search engine for Mastodon users. It works this way...</p></div>"
  1474. msgstr ""
  1475. #: web/site/users.php:246
  1476. #, php-format
  1477. msgid "<p class=\"introe\">We currently count <span class=\"statd\">%s</span> Mastodon users.</p>"
  1478. msgstr ""
  1479. #: web/site/users.php:331
  1480. msgid "By number of known instances, descending"
  1481. msgstr ""
  1482. #: web/site/users.php:332
  1483. msgid "By maximum number of characters per toot, descending"
  1484. msgstr ""
  1485. #: web/site/users.php:367
  1486. msgid "Include only users whose “display name” contains this string"
  1487. msgstr ""
  1488. #: web/site/users.php:367
  1489. msgid "“Display name” contains"
  1490. msgstr ""
  1491. #: web/site/users.php:371
  1492. msgid "Include only users whose username contains this string"
  1493. msgstr ""
  1494. #: web/site/users.php:371
  1495. #, fuzzy
  1496. msgid "Username contains"
  1497. msgstr "@имя@инстанс"
  1498. #: web/site/users.php:380
  1499. msgid "Include only instances which have at least this number of users (set to empty to disable this criterion)"
  1500. msgstr ""
  1501. #: web/site/users.php:380
  1502. msgid "Minimum number of users is"
  1503. msgstr ""
  1504. #: web/site/users.php:384
  1505. msgid "Include only instances which have at most this number of users (set to empty to disable this criterion)"
  1506. msgstr ""
  1507. #: web/site/users.php:384
  1508. msgid "Maximum number of users is"
  1509. msgstr ""
  1510. #: web/site/users.php:388
  1511. msgid "Include only instances which had at least this number of active users during the last 30 days (set to empty to disable this criterion)"
  1512. msgstr ""
  1513. #: web/site/users.php:388
  1514. msgid "Minimum number of active users is"
  1515. msgstr ""
  1516. #: web/site/users.php:392
  1517. msgid "Include only instances which know at least this number of other instances (set to empty to disable this criterion)"
  1518. msgstr ""
  1519. #: web/site/users.php:392
  1520. msgid "Minimum number of known instances is"
  1521. msgstr ""
  1522. #: web/site/users.php:396
  1523. msgid "Exclude noxious"
  1524. msgstr ""
  1525. #: web/site/users.php:430
  1526. msgid "Advanced criteria"
  1527. msgstr ""
  1528. #: web/site/users.php:449
  1529. msgid "Reset search"
  1530. msgstr ""
  1531. #: web/site/users.php:538
  1532. msgid "Characters per toot (max)"
  1533. msgstr ""
  1534. #: web/site/users.php:585
  1535. msgid "Admin name"
  1536. msgstr ""
  1537. #: web/site/users.php:585
  1538. msgid "Admin notes"
  1539. msgstr ""
  1540. #: web/site/users.php:588
  1541. msgid "Stats"
  1542. msgstr ""
  1543. #. 'ca'=>['orname'=>'Català','trname'=>_('Catalan')],
  1544. #. 'de'=>['orname'=>'Deutsch','trname'=>_('German')],
  1545. #: web/lib/supplangs.php:8
  1546. msgid "English"
  1547. msgstr ""
  1548. #, fuzzy
  1549. #~ msgid "Statistics on all instances"
  1550. #~ msgstr "Поиск штук"
  1551. #, fuzzy
  1552. #~ msgid "Translation credits"
  1553. #~ msgstr "Перевод"
  1554. #, fuzzy
  1555. #~ msgid "with a lot of help from other enthusiastic Mastodon users from the italian instance <a href=\"https://mastodon.bida.im\">mastodon.bida.im</a> (<a href=\"https://bida.im\">bida.im</a> also hosts it) and other instances."
  1556. #~ msgstr "Этот сайт в основном обслуживается <a href=\"https://mastodon.bida.im/@Ca_Gi\">Ca_Gi</a> и <a href=\"https://nebbia.fail/@zuz\">zuz</a> с большой помощью других энтузиастов-пользователей Mastodon из итальянского инстанса <a href=\"https://mastodon.bida.im\">mastodon.bida.im</a> (<a href=\"https://bida.im\">bida.im</a> также его размещает) и других инстансов."
  1557. #~ msgid "These are some of the involved users"
  1558. #~ msgstr "Это некоторые из вовлеченных пользователей"
  1559. #, php-format
  1560. #~ msgid "wrote the <a href=\"/%s\">Guide</a>’s text and keeps it updated; he also does some translation work from Italian to English"
  1561. #~ msgstr "написал <a href=\"/%s\">руководство</a>и поддерживает его в актуальном состоянии; он также выполняет некоторые работы по переводу с итальянского на английский язык"
  1562. #, fuzzy
  1563. #~ msgid "develops the site and does some translation work"
  1564. #~ msgstr "разрабатывает сайт и выполняет некоторые работы по переводу с итальянского на английский язык"
  1565. #~ msgid "integrated <a href=\"https://github.com/patrickschur/language-detection\">Patrick Schur’s PHP library for automatic language detection</a> into the crawler"
  1566. #~ msgstr "интегрировал <a href=\"https://github.com/patrickschur/language-detection\">PHP-библиотеку Патрика Шура для автоматического определения языка</a> в поискового робота"
  1567. #~ msgid "made the crawler’s notifications management page for the backend"
  1568. #~ msgstr "сделал страницу для упавления уведомлениями поискового робота для бэкенда"
  1569. #~ msgid "The code for this website is <a href=\"https://git.lattuga.net/pongrebio/MastodonStartpage\">here</a>."
  1570. #~ msgstr "Код для этого сайта <a href=\"https://git.lattuga.net/pongrebio/MastodonStartpage\">тут</a>."
  1571. #~ msgid "Closed padlock icon."
  1572. #~ msgstr "Значок закрытого замка."
  1573. #~ msgid "Mail envelope icon."
  1574. #~ msgstr "Значок почтового конверта."
  1575. #, fuzzy
  1576. #~ msgid "A screenshot showing PeerTube “Subscribe” popup menu."
  1577. #~ msgstr "Скриншот, показывающий список “Подписки”."
  1578. #~ msgid "Instance based software modifications and personalization"
  1579. #~ msgstr "Изменения и персонализация приложения на основе инстансов"
  1580. #~ msgid "Lingo and translations"
  1581. #~ msgstr "Язык и переводы"
  1582. #~ msgid "Where are the trending topics?"
  1583. #~ msgstr "Где популярные темы?"
  1584. #~ msgid "Linking a toot"
  1585. #~ msgstr "Ссылание на пост"
  1586. #~ msgid "“Obscured” followers list"
  1587. #~ msgstr "“Скрытый” список подписчиков"
  1588. #~ msgid "Moving through branches"
  1589. #~ msgstr "Перемещение по веткам"
  1590. #~ msgid "Mastodon &amp; Twitter"
  1591. #~ msgstr "Mastodon и Твиттер"
  1592. #~ msgid "Mastodon is not Twitter..."
  1593. #~ msgstr "Mastodon это не Twitter..."
  1594. #~ msgid "...but are you still tangled in a Twitter mindset?"
  1595. #~ msgstr "...но вы всё ещё мыслите как пользователь Twitter-а?"
  1596. #~ msgid "Bridging Mastodon and Twitter"
  1597. #~ msgstr "Мост между Mastodon и Twitter"
  1598. #~ msgid "Mastodon is born as an Ad-free platform. For this reason, instances that will finance themselve with advertisement will be silenced or blocked by many."
  1599. #~ msgstr "Мастодон изначально был платформой без рекламы. По этой причине, инстансы которые финансируются за счёт рекламы, будут заглушены или заблокированы многоими другими."
  1600. #~ msgid "A well-run Instance will have its policies clearly written on its homepage and also publish the list of blocked or silenced Instances."
  1601. #~ msgstr "У хорошо управляемого инстанса есть ясно написанные политики на их домашней странице, а так же публичный список заблокированных и заглушенных инстансов."
  1602. #~ msgid "There are thousands of different Mastodon Instances. There are Instances with only 5 users but also Instances with more than 100,000 users."
  1603. #~ msgstr "Существуют тысячи других инстансов Mastodon. Есть инстансы с пятью пользователями и есть инстансы с более чем 100.000 пользователей."
  1604. #~ msgid "Given all the possibilities that users and admins have to block other users and Instances, one could argue that Mastodon is a network filled with closed communities that don’t talk to each other and isolate themselves in their own echo-chambers."
  1605. #~ msgstr "Учитывая все возможности пользователей и администраторов блокировать других пользователей и инстансы, кто-то может сказать, что Mastodon — это сеть, наполненная закрытыми сообществами, которые не общаются друг с другом и изолированы в своих собственных эхо-камерах."
  1606. #~ msgid "Basically, every Instance can interact with all the other ones and later decide to close some of these connections. That’s up to the community that runs the Instance, its culture and mind openness. A closed minded community that doesn’t respect different people and lifestyles will easily block and be blocked from other Instances. On the other hand, an Instance run by open-minded people that is willing to talk respectfully with others will never be blocked by other open-minded communities."
  1607. #~ msgstr "В принципе, каждый инстанс может взаимодействовать со всеми другими инстансами или позже оборвать с некоторыми связь по желанию. Это зависит от сообщества, которое управляет инстансом, его культуры и открытости сознания. Закрытое сообщество, которое не уважает разных людей и разные стили жизни, может легко как блокировать, так и быть заблокированным от других инстансов. С другой стороны, инстансы, которые управляются открытыми людьми и желают общаться с уважением к другим не будут заблокированы такими же открытыми сообществами."
  1608. #~ msgid "Since Mastodon software is open source (if you are a geek you can find the code <a href=\"https://github.com/mastodon/mastodon\">here</a>), every Instance administrator can apply some little modifications to it. For example some Instances make it possible for a user to publish posts longer than the standard 500 characters. Also, some Instances can choose to not use certain features like <a href=\"#TrendingTopics\">Trending Hashtags</a>."
  1609. #~ msgstr "Так как Mastodon это программа с открытым кодом (если вы прогер, вы можете найти код <a href=\"https://github.com/mastodon/mastodon\">тут</a>), каждый администратор инстанса может делать свои маленькие изменения. Например на некоторых инстансах пользователи могут отправлять посты более 500 символов, а некоторые инстансы могут отказаться от использования некоторых функций, например <a href=\"#TrendingTopics\">популярных хештегов</a>."
  1610. #~ msgid "Anyway, due the federated nature of Mastodon, your content could be boosted also on other Instances that could manage it in different ways."
  1611. #~ msgstr "В любом случае, благодаря федеративной природе Mastodon, ваш контент может быть продвинут на другие инстансы, которые могут управлять им по-разному."
  1612. #~ msgid "For the same reason if your Instance admin removes one of your posts, a copy of it can still be present on other Instances."
  1613. #~ msgstr "По той же причине, если администратор вашего инстанса удалит ваш пост, его копия может остаться на других инстансах."
  1614. #~ msgid "Everybody has an e-mail address, but as you can notice there is no “official” e-mail App. Instead you can access to your e-mail from your web browser or using one of many e-mail Apps. In much the same way, there is no official App for Mastodon (and you can always use your web browser!)."
  1615. #~ msgstr "У всех есть емейл, однако не существует “официального” приложения для электронной почты. Вместо него доступ к емейлу получается через браузер или с помощью одного из множества приложений. По тому же принципу нет официального приложения Mastodon (и всегда можно зайти с браузера!)."
  1616. #~ msgid "On Android you have many alternatives, the most notable being Tusky, Fedilab and Subway Toot. You can download these either from the Google Play App-store or from <a href=\"https://f-droid.org\">F-Droid</a>, a free and open source alternative to App-stores."
  1617. #~ msgstr "На андроиде есть множество альтернатив, самые заметные из них: Tusky, Fedilab и Subway Toot. Их можно скачать либо с магазина приложений Google Play или с <a href=\"https://f-droid.org\">F-Droid</a>, бесплатного мазагина приложений с открытым кодом."
  1618. #~ msgid "Every App can add or hide certain functionalities. For example some of them have translation buttons and other have bot indicators."
  1619. #~ msgstr "Каждое приложение может добавлять или скрывать некоторые функции, например у одних есть кнопка перевода, а у других индикатор, что аккаунт — бот."
  1620. #~ msgid "<a href=\"https://whalebird.social\">Whalebird</a> (Linux, Windows, OSX)"
  1621. #~ msgstr "<a href=\"https://whalebird.social\">Whalebird</a> (Linux, Windows, OSX)"
  1622. #~ msgid "<a href=\"https://appcenter.elementary.io/com.github.bleakgrey.tootle\">Tootle</a> (Linux)"
  1623. #~ msgstr "<a href=\"https://appcenter.elementary.io/com.github.bleakgrey.tootle\">Tootle</a> (Линукс)"
  1624. #~ msgid "<a href=\"https://thedesk.top/en\">TheDesk</a> (Linux, Windows, OSX)"
  1625. #~ msgstr "<a href=\"https://thedesk.top/en\">TheDesk</a> (Линукс, Windows, OSX)"
  1626. #~ msgid "<a href=\"https://hyperspace.marquiskurt.net\">Hyperspace</a> (Linux, Windows, OSX)"
  1627. #~ msgstr "<a href=\"https://hyperspace.marquiskurt.net\">Hyperspace</a> (Линукс, Windows, OSX)"
  1628. #~ msgid "There are also alternative frontends! A frontend is a website where you can login with your Mastodon account but doesn’t show your standard home page graphics: the colours, buttons and menus are all different and maybe you could find them better or easier to use then the original ones."
  1629. #~ msgstr "Существуют также альтернативные фронтенды! Фронтенд — это сайт, на котором можно войти в аккаунт Mastodon, но не со стандартной графика на домашней странице: другие цвета, кнопки и меню, и возможно вам они покажутся лучше или удобнее использовать, чем официальные."
  1630. #~ msgid "<a href=\"https://www.halcyon.social\">Halcyon</a>: Looks exactly like Twitter"
  1631. #~ msgstr "<a href=\"https://www.halcyon.social\">Halcyon</a>: Выглядит так же, как Twitter"
  1632. #~ msgid "Applications and frontends too can add, hide or customize certain functions, compared to the ones you find when you access to your Instance from its homepage. Therefore sometimes it’s possible to find tips, advices or instructions that are not applicable if you use them not on the homepage but on an Application or frontend. Take notice."
  1633. #~ msgstr "Приложения и фронтенды также могут добавлять или изменять определённые функции, которые есть на главной странице вашего инстанса. Поэтому иногда можно найти советы или инструкции, которые могут быть не применимы на главной странице инстанса, в некоторых приложениях и фронтендах. Будьте начеку."
  1634. #~ msgid "A Mastodon account is formed somehow like an e-mail account:"
  1635. #~ msgstr "Аккаунт Mastodon записывается примерно так же, как и емейл аккаунт:"
  1636. #~ msgid "If you mention someone on Mastodon only by <em>@name</em>, the software usually assumes that the contact is on the same Instance you are currently logged into. Therefore, if that person is on a different Instance and you don’t write the <em>@instance</em> part, clicking on <em>@name</em> will either result in a broken link or bring you to somebody with the same name on your Instance."
  1637. #~ msgstr "Если вы упоминаете кого-то на Mastodon только по <em>@имени</em>, приложение считает по-умолчанию , что пользователь на том же инстансе, с которого вы вошли. Поэтому, если этот человек на другом инстансе и вы не приписываете <em>@инстанс</em>, клик по <em>@имени</em> либо сделает нерабочую ссылку либо перейдёт на страницу человека на вашем инстансе с таким же именем."
  1638. #~ msgid "Some Apps will correct this behaviour, so check it out."
  1639. #~ msgstr "Некоторые приложения изменяют это поведение, поэтому проверьте их."
  1640. #~ msgid "Like every digital platform, Mastodon too renames functionalities that other platforms call differently."
  1641. #~ msgstr "Как на каждой цифровой платформе, у Mastodon тоже есть функции переименовывания, которые другие платформы называют по-другому."
  1642. #~ msgid "For example the posts, or messages, that on Twitter are called “tweets”, on Mastodon are called “toots”. A shared post on certain platforms is called “repost” or “retweet” while here it’s called “boost”."
  1643. #~ msgstr "Например, посты, или сообщения, которые в Twitter называются “твитами”, в Mastodon называются “гудками” (однако распространено слово “пост”). Сообщение, которым поделились на некоторых платформах, называется “репост” или “ретвит”, а здесь — “продвижение”."
  1644. #~ msgid "Since you can access Mastodon with different Apps and frontends developed by different people it’s also possible that certain functionalities are called or translated differently. For example what is called “direct messages” on an App, on a different one is called “private messages”."
  1645. #~ msgstr "Из-за того, что доступ к Mastodon можно получить из разных приложений и фронтендов, возможно, что некоторые функции называются или переведены по-разному. Например то что на одном приложении называется “личными сообщениями” на другом может называться “перепиской”."
  1646. #~ msgid "<em>Federated</em>: it shows all the posts of the members of your Instance and also the posts of people on other Instances that are followed by people of your Instance."
  1647. #~ msgstr "<em>Федеративная</em>: она показывает посты всех пользователей вашего инстанса, а так же посты всех других инстансов, за которыми следят пользователи вашего инстанса."
  1648. #~ msgid "On every timeline the posts are shown in chronological order. This means that no algorythm, number of stars or other factors will influence the number of times you will see a post. A post can be boosted (“retweeted”) but that’s it."
  1649. #~ msgstr "На кажлой ленте посты показаны в хронологическом порядке. Это значит что нет никаких алгоритмов, никакое количество звёздочек и других факторов не будут влиять на то, сколько раз этот пост покажется в ленте. Пост может быть продвинут (“ретвитнут”), но не более того."
  1650. #~ msgid "In many Instances, if you search something in the search box of Mastodon, it will find only users or #hashtags. A more powerful search system will be implemented in the near future."
  1651. #~ msgstr "На многих инстансах, если искать что-нибудь в поисковой строке Mastodon, оно найдёт только пользователей или #хештеги. В скором будущем будет реализована более мощная поисковая система."
  1652. #~ msgid "The search box does not explore the entire Fediverse but only the portion of it that your instance is connected to. Therefore if you search a user it will search among all the users of your instance and of the instances you are connected to, but not those who are on instances you aren’t connected to. If you search an hashtag it will not list all the posts from all the existing instances containing it but only the posts published by users that your instance knows."
  1653. #~ msgstr "Поисковая строка не ищет по всему Федивёрсу, лишь по той её части, которая соединена с вашим инстансом. Таким образом, если вы ищете пользователя, поиск будет производиться среди всех пользователей вашего инстанса и среди пользователей соединённых инстансов. Если вы ищете хештег, поиск не будет производиться по всем существующим постам со всех инстансов, а только по постам с известных вами инстансов."
  1654. #~ msgid "Twitter’s “Trending Topics” feature finds its Mastodon’s counterpart in “Trending Hashtags”. When “Trending Hashtags” are active, though, they’re reviewed by the admins to ensure they aren’t being gamed as a vector for abuse. However what’s most important is that this feature is completely optional: it is up to each instance’s admin and its community to decide if they want to have “Trending Hashtags”, and in fact many instances don’t activate it, thus eliminating the urge for their users to participate in certain topics instead of others and all the “social noise” about vapor-problems. So many Mastodon Instances are places where you can talk with people without having to know by a “Trending Topics” board that a certain topic is more important than the one you really want to talk about."
  1655. #~ msgstr "Аналогом твиттеровского “Популярные темы” в Mastodon является “Популярные хэштеги”. Когда “Популярные хештеги” включены, всё же они будут рассмотрены админами, чтобы убедиться, что ими не злоупотребляют. Что главное — эта возможность полностью опциональна — админы каждого инстанса и их сообщество сами решают, включать ли им “Популярные хэштеги” или нет, и в самом деле многие инстансы не включают её, таким образом устраняя стремление своих пользователей участвовать в определенных темах вместо других и весь “социальный шум” о высосанных из пальца проблемах. Многие инстансы Mastodon это места, где можно спокойно общаться с людьми не зная про доску “Популярные темы”, и что одна тема важнее той, о которой вам интересно говорить."
  1656. #~ msgid "A screenshot showing the “trending hashtags” feature."
  1657. #~ msgstr "Скриншот, показывающий функцию “популярные хештеги”."
  1658. #~ msgid "The “boost” function has no “comment” feature like the “retweet and comment” button on Twitter."
  1659. #~ msgstr "У функции “продвинуть” нет функции “комментировать”, типа кнопки “ретвит и комментарий” на Twitter."
  1660. #~ msgid "That’s by design, because it’s a feature that is mostly used to harrass people and leads to talks around a topic but without direct interaction. Yes, we know, it also has legitimate uses but, well, the point here is to prefer real interactions than boosts."
  1661. #~ msgstr "Это сделано намеренно, потому что именно эта вещь чаще всего используется для домогательств и ведёт к разговорам на теме без прямого взаимодействия. Да, мы знаем, что есть и хорошее применение этой функции, однако предпочтение отдаётся настоящему взаимодействию, а не продвижению."
  1662. #~ msgid "If you want to suggest somebody to read a certain thread on Mastodon you can boost it or interact directly in the thread and mention the account of the person that you want to join the discussion."
  1663. #~ msgstr "Если вы хотите предложить прочитать определённую ветку на Mastodon, вы можете её продвинуть или напрямую провзаимодействовать в треде и упомянуть аккаунты людей, которых вы хотите пригласить к обсуждению."
  1664. #~ msgid "You can also reference to a post by copying its URL and pasting it into a post of yours. That’s ok too, but remember that it will work correctly only from desktop and from certain Apps. In other Apps, clicking on the link will take the user from the App to the browser."
  1665. #~ msgstr "Вы также можете сослаться на пост, скопировав его URL и вставив его в свой пост. Так делать можно, но помните, что это будет правильно работать только с компьютера и из определенных приложений. В других приложениях при нажатии на ссылку пользователь перейдет из приложения в браузер."
  1666. #~ msgid "When you check another user’s profile you will see the number of people who follow and who are followed by them, but if you click on that number you can’t see the entire list of people. Instead you can only see some of them: the ones you already know or who are members of your same Instance."
  1667. #~ msgstr "Если вы захотите посмотреть профиль другого пользователя, вы увидете число подписчиков и число подписок этого пользователя, однако если нажать на цифру, вы не увидете весь список людей — только тех, кого вы уже знаете или участников вашего инстанса."
  1668. #~ msgid "That’s by design, being an anti-harrassment feature."
  1669. #~ msgstr "Это сделано специально, чтобы предотвратить домогательства."
  1670. #~ msgid "Let’s check real life: in real life you don’t walk around with the list of your friends attached to your neck, do you?"
  1671. #~ msgstr "Сравним с реальной жизнью: в реальной жизни вы же не ходите со списком друзей, привязанных на шее, не так ли?"
  1672. #~ msgid "But then, if you cannot discover new people by checking who is following who, how can you find and meet new people on Mastodon? By <em>talking</em>, socializing and discussing things. When you boost friends’ posts you are presenting them to all your other friends and so on. Mastodon emphasizes real human socialization instead of espionage-style exploration of profiles."
  1673. #~ msgstr "Но если вы не можете узнать о новых людях, потому что не можете смотреть весь список кто на кого подписан, как тогда искать и знакомиться с людьми на Mastodon? <em>Разговаривая</em>, социализируясь и обсуждая вещи. Когда вы продвигаете пост друга, вы показываете его всем своим друзьям и так далее. Mastodon акцентирует настоящую человеческую социализацию вместо шпионского изучения профилей."
  1674. #~ msgid "When you post a message (toot) you can choose among 4 types of posting"
  1675. #~ msgstr "Когда вы выкладываете пост (гудок), вы можете выбрать один из 4 типов поста"
  1676. #~ msgid "Globe icon."
  1677. #~ msgstr "Значок глобуса."
  1678. #~ msgid "<em>Public</em>: your post is public, it appears on public timelines and everybody can see it. <em>Public</em> posts are recognizable by a globe icon."
  1679. #~ msgstr "<em>Публичный</em>: ваш пост публичный, он будет отображаться в публичной ленте и все смогут его увидеть. <em>Публичные</em> посты можно распознать по иконке глобуса."
  1680. #~ msgid "Open padlock icon."
  1681. #~ msgstr "Значок открытого замка."
  1682. #~ msgid "<em>Not listed</em>: your post is still public but doesn’t appear on timelines. People can read it only if they are mentioned in it or if they go to your profile and scroll through your posts. <em>Not listed</em> posts are recognizable by an open padlock icon."
  1683. #~ msgstr "<em>Скрытый</em>: ваш пост всё ещё публичен, но он не появляется в ленте. Люди могут читать его только если они были упомянуты или если они зайдут на ваш профиль и пролистают ваши посты. <em>Скрытые</em> посты можно распознать по значку открытого замка."
  1684. #~ msgid "<em>Direct</em>: your post is private and viewable only by the people mentioned in it. <em>Direct</em> posts are recognizable by an envelope icon."
  1685. #~ msgstr "<em>Только упомянутые</em>: ваш пост приватный и его видят только люди, которые были в нём упомянуты. <em>Только упомянутые</em> посты можно распознать по значку почтового конверта."
  1686. #~ msgid "A graphical representation of a thread with four branches."
  1687. #~ msgstr "Графическое предсталвение треда с четырьмя ветками."
  1688. #~ msgid "Twitter users are quite used to it but if you arrived here from different platforms (eg. Facebook) this can be a little bit confusing."
  1689. #~ msgstr "Пользователи Twitter вполне привыкли к этому, но если вы пришли сюда с другой платформы (например, с Facebook), это может немного сбить с толку."
  1690. #~ msgid "A graphical representation of the succession of posts when you select the first toot from the thread pictured in the previous image."
  1691. #~ msgstr "Графическое представление последовательности постов при выборе первого поста треда, изображённого на предыдущей картинке."
  1692. #~ msgid "Now, pay attention: if you pick the thread by selecting the post nr. 2 you will still see all the following posts in chronological order, but you will not see the previous branching (the sub-thread containing the posts 2a and 3a)."
  1693. #~ msgstr "Теперь обратите внимание: если вы выберите тред, выбрав пост №2, то вы всё ещё увидите все последующие посты в хронологическом порядке, но вы не увидите предыдущее ответвление (подтред, содержащий посты 2а и 3а)."
  1694. #~ msgid "A graphical representation of the succession of posts when you select the second toot from the thread pictured in the first image."
  1695. #~ msgstr "Графическое представление последовательности постов при выборе второго поста из треда, изображённого на первой картинке."
  1696. #~ msgid "Also, if you pick the last post of a sub-thread (in this picture the post 7c) you will see all the previous posts in chronological order, but excluding all the other sub-threads."
  1697. #~ msgstr "Кроме того, если вы выберите последний пост подтреда (на этом изображении это пост 7с), вы увидите все предыдущие посты в хронологическом порядке, но без всех других подтредов."
  1698. #~ msgid "A graphical representation of the succession of posts when you select the last toot from one branch of the thread pictured in the first image."
  1699. #~ msgstr "Графическое представление последовательности постов, если выбрать последний пост из ветки треда, изображённого на первой картинке."
  1700. #~ msgid "If you want to change Instance it is possible to transfer all your data (including posts, followers and blocked users list) to the new one."
  1701. #~ msgstr "Если вы хотите сменить инстанс, то можно перенести все ваши данные (включая посты, подписчиков и список заблокированных пользователей) на новый."
  1702. #~ msgid "Instances that use older Mastodon software use a different trasfer method. For that reason, before moving your account check if both Instances (the new one and the old one) are both updated. Otherwise the process will only partially work."
  1703. #~ msgstr "Инстансы, которые используют более старую версию Mastodon, используют другой метод переноса. По этой причине, прежде чем перемещать аккаунт, проверьте, что оба инстанса (новый и старый) обновлены. Иначе процесс сработает только частично."
  1704. #~ msgid "The first thing to do is to open an account on a new Instance."
  1705. #~ msgstr "Первым делом нужно создать аккаунт на новом инстансе."
  1706. #~ msgid "The data transfer is done through several steps (some are not mandatory and therefore you can choose what to transfer to the new Instance): inform both Instances about the existence of the other account and confirm that you are the owner and then transfer your followers. After that you can export from the old Instance other data like your posts, the people you follow, the one you have blocked, the Instances you have blocked and then you can import that data in the new account. Last but not least it’s possible to set a redirect: that’s a link between your old and new account so that people that search your old account will be redirected to the new one. After the transfer you must wait some time to gain permission from your Instance to transfer your account again."
  1707. #~ msgstr "Перенос данных осуществляется в несколько шагов (некоторые из них не обязательны и поэтому вы можете выбрать, что именно переносить на новый аккаунт): уведомите оба инстанса о существовании другого аккаунта и подтвердите, что вы – владелец, и затем перенесите ваших подписчиков. После этого вы можете экспортировать другие данные со старого инстанса, например посты, ваши подписки, ваш чёрный список людей и инстансов, а затем импортировать эти данные на новый аккаунт. И наконец, можно установить перенаправление – это связь между вашим старым и новым аккаунтом, чтобы люди, ищущие ваш старый аккаунт, были перенаправлены на новый. После переноса нужно подождать некоторое время, чтобы получить разрешение от своего инстанса на повторный перенос."
  1708. #~ msgid "The point is that when you transfer your account you can choose between more options: keep the old account but redirect the users to the new one, completely delete the old one and transfer only the followers and so on."
  1709. #~ msgstr "Смысл в том, что при переносе аккаунта вы можете выбрать один из нескольких вариантов: оставить старый аккаунт, но перенаправить пользователей на новый; полностью удалить старый аккаунт и перенести только подписчиков и так далее."
  1710. #~ msgid "That is done in the Settings under “Import” and “Export”"
  1711. #~ msgstr "Это делается в настройках в разделе “Импорт” и “Экспорт”"
  1712. #~ msgid "Screenshot showing the “Import and export” feature."
  1713. #~ msgstr "Скриншот, показывающий функцию “Импорт и экспорт”."
  1714. #~ msgid "Mastodon developers are improving the transfer methods but anyway it’s still a delicate procedure that takes some time."
  1715. #~ msgstr "Разработчики Mastodon улучшают методы переноса, но в любом случае это деликатная процедура, которая занимает некоторое время."
  1716. #~ msgid "Mastodon features a Content Warning system. It’s an optional mask that covers the content of a post with an editable warning message."
  1717. #~ msgstr "В Mastodon есть система предупреждения о содержимом. Это необязательный спойлер, который скрывает содержимое поста редактируемым предупреждением."
  1718. #~ msgid "It’s used to cover content that is admitted by your Instance policy but may still hurt people, like spoilers, nudity, depiction of violence or threads about sensitive topics."
  1719. #~ msgstr "Он применяется чтобы скрывать контент, который разрешён политикой вашего инстанса, но всё ещё может задеть людей, например спойлеры, нагота, изображение насилия или треды на деликатные темы."
  1720. #~ msgid "For example, if you want to start a thread about the ending of a fresh new movie, you can do it using a CW like “Spoiler about the ending of...”"
  1721. #~ msgstr "Например, если вы хотите начать тред про концовку свежего фильма, это можно сделать с помощью предупреждения о контенте (CW), например “Спойлер про концовку...”"
  1722. #~ msgid "Every Instance has its own rules about CWs and therefore it’s common to see them used in different ways, like on selfies or depictions of food. That is because what on an Instance is considered a sensitive topic on another may be something commonly accepted. It’s possible that an Instance is blocked by others because of its misuse of CWs on certain kinds of topics."
  1723. #~ msgstr "На каждом инстансе есть свои правила насчёт предупреждения о содержимом, и поэтому часто можно увидеть, что они используются по-разному, например для селфи или для изображений еды. Это происходит потому, что то, что на одном инстансе считается деликатной темой, на другом может быть общепринято. Инстанс может быть заблокирован другими из-за неправилного использования CW по определённым темам."
  1724. #~ msgid "This said, if you want you can always go in the Setting page and set to automatically uncover all the CWs."
  1725. #~ msgstr "Тем не менее, при желании вы всегда можете зайти в настройки и включить автоматическое раскрытие всех CW."
  1726. #, fuzzy
  1727. #~ msgid "Mastodon is famous for its anti-harassment environment not because there isn’t any on it (that would be impossible) but because its structure and moderation tools permit a series of efficient and immediate actions against bad accounts or Instances and because most of the Instances are run by communities that actively work to maintain Mastodon’s environment a nice and tolerant place. Many communities help, inform and warn each other when they identify an Instance run by people that spread hatespeech or trolling. Having admins and moderators for every single instance, the ratio between regular users and moderators can be extremely high. Also remember that every Instance has its own policy based on the community’s culture, ethics and political view. Moderation is <em>always</em> a political act and claiming for total impartiality means taking the side of the status quo."
  1728. #~ msgstr "Mastodon славится своей средой против притеснений не потому, что тут её вообще нет (это было бы невозможно), но потому, что структура и инструменты модерации позволяют применять серию ежечасных и эффективных мер против плохих аккаунтов или инстансов, и из-за того, что большинство инстансов управляются сообществами, которые активно работают над тем, чтобы Mastodon продолжал быть приятным и толерантным местом. Множество компьютеров помогают, информируют и предупреждают друг друга когда они идентифицируют инстанс, управляемый людьми, распространяющими [хейтспич и] троллинг. Благодаря тому, что есть администрация и модерация на каждом инстансе, отношение простых пользователей к модерации может быть очень большим. Так же стоит помнить, что у инстансов есть собстенные политики, основанные на культура сообществ, этики и политических взглядов. Модерация <em>всегда</em> является политическим актом, и претендовать на полную беспристрастность означает встать на сторону статус-кво."
  1729. #~ msgid "If the admins of Instance1 <em>silence</em> Instance2, then the users of Instance1 can still privately follow and interact with the users of Instance2, but those interactions (like boosts) will not be seen by the other users of Instance1."
  1730. #~ msgstr "Если админы инстанса1 <em>заглушают</em> инстанс2, тогда пользователи инстанс1 всё ещё могут приватно подписываться и взаимодействовать с пользователями инстанса2, но те интерации (типа продвижения) не будут видны другим пользователям инстанса1."
  1731. #~ msgid "To be more clear: <em>blocking</em> is used for Instances that permit horrible things and behaviours, while <em>silencing</em> is used for Instances that your Instance tolerate but doesn’t appreciate that much."
  1732. #~ msgstr "Чтобы было понятнее: <em>блокирование</em> используется против инстансов, который творит отвратительные вещи и поведения, когда <em>заглушение</em> используется против инстансов, к которому ваш инстанс толерантен, но не очень ценит."
  1733. #~ msgid "The same things are applicable to users."
  1734. #~ msgstr "Те же принципы работают и с пользователями."
  1735. #~ msgid "You too, as a simple user, can decide to block or silence – for your eyes – other users and entire Instances."
  1736. #~ msgstr "Как простой пользователь, вы тоже можете блокировать или заглушать - для себя - других пользователей и целые инстансы."
  1737. #~ msgid "Please note that even if Instance2 is blocked, it’s still possible that their users see some contents of Instance1. More effective kinds of blocking are in development."
  1738. #~ msgstr "Обратите внимание, что если инстанс2 заблокирован, его пользователи всё ещё могут видеть контент инстанса1. Более эффективные виды блокировки находятся в разработке."
  1739. #~ msgid "On Mastodon you will not receive notifications like “40 people liked the post you boosted” or “John is tweeting about this” or “Laura and Mike are now following Hannah”."
  1740. #~ msgstr "На Mastodon вы не будете получать уведомления вроде «40 человек оценили пост, который вы продвинули», или «Джон пишет об этом в Твиттере», или «Лора и Майк теперь подписаны на Ханну»."
  1741. #~ msgid "Nobody will tell you what you “must” read or who you “must” follow."
  1742. #~ msgstr "Никто не скажет вам, что вы «должны» читать или за кем вы «должны» следовать."
  1743. #~ msgid "Nobody cares that much about the “success” of a post."
  1744. #~ msgstr "Никого особо не волнует «успех» поста."
  1745. #~ msgid "There are no blue badges for verified accounts."
  1746. #~ msgstr "Также нет значков для проверенных аккаунтов."
  1747. #~ msgid "You get informed about how many people “starred” or boosted your post and that’s it."
  1748. #~ msgstr "Вы получите информацию о том, сколько людей «отметили» или продвинули ваш пост, и только."
  1749. #~ msgid "To know how many times a certain post was boosted or “starred” you must click on it. But there is no emphasis on it and in fact nobody really cares."
  1750. #~ msgstr "Чтобы узнать, сколько раз пост был продвинут или отмечен, вы должны щелкнуть по нему. Но на этом нет акцента, и на самом деле это никого особо не волнует."
  1751. #~ msgid "What’s important, here, is to interact in real conversations and... who cares about “points” received from people that don’t interact?"
  1752. #~ msgstr "Что важнее в Mastodon, так это взаимодействие в реальных разговорах, потому что… кого волнуют «баллы» или «лайки», полученные от людей, которые не взаимодействуют?"
  1753. #~ msgid "Are you still searching for the Trending Topics that will impose to everyone today’s obligatory conversation topic?"
  1754. #~ msgstr "Вы все еще ищете Тренды, которые навяжут всем сегодняшнюю обязательную тему для разговора?"
  1755. #~ msgid "Are you searching for “people to follow” instead of “people to interact with”?"
  1756. #~ msgstr "Вы ищете «людей, на которых стоит подписаться», а не «людей, с которыми можно взаимодействовать»?"
  1757. #~ msgid "Are you still planning time-wasting things like hashtag wars instead of doing something real?"
  1758. #~ msgstr "Вы все еще планируете пустую трату времени, вроде «войны хэштегов», вместо того, чтобы делать что-то реальное?"
  1759. #~ msgid "Are you searching for emotional and social gratification in the number of retweets you receive?"
  1760. #~ msgstr "Вы ищете эмоциональное и социальное удовлетворение в количестве полученных вами ретвитов?"
  1761. #, fuzzy
  1762. #~ msgid "Are you still judging a post by the number of likes that it received?"
  1763. #~ msgstr "Вы все еще судите о посте по количеству лайков, которые он получил?"
  1764. #~ msgid "Are you still writing cool posts to obtain likes insted of writing interesting things that stimulate discussion and interaction?"
  1765. #~ msgstr "Вы все еще пишете крутые посты ради лайков вместо того, чтобы писать интересные вещи, которые стимулируют обсуждение и взаимодействие?"
  1766. #, fuzzy
  1767. #~ msgid "If so, please pay attention: there is still much Twitter <em>inside you</em>! And it takes some time to heal... 😉"
  1768. #~ msgstr "Если это так, пожалуйста, обратите внимание: <em>внутри вас</em> все еще много Twitter! И исцеление займёт некоторое время... 😉"
  1769. #, fuzzy
  1770. #~ msgid "You can still keep some relation with your previous Twitter account using crossposting services."
  1771. #~ msgstr "Вы все еще можете поддерживать некоторую связь со своей предыдущей учетной записью Twitter, используя сервисы кросспостинга."
  1772. #~ msgid "There are services like <a href=\"https://ifttt.com\">ifttt.com</a>, <a href=\"https://crossposter.masto.donte.com.br\">masto.donte</a> and <a href=\"https://moa.party/\">moa.bridge</a> which can connect your Twitter account with your Mastodon account. With these services you can publish your tweets on Mastodon and/or publish your toots on Twitter."
  1773. #~ msgstr "Существуют сервисы наподобие <a href=\"https://ifttt.com\">ifttt.com</a>, <a href=\"https://crossposter.masto.donte.com.br\">masto.donte</a> и <a href=\"https://moa.party/\">moa.bridge</a>, которые могут связать вашу учетную запись Twitter с вашей учетной записью Mastodon. С помощью этих сервисов вы можете публиковать свои твиты на Mastodon и/или публиковать свои твиты в Twitter."
  1774. #, fuzzy
  1775. #~ msgid "Many Instances have strong rules about the use of crossposters, especially because if you use them from Twitter to Mastodon, your Mastodon account could be considered like a <em>bot</em> and also <em>bots</em> are sometimes strongly regulated. So check your Instance policy before using them."
  1776. #~ msgstr "Многие инстансы имеют строгие правила использования кросспостеров, особенно если вы используете их из Твиттера в Mastodon; тогда ваша учетная запись Mastodon может рассматриваться как <em>бот</em>, и их использование иногда строго регулируется. Поэтому проверьте политику своего инстанса перед их использованием."
  1777. #~ msgid "Don’t be afraid to try out as many Instances as you like: you can always delete your accounts later on, link them to one another, or even keep them all! The sky is the limit!"
  1778. #~ msgstr "Не бойтесь попробовать столько инстансов, сколько хотите — вы всегда можете удалить позже аккаунт, связать их вместе, или оставих их всех! Нет пределов!"
  1779. #~ msgid "That’s just one of the reasons why the Mastodon network works at its best by connecting many small and medium Instances instead of relying on a bunch of gigantic ones."
  1780. #~ msgstr "Это лишь одна из причин, почему сеть Mastodon работает лучше всего при соединении многих маленьких и средних сообществ вместо пологания на несколько огромных."
  1781. #~ msgid "Every Instance administrator can choose to silence or to completely block a user of their own or another Instance, but also to block another Instance as a whole (for example because it has bad moderation and allows trolling)."
  1782. #~ msgstr "Каждый администратор инстанса может не только заглушать или полностью блокировать пользоватлеля своего или чужого инстанса, но и полностью блокировать чужой инстанс (например, из-за плохой модерации, которая не запрещает троллинг)."
  1783. #~ msgid "Many Instances are crowdfunded but it’s also possible that some will ask a fee or some other way to cover its costs."
  1784. #~ msgstr "Много инстансов финансированы краудфандингом, но так же возможно что некоторые будут просить плату или иной способ покрытия своих затрат."
  1785. #~ msgid "It’s extremely important that you sign up on an Instance whose admins share your language, your culture and, possibly, your political views: that way you will be able to have an easier time communicating with them."
  1786. #~ msgstr "Невероятно важно зарегистрироваться на инстансе, админы которого разделяют ваш язык, культуру и, возможно, политические взгляды — таким образом вам будет проще общаться с ними."
  1787. #~ msgid "As an example: if in your country you are part of a threathened minority and you are registered on a huge Instance and another user from your country harrasses you, it will be a struggle for the admin just to understand that you are the harrassed one! At the opposite, if you are registered on an Instance dedicated to your community, it will be easier for the admin to intervene quickly."
  1788. #~ msgstr "К примеру, если в вашей стране вы — часть угрожаемого меньшинства, вы зарегистрированы на большом инстансе и другой пользователь из вашей страны домогается до вас, админу будет тяжело понять что до вас домогаются! С другой стороны, если вы зарегистрированы на инстансе, созданного для вашего сообщества, вам будет проще найти администрацию, которая быстро вмешается."
  1789. #~ msgid "For all those reasons, on this website we don’t list such big Instances by default among our <a href=\"instances/en\">suggestions</a>."
  1790. #~ msgstr "По всем этим причинам, на этом сайте мы не публикуем большие инстансы по-умолчанию среди наших <a href=\"instances/en\">предложений</a>."
  1791. #~ msgid "translated parts of site text to Catalan"
  1792. #~ msgstr "перевел часть текста сайта на каталанский язык"
  1793. #~ msgid "translated parts of site text to French"
  1794. #~ msgstr "перевел часть текста сайта на французский язык"
  1795. #~ msgid "translated site text to Galician"
  1796. #~ msgstr "перевел текст сайта на галисийский язык"
  1797. #~ msgid "page not found"
  1798. #~ msgstr "страница не найдена"