Hormold

VK Change (#1355483520)

Dec 14th, 2012
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 38.38 KB | None | 0 0
  1. Файл - uncommon.css:
  2. 464.  - #save_fv_bar,
  3. 465.  - #chrome_bar,
  4. 466.  - #wp_bar {
  5. 467.  + #chrome_bar, #wp_bar {
  6. 479.  - #save_fv_bar_content,
  7. 494.  - #save_fv_bar_bg,
  8. 495.  - #chrome_bar_bg,
  9. 496.  - #wp_bar_bg {
  10. 497.  + #chrome_bar_bg, #wp_bar_bg {
  11. 502.  - .chrome_bar_a,
  12. 503.  - .wp_bar_a {
  13. 504.  + .chrome_bar_a, .wp_bar_a {
  14. 517.  - }
  15. 518.  - #save_fv_bar_content .button_blue,
  16. 519.  - #save_fv_bar_content .button_gray {
  17. 520.  -   margin-left: 10px;
  18. 521.  - }
  19. 522.  - .save_fv_bar_label {
  20. 523.  -   display: inline-block;
  21. 524.  -   padding: 5px 0 0;
  22. 525.  -   vertical-align: top;
  23. ------
  24. Файл - graph.js:
  25. 40.  +               0x85afd0, 0xd391bb, 0x8ecfce, 0xa8d1a9, 0xe47070, 0xf2ec96, 0xf7be5a, 0xbeaadf,
  26. 42.  -               0x6391bc, 0xc77bb1, 0x62b1bc, 0x80bb88, 0xb75454, 0xc9c255, 0xdca94f, 0x997fc4,
  27. 43.  -               0x85afd0, 0xc77bb1, 0x8ecfce, 0x80bb88, 0xe47070, 0xc9c255, 0xf7be5a, 0xbeaadf];
  28. 44.  +               0x6391bc, 0xbc6b9e, 0x62b1bc, 0x69a57a, 0xb75454, 0xd4ce68, 0xdca94f, 0x997fc4];
  29. 207.  - function drawLines(ctx, x, y, w, h, lines, stTime, enTime, xfactor, yfactor, yDelta, zoomedOut, active, smooth) {
  30. 208.  -   smooth = (!zoomedOut) && smooth;
  31. 209.  + function drawLines(ctx, x, y, w, h, lines, stTime, enTime, xfactor, yfactor, yDelta, zoomedOut, active) {
  32. 210.  +   var smooth = (!zoomedOut) && ((enTime - stTime) < (35 * 24 * 60 * 60));
  33. 412.  -   setStyle(this.graphDiv, {fontFamily: 'tahoma, arial, verdana, sans-serif, Lucida Sans', fontSize: '11px', color: '#36638e', width: this.viewWidth + 'px', clear: 'both', lineHeight: '130%'});
  34. 413.  +   setStyle(this.graphDiv, {fontFamily: 'tahoma, arial, verdana, sans-serif, Lucida Sans', fontSize: '11px', color: '#36638e', width: this.viewWidth + 'px', clear: 'both'});
  35. 455.  -   var defaultGraph = 0;
  36. 457.  -     if (!params.multiple.def) params.multiple.def = 0;
  37. 458.  +     if (!params.multiple.del) params.multiple.def = 0;
  38. 487.  -     defaultGraph = params.multiple.def;
  39. 499.  -     dragElement: null, maskDragging: false, viewClick: false, smoothLines: false,
  40. 500.  +     dragElement: null, maskDragging: false, viewClick: false,
  41. 561.  -     graph.setData((typeof(data) == 'string') ? data : (data[defaultGraph] || []), isArray(params.adjust) ? params.adjust[0] : params.adjust);
  42. 562.  +     graph.setData((typeof(data) == 'string') ? data : (data[0] || []), isArray(params.adjust) ? params.adjust[0] : params.adjust);
  43. 870.  -     if (!g.smoothLines || !tooltips) {
  44. 871.  +     if (g.rightTime - g.leftTime >= 35 * 24 * 60 * 60 || !tooltips) {
  45. 973.  -     var g = ev.currentTarget.graph, line = ev.currentTarget.line, dot = line.dotLabel.dot, pos = line.dotLabel.pos;
  46. 974.  -     if (!g.smoothLines) {
  47. 975.  -       var text = '';
  48. 976.  -       if (line.l) {
  49. 977.  -         text += langNumeric(dot.y, line.l, true);
  50. 978.  -       } else {
  51. 979.  -         text += (dot.l ? dot.l : formatValue(dot.y)) + ' ' + line.name;
  52. 980.  +     var g = ev.currentTarget.graph, line = ev.currentTarget.line;
  53. 981.  +     for (var l = 0; l < g.lines.length; l++) {
  54. 982.  +       if (g.lines[l] == line) {
  55. 983.  +         g.showDotTT(l);
  56. 984.  +         break;;
  57. 986.  -       line.dotLabel.innerHTML = text;
  58. 987.  -       var sz = getSize(line.dotLabel)[0];
  59. 988.  -       if (pos + sz + line.dot.posX > g.viewWidth) {
  60. 989.  -         line.dotLabel.innerHTML = line.name + ' ' + (dot.l ? dot.l : formatValue(dot.y));
  61. 990.  -         line.dotLabel.style.left = pos - (sz - line.dotLabel.w) + "px";
  62. 991.  -       } else
  63. 992.  -         line.dotLabel.style.left = pos + "px";
  64. 993.  -
  65. 994.  -       for (var l = 0; l < g.lines.length; l++)
  66. 995.  -         g.lines[l].dotLabel.style.zIndex = (g.lines[l] == line) ? 1000 : 200;
  67. 1024.  -     if (!this.smoothLines) {
  68. 1025.  +     if (this.rightTime - this.leftTime >= 35 * 24 * 60 * 60) {
  69. 1037.  -       text += (dot.l ? dot.l : formatValue(dot.y)) + ' &ndash; ' + line.name;
  70. 1038.  +       text += (dot.l ? dot.l : formatValue(dot.y)) + ' ' + line.name;
  71. 1111.  -     if (this.isNegative)
  72. 1112.  -       drawLines(ctx, 0, 4, this.viewWidth, 32, this.lines, this.minTime, this.maxTime, this.xfactorOut, this.yfactorOut, -this.localBottom, true, null, false);
  73. 1113.  +     if (this.minValue < -1e-6)
  74. 1114.  +       drawLines(ctx, 0, 4, this.viewWidth, 32, this.lines, this.minTime, this.maxTime, this.xfactorOut, this.yfactorOut, -this.minValue, true, null);
  75. 1116.  -       drawLines(ctx, 0, 4, this.viewWidth, 36, this.lines, this.minTime, this.maxTime, this.xfactorOut, this.yfactorOut, 0, true, null, false);
  76. 1117.  +       drawLines(ctx, 0, 4, this.viewWidth, 36, this.lines, this.minTime, this.maxTime, this.xfactorOut, this.yfactorOut, 0, true, null);
  77. 1144.  -     var localMax = (this.adjust ? -1e9 : 0), localMin = (this.adjust ? 1e9 : 0), outMax = 0, outMin = 0, dotsVisible = 0;
  78. 1145.  +     var localMax = (this.adjust ? -1e9 : 0), localMin = (this.adjust ? 1e9 : 0), outMax = 0, outMin = 0;
  79. 1156.  -         if (enIdx >= stIdx && (ps[enIdx].x >= this.leftTime) && (ps[stIdx].x <= this.rightTime)) {
  80. 1157.  +         if (enIdx >= stIdx && (ps[enIdx].x >= this.leftTime) && (ps[stIdx].x <= this.rightTime))
  81. 1164.  -           dotsVisible = Math.max(dotsVisible, enIdx - stIdx);
  82. 1165.  -         }
  83. 1185.  -     this.smoothLines = dotsVisible < 30 ? true : false;
  84. 1293.  -       drawLines(ctx, 0, 9, this.viewWidth, this.viewHeight - 43, this.lines, this.leftTime, this.rightTime, this.xfactorIn, this.yfactorIn, -this.localBottom, false, this.activeLine, this.smoothLines);
  85. 1294.  +       drawLines(ctx, 0, 9, this.viewWidth, this.viewHeight - 43, this.lines, this.leftTime, this.rightTime, this.xfactorIn, this.yfactorIn, -this.localBottom, false, this.activeLine);
  86. 1296.  -       drawLines(ctx, 0, 9, this.viewWidth, this.viewHeight - 34, this.lines, this.leftTime, this.rightTime, this.xfactorIn, this.yfactorIn, this.adjust ? -this.localBottom : 0, false, this.activeLine, this.smoothLines);
  87. 1297.  +       drawLines(ctx, 0, 9, this.viewWidth, this.viewHeight - 34, this.lines, this.leftTime, this.rightTime, this.xfactorIn, this.yfactorIn, this.adjust ? -this.localBottom : 0, false, this.activeLine);
  88. 1321.  -       }
  89. 1322.  -       if (line.legend.parentNode) {
  90. 1323.  -         line.legend.parentNode.removeChild(line.legend);
  91. 1325.  +       line.legend.parentNode.removeChild(line.legend);
  92. 1440.  -       addEventEx(this, line.dotLabel, 'mouseover', this.expandLabel);
  93. 1441.  +       //addEventEx(this, line.dotLabel, 'mouseover', this.expandLabel);
  94. 1601.  -         var colors_row = l % 4;
  95. 1602.  -         colors_row = colors_row == 1 ? 3 : colors_row;
  96. 1603.  -         line.c = colors[(colors_row * 8 + Math.floor(l / 4)) % colors.length];
  97. 1604.  +         line.c = colors[((l % 4) * 8 + Math.floor(l / 4)) % colors.length];
  98. ------
  99. Файл - page.css:
  100. различия невозможно определить в SWF файлах.
  101. Файл - im.css:
  102. 806.  -   margin-right: 2px;
  103. 807.  +   margin-right: 4px;
  104. 928.  -   padding: 6px 0 0 5px;
  105. 929.  +   padding: 6px 0 0 3px;
  106. 1518.  -   width: 328px;
  107. 1519.  +   width: 330px;
  108. 1521.  -   padding: 3px 25px 3px 3px;
  109. 1522.  +   padding: 3px 23px 3px 3px;
  110. 1879.  - }
  111. 1880.  - #im_rcemoji {
  112. 1881.  -   width: 400px;
  113. 1882.  - }
  114. 1883.  - .im_rc_emojibtn {
  115. 1884.  -   display: inline-block;
  116. 1885.  -   *display: block;
  117. 1886.  -   zoom: 1;
  118. 1887.  -   padding: 3px 3px;
  119. 1888.  - }
  120. 1889.  - .im_rc_emojibtn:hover {
  121. 1890.  -   background: #D5DDE5;
  122. 1891.  -   text-decoration: none;
  123. 1892.  -   -webkit-border-radius: 2px;
  124. 1893.  -   -khtml-border-radius: 2px;
  125. 1894.  -   -moz-border-radius: 2px;
  126. 1895.  -   border-radius: 2px;
  127. 1896.  - }
  128. 1897.  - .im_rc_emojibtn:active {
  129. 1898.  -   background: #C9D2DB;
  130. 1899.  - }
  131. 1900.  - .im_rcem_cont {
  132. 1901.  -   width: 156px;
  133. 1902.  -   overflow: hidden;
  134. 1903.  -   padding: 1px 0px 0px 4px;
  135. 1904.  - }
  136. 1905.  - .im_peer_multi .im_rcem_cont {
  137. 1906.  -   width: 134px;
  138. ------
  139. Файл - im.js:
  140. различия невозможно определить в SWF файлах.
  141. Файл - lang:
  142. 0.  - try{stManager.done('lang0_0.js');}catch(e){}
  143. 1.  - audio_do_you_want_flash='������ ������� �� �������� ��������� �������������?';
  144. 2.  - audio_you_need_flash='��� ����, ����� ��������������� �������������, ��� ���������� ���������� Flash-�������������.';
  145. 3.  - box_cancel='������';
  146. 4.  - box_close='�������';
  147. 5.  - box_loading='��������...';
  148. 6.  - box_no='���';
  149. 7.  - box_restore='������������';
  150. 8.  - box_save='���������';
  151. 9.  - box_send='���������';
  152. 10.  - box_yes='��';
  153. 11.  - captcha_cancel='������';
  154. 12.  - captcha_enter_code='������� ��� � ��������';
  155. 13.  - captcha_send='���������';
  156. 14.  - claims_flood_error='�� ��� ��������� ��������� �����. ����������, ��������� ������� ������ ��������� �����.';
  157. 15.  - datepicker_date_format='{day} {month} {year}';
  158. 16.  - datepicker_month_format='{month} {year}';
  159. 17.  - ebrowse_event_types='���� �������';
  160. 18.  - fill_balance='�������� ������';
  161. 19.  - functions_sure_delete='�� ������������� ������ ������� ��� ������?';
  162. 20.  - global_add='��������';
  163. 21.  - global_add_media_more='������..';
  164. 22.  - global_back='�����';
  165. 23.  - global_Complain_video='������������';
  166. 24.  - global_cancel='������';
  167. 25.  - global_captcha_input_here='������� ��� ����';
  168. 26.  - global_changes_saved='��������� ���������';
  169. 27.  - global_charged_zone_continue='����������';
  170. 28.  - global_charged_zone_title='��������������';
  171. 29.  - global_close='�������';
  172. 30.  - global_continue='����������';
  173. 31.  - global_day_label='����:';
  174. 32.  - global_delete='�������';
  175. 33.  - global_done='������';
  176. 34.  - global_dont_delete='�� �������';
  177. 35.  - global_edit='�������������';
  178. 36.  - global_error='������';
  179. 37.  - global_error_occured='��������� ������';
  180. 38.  - global_lang_box_title='����� �����';
  181. 39.  - global_min='��������';
  182. 40.  - global_money_amount_rub=['','%s �����','%s �����','%s ������'];
  183. 41.  - global_money_amount_rub_text=['','�����','�����','������'];
  184. 42.  - global_money_amount_votes_text=['','�����','������','�������'];
  185. 43.  - global_month_label='�����:';
  186. 44.  - global_num_date_year_time=['','{num_day}.{month}.{short_year} {num_hour}:{minute}','�����, {num_hour}:{minute}','�������, {num_hour}:{minute}','������, {num_hour}:{minute}'];
  187. 45.  - global_online=['','Online','Online'];
  188. 46.  - global_online_sm=['','online','online'];
  189. 47.  - global_privacy_except='�����:';
  190. 48.  - global_rating_box_header='�������';
  191. 49.  - global_recommended_exceeded=['','������������� ����� �������� �� %s ����.','������������� ����� �������� �� %s �����.','������������� ����� �������� �� %s ������.'];
  192. 50.  - global_recommended_lines=['','������������� ����� �������� �� %s ������.','������������� ����� �������� �� %s ������.','������������� ����� �������� �� %s �����.'];
  193. 51.  - global_save='���������';
  194. 52.  - global_search_not_found='�� ������� {search} ������ �� �������.';
  195. 53.  - global_tags_me='�';
  196. 54.  - global_to_top='������';
  197. 55.  - global_try_to_activate='������ ������� ����? �������� ����������<br>{link}��������� ����� ��������� ������� &#187;{/link}';
  198. 56.  - global_unknown_error='����������� ������';
  199. 57.  - global_vkontakte='���������';
  200. 58.  - global_warning='�������������e';
  201. 59.  - global_write_msg='�������� ���������';
  202. 60.  - global_X_people=['','%s �������','%s ��������','%s �������'];
  203. 61.  - global_year_label='���:';
  204. 62.  - graph_day_fullmon_year_hour='{day} {dayMonth} {year}, {hour}:00';
  205. 63.  - graph_day_fullmon_year_hour_min='{day} {dayMonth} {year}, {hour}:{min}';
  206. 64.  - guest_password='������:';
  207. 65.  - Higher_education='������ �����������';
  208. 66.  - head_fr_online_tip='�������� ������ ������';
  209. 67.  - head_search_results='���������� ������';
  210. 68.  - Interests='��������:';
  211. 69.  - im_already_shown='���� ���������� ��������� ��� ������� � ����� ��������, ��� ���������� ������ ������� �� ����.';
  212. 70.  - im_already_shown_title='���������� ���������';
  213. 71.  - its_spam='��� ����';
  214. 72.  - its_spam_sm='��� ����';
  215. 73.  - leftAd_Details='���������';
  216. 74.  - leftAd_details='���������';
  217. 75.  - leftAd_news='�������';
  218. 76.  - leftAd_reminder='�����������';
  219. 77.  - Military_place='��������� �����:';
  220. 78.  - Month1='������';
  221. 79.  - Month10='�������';
  222. 80.  - Month10_of='�������';
  223. 81.  - Month11='������';
  224. 82.  - Month11_of='������';
  225. 83.  - Month12='�������';
  226. 84.  - Month12_of='�������';
  227. 85.  - Month1_of='������';
  228. 86.  - Month2='�������';
  229. 87.  - Month2_of='�������';
  230. 88.  - Month3='����';
  231. 89.  - Month3_of='�����';
  232. 90.  - Month4='������';
  233. 91.  - Month4_of='������';
  234. 92.  - Month5='���';
  235. 93.  - Month5_of='���';
  236. 94.  - Month6='����';
  237. 95.  - Month6_of='����';
  238. 96.  - Month7='����';
  239. 97.  - Month7_of='����';
  240. 98.  - Month8='������';
  241. 99.  - Month8_of='�������';
  242. 100.  - Month9='��������';
  243. 101.  - Month9_of='��������';
  244. 102.  - month10sm_of='���';
  245. 103.  - month10_of='�������';
  246. 104.  - month11sm_of='���';
  247. 105.  - month11_of='������';
  248. 106.  - month12sm_of='���';
  249. 107.  - month12_of='�������';
  250. 108.  - month1sm_of='���';
  251. 109.  - month1_of='������';
  252. 110.  - month2sm_of='���';
  253. 111.  - month2_of='�������';
  254. 112.  - month3sm_of='���';
  255. 113.  - month3_of='�����';
  256. 114.  - month4sm_of='���';
  257. 115.  - month4_of='������';
  258. 116.  - month5sm_of='���';
  259. 117.  - month5_of='���';
  260. 118.  - month6sm_of='���';
  261. 119.  - month6_of='����';
  262. 120.  - month7sm_of='���';
  263. 121.  - month7_of='����';
  264. 122.  - month8sm_of='���';
  265. 123.  - month8_of='�������';
  266. 124.  - month9sm_of='���';
  267. 125.  - month9_of='��������';
  268. 126.  - pagination_allpages='���';
  269. 127.  - privacy_access='������:';
  270. 128.  - privacy_cancel='������';
  271. 129.  - privacy_custom_title='��������� �����������';
  272. 130.  - privacy_N_friends_more=['','� ��� %s �����','� ��� %s ������','� ��� %s ������'];
  273. 131.  - privacy_options_advanced_settings='���, �����...';
  274. 132.  - privacy_options_advanced_settings_dat='����, �����...';
  275. 133.  - privacy_options_all_users='��� ������������';
  276. 134.  - privacy_options_all_users_dat='���� �������������';
  277. 135.  - privacy_options_friends_and_friends='������ � ������ ������';
  278. 136.  - privacy_options_friends_and_friends_dat='������� � ������� ������';
  279. 137.  - privacy_options_friends_only='������ ������';
  280. 138.  - privacy_options_friends_only_dat='������ �������';
  281. 139.  - privacy_options_nobody='�����';
  282. 140.  - privacy_options_only_me='������ �';
  283. 141.  - privacy_options_only_me_dat='������ ���';
  284. 142.  - privacy_options_some_friends='��������� ������';
  285. 143.  - privacy_options_some_friends_dat='��������� �������';
  286. 144.  - privacy_options_some_friend_lists='��������� ������ ������';
  287. 145.  - privacy_options_some_friend_lists_dat='��������� ������� ������';
  288. 146.  - privacy_save='���������';
  289. 147.  - privacy_somefriends='��������� ��������� ������';
  290. 148.  - Religion='�������������:';
  291. 149.  - Remove_from_friends='������ �� ������';
  292. 150.  - rate_from='�� {user}';
  293. 151.  - rate_you_have_N_unused=['','� ��� <b>%s</b> ���������������� �����.','� ��� <b>%s</b> ���������������� ������.','� ��� <b>%s</b> ���������������� �������.'];
  294. 152.  - Save='���������';
  295. 153.  - School='�����';
  296. 154.  - Secondary_education='������� �����������';
  297. 155.  - Sendmsg='��������� ���������';
  298. 156.  - Sex='���:';
  299. 157.  - Sex_fm='�������';
  300. 158.  - Sex_m='�������';
  301. 159.  - search_by_ad='�� �����������';
  302. 160.  - search_by_app='�� �����������';
  303. 161.  - search_by_audio='�� ������������';
  304. 162.  - search_by_event='�� ��������';
  305. 163.  - search_by_goods='�� �������';
  306. 164.  - search_by_group='�� �������';
  307. 165.  - search_by_note='�� ��������';
  308. 166.  - search_by_person='�� �����';
  309. 167.  - search_by_question='�� ��������';
  310. 168.  - search_by_status='�� ��������';
  311. 169.  - search_by_topic='�� �����';
  312. 170.  - search_by_video='�� ������������';
  313. 171.  - select_chair_not_selected='- �� ������� -';
  314. 172.  - select_chair_select='������� ��������';
  315. 173.  - select_city_not_found='����� �� ������';
  316. 174.  - select_city_not_selected='- �� ������ -';
  317. 175.  - select_city_other_city='- ������ -';
  318. 176.  - select_city_select='������� ��������';
  319. 177.  - select_class_not_selected='- �� ������ -';
  320. 178.  - select_country_full_list='- ������ ������ -';
  321. 179.  - select_country_not_found='������ �� �������';
  322. 180.  - select_country_not_selected='- �� ������� -';
  323. 181.  - select_country_select='������� ������';
  324. 182.  - select_district_not_selected='- �� ������ -';
  325. 183.  - select_eduform_not_selected='- �� ������� -';
  326. 184.  - select_edustatus_not_selected='- �� ������ -';
  327. 185.  - select_fac_not_selected='- �� ������ -';
  328. 186.  - select_fac_select='������� ��������';
  329. 187.  - select_house_not_found='��� �� ������';
  330. 188.  - select_house_not_selected='- �� ������ -';
  331. 189.  - select_house_select='������� �����';
  332. 190.  - select_place_not_found='�������� �� �������';
  333. 191.  - select_place_not_selected='- �� ������� -';
  334. 192.  - select_place_select='������� ��������';
  335. 193.  - select_school_not_found='����� �� �������';
  336. 194.  - select_school_not_selected='- �� ������� -';
  337. 195.  - select_school_select='������� ��������';
  338. 196.  - select_station_not_selected='- �� ������� -';
  339. 197.  - select_street_not_found='����� �� �������';
  340. 198.  - select_street_not_selected='- �� ������� -';
  341. 199.  - select_street_select='������� ��������';
  342. 200.  - select_uni_not_found='��� �� ������';
  343. 201.  - select_uni_not_selected='- �� ������ -';
  344. 202.  - select_uni_select='������� ��������';
  345. 203.  - sex_fm='�������';
  346. 204.  - sex_m='�������';
  347. 205.  - share_go='�������';
  348. 206.  - Today='�������';
  349. 207.  - Town='�����:';
  350. 208.  - text_exceeds_symbol_limit=['','���������� ����� �������� �� %s ����.','���������� ����� �������� �� %s �����.','���������� ����� �������� �� %s ������.'];
  351. 209.  - text_N_symbols_remain=['','������� %s ����.','�������� %s �����.','�������� %s ������.'];
  352. 210.  - today='�������';
  353. 211.  - top_search='������ {query}';
  354. 212.  - top_search_all_friends='�������� ���� ������';
  355. 213.  - top_search_news='������ {query} � ��������';
  356. 214.  - top_search_tip='����� �� ������ ������ ��� � �������';
  357. 215.  - Univ='���:';
  358. 216.  - Updates='����������';
  359. 217.  - updates='����������';
  360. 218.  - videofile_num=['','�����������','�����������','������������'];
  361. 219.  - votes_flex=['','�����','������','�������'];
  362. 220.  - Work_place='����� ������:';
  363. 221.  - yesterday='�����';
  364. 222.  - // section = 0; version = 370;
  365. 223.  -
  366. 224.  - friends_no_user_selected='�� �� ������� �� ������ ������������.';
  367. 225.  - // section = 2; version = 203;
  368. 226.  -
  369. 227.  - audio_add_to_album='�������� � ������';
  370. 228.  - audio_add_to_audio='�������� � ��� �����������';
  371. 229.  - audio_add_to_group='�������� � ����������� ����������';
  372. 230.  - audio_album_no_recs='� ������� ��� ��� ������������.';
  373. 231.  - audio_back_to_group='������� � ������';
  374. 232.  - audio_back_to_public='������� � ��������';
  375. 233.  - audio_change_album='{link}�������� ������{/link}: {title}';
  376. 234.  - audio_change_album_name='�������� ��������';
  377. 235.  - audio_claim_delete='������� �����������';
  378. 236.  - audio_claim_objection='�������� ����������� �����';
  379. 237.  - audio_claim_warning='����������� {audio} ���� ������ �� ���������� ������� � ����� � ���������� ���������������.';
  380. 238.  - audio_claim_warning_objection='����������� {audio} ���� ������ �� ���������� ������� � ����� � ���������� ���������������.<br><br>�� ������ �������� ������, {objection_link}, ��� {delete_link}, ���������� ��������� �����.';
  381. 239.  - audio_claim_warning_text='����������� {audio} ���� ������ �� ���������� ������� � ����� � ���������� ���������������.<br><br>�� ������ {delete_link}, ���������� ��������� �����.';
  382. 240.  - audio_claim_warning_title='������� �����������';
  383. 241.  - audio_common_list='����� ������';
  384. 242.  - audio_crap_warning='����������� {audio} ���� ������ �� ���������� ������� �� ������� ���������� ���������� ��������.';
  385. 243.  - audio_crap_warning_text='����������� {audio} ���� ������ �� ���������� ������� �� ������� ���������� ���������� ��������.<br><br>�� ������ {delete_link}.';
  386. 244.  - audio_crap_warning_title='������� �����������';
  387. 245.  - audio_delete='�������';
  388. 246.  - audio_delete_album='������� ������';
  389. 247.  - audio_delete_album_are_you_sure='�� �������, ��� ������ ������� ���� ������?';
  390. 248.  - audio_delete_album_button='�������';
  391. 249.  - audio_delete_album_title='�������� �������';
  392. 250.  - audio_delete_all_title='�������� ������������';
  393. 251.  - audio_edit='�������������';
  394. 252.  - audio_edit_additionally='�������������';
  395. 253.  - audio_edit_album='������������� ������';
  396. 254.  - audio_edit_album_title='�������������� �������';
  397. 255.  - audio_edit_cancel='������';
  398. 256.  - audio_edit_deleting='�������� �����������';
  399. 257.  - audio_edit_deleting_error='��� �������� ����� ��������� ������:';
  400. 258.  - audio_edit_dont_show_search='�� �������� ��� ������';
  401. 259.  - audio_edit_edit='�������������';
  402. 260.  - audio_edit_editing='�������������� �����������';
  403. 261.  - audio_edit_name='��������:';
  404. 262.  - audio_edit_no='���';
  405. 263.  - audio_edit_noname='��� ��������';
  406. 264.  - audio_edit_singer='�����������:';
  407. 265.  - audio_edit_sure_delete='�� ������������� ������ ������� ��� �����������?';
  408. 266.  - audio_edit_text='����� �����:';
  409. 267.  - audio_edit_unknown='����������� �����������';
  410. 268.  - audio_edit_yes='��';
  411. 269.  - audio_enter_album_name='������� �������� �������';
  412. 270.  - audio_error_loading='��� �������� ����������� ��������� ������. ���������� �������� ��������.';
  413. 271.  - audio_export_tip='������������� �� ��� ��������';
  414. 272.  - audio_global_search_found=['','� ������ ������� %s �����������','� ������ ������� %s �����������','� ������ ������� %s ������������'];
  415. 273.  - audio_group_no_recs='� ���������� ��� ��� ������������.';
  416. 274.  - audio_group_no_your_recs='� ���������� ��� ��� ������������, ����������� ����.';
  417. 275.  - audio_header='��� �����������';
  418. 276.  - audio_header_edit='��������������';
  419. 277.  - audio_loading_error='�������� ������, ��� ������: {code}';
  420. 278.  - audio_lyrics_not_found='����� ����� �� ������';
  421. 279.  - audio_need_flash_title='��������� Flash-�������������';
  422. 280.  - audio_new_album_title='����� ������';
  423. 281.  - audio_not_found='����������� �� �������';
  424. 282.  - audio_no_audios_found='�� ������� {query} �� ������� �� ����� �����������';
  425. 283.  - audio_no_rec_load_msg='����� �� ������ ������� ���� �����������.<br>��� ����, ����� ��������� ���� ������ �����������, {link}������� �����{/link}.';
  426. 284.  - audio_no_your_recs='� ��� ��� ��� ������������';
  427. 285.  - audio_only_foreign_music='������ ����������';
  428. 286.  - audio_popular_audios='���������� �����������';
  429. 287.  - audio_public_no_recs='�� �������� ��� ��� ������������.';
  430. 288.  - audio_recommended_audios='������������� �����������';
  431. 289.  - audio_repeat_tooltip='��������� ��� ����������';
  432. 290.  - audio_return_to_album='��������� � �������';
  433. 291.  - audio_return_to_all='��������� � ������������';
  434. 292.  - audio_search_enter_audio_name='������� �������� ��� �����������';
  435. 293.  - audio_search_not_found='�� ������� {search} ������ �� �������.';
  436. 294.  - audio_search_no_found='������������ �� �������.';
  437. 295.  - audio_search_results='���������� ������';
  438. 296.  - audio_show_more_audios='�������� ������ ������������';
  439. 297.  - audio_show_recommendations='�������� �������';
  440. 298.  - audio_shuffle='����������';
  441. 299.  - audio_success_msg='����������� ������� ���������.';
  442. 300.  - audio_success_msg_multiple='��� ����������� ������� ���������.';
  443. 301.  - audio_track_search='����� �� ����������� � ������������';
  444. 302.  - audio_uploading_over='�������� ���������';
  445. 303.  - audio_upl_not_enabled_ingroup='� ������ ������ ��������� �����������, ������� �������� ����������� ����������.';
  446. 304.  - audio_user_no_recs='� ������������ ��� ��� ������������.';
  447. 305.  - // section = 3; version = 101;
  448. 306.  -
  449. 307.  - apps_addapp='�������� ����������';
  450. 308.  - apps_addedtogroup='���������� ��������� � ������';
  451. 309.  - apps_added_to_group='{app} �������� � ����� ����������. {link}��������{/link}.';
  452. 310.  - apps_add_to_group_button='�������� � ������';
  453. 311.  - apps_app_settings='��������� ����������';
  454. 312.  - apps_balance_minus_X_done=['','�� ��������� ������ ���������� �� <b>%s</b> �����.','�� ��������� ������ ���������� �� <b>%s</b> ������.','�� ��������� ������ ���������� �� <b>%s</b> �������.'];
  455. 313.  - apps_balance_plus_X_done=['','�� ��������� ������ ���������� �� <b>%s</b> �����.','�� ��������� ������ ���������� �� <b>%s</b> ������.','�� ��������� ������ ���������� �� <b>%s</b> �������.'];
  456. 314.  - apps_cancel='������';
  457. 315.  - apps_catalogue='������� ����������';
  458. 316.  - apps_change_settings='���������';
  459. 317.  - apps_delete='�������';
  460. 318.  - apps_delete_admin_title='�������� ��������������';
  461. 319.  - apps_delete_all_invites_title='�������� �����������';
  462. 320.  - apps_done='������';
  463. 321.  - apps_dont_show='������ �� ����������';
  464. 322.  - apps_edit='�������������';
  465. 323.  - apps_editapp='�������������';
  466. 324.  - apps_edit_settings='��������� ����������';
  467. 325.  - apps_friends_apps='���������� ������';
  468. 326.  - apps_global_search_found=['','� ������ ������� %s ����������','� ������ ������� %s ����������','� ������ ������� %s ����������'];
  469. 327.  - apps_last_notifications='��������� ����������';
  470. 328.  - apps_merchant_payment_title='������ �������';
  471. 329.  - apps_my_apps='��� ����������';
  472. 330.  - apps_need_X_votes=['','���������� ������ ��� ������ <b>%s</b> �����.','���������� ������ ��� ������ <b>%s</b> ������.','���������� ������ ��� ������ <b>%s</b> �������.'];
  473. 331.  - apps_noappsingroup2='� ������ �� ���������� �� ������ ����������.';
  474. 332.  - apps_noparticipants='��� ����������';
  475. 333.  - apps_notifies_sure_delete_all='�� �������, ��� ������ ������� ��� �����������?<br>��� �������� ������ ����� ��������.';
  476. 334.  - apps_no_apps_found='�� ������� {query} �� ������� �� ������ ����������.';
  477. 335.  - apps_no_notifications='��� ����������';
  478. 336.  - apps_of_group='���������� ������';
  479. 337.  - apps_recommended_apps='������������� ����������';
  480. 338.  - apps_remove='������';
  481. 339.  - apps_removefromgroup='������ �� ������';
  482. 340.  - apps_removefrompage='������ ����������';
  483. 341.  - apps_search_in_apps='����� �� �����������';
  484. 342.  - apps_show_full_app_description='�������� ���������..';
  485. 343.  - apps_show_more_apps='�������� ������ ����������';
  486. 344.  - apps_viewallapps='�������� ���� ��������� ����������';
  487. 345.  - apps_X_apps_found=['','������� %s ����������','������� %s ����������','������� %s ����������'];
  488. 346.  - apps_X_participants=['','%s ��������','%s ���������','%s ����������'];
  489. 347.  - apps_youaddednoapps='�� ��� �� ���������� �� ������ ����������.';
  490. 348.  - apps_youhavenoapps='� ��� ��� ��� ����������';
  491. 349.  - apps_you_have_no_notifies='� ��� ��� �� ������ ����������';
  492. 350.  - app_comments_hidecomms='������ �����������';
  493. 351.  - app_comments_showcomms='�������� �����������';
  494. 352.  - // section = 4; version = 406;
  495. 353.  -
  496. 354.  - video_add_to_public='������� � ��������� ������';
  497. 355.  - video_cancel='������';
  498. 356.  - video_delete_from_public='������ �� �������';
  499. 357.  - video_done='������';
  500. 358.  - video_flash_needed='��� ��������� ��������� {flash_player} ��������� ������.';
  501. 359.  - // section = 5; version = 147;
  502. 360.  -
  503. 361.  - notes_cancel='������';
  504. 362.  - notes_done='������';
  505. 363.  - notes_livejournal_delete='������� ��� ������ �� <b>LiveJournal</b>.';
  506. 364.  - // section = 7; version = 61;
  507. 365.  -
  508. 366.  - admin_added_items_digit_search='����� ����';
  509. 367.  - // section = 8; version = 2;
  510. 368.  -
  511. 369.  - blank_note_not_found='������� �� �������';
  512. 370.  - // section = 10; version = 17;
  513. 371.  -
  514. 372.  - events_ajax_inv_declined_spam='����������� ��������� � �������� ��� ����.';
  515. 373.  - events_fri='��';
  516. 374.  - events_goto_search='������� � ������';
  517. 375.  - events_mon='��';
  518. 376.  - events_sat='��';
  519. 377.  - events_sun='��';
  520. 378.  - events_thu='��';
  521. 379.  - events_tue='��';
  522. 380.  - events_wed='��';
  523. 381.  - // section = 13; version = 76;
  524. 382.  -
  525. 383.  - fave_return_to_fave='��������';
  526. 384.  - // section = 14; version = 81;
  527. 385.  -
  528. 386.  - gifts_cansend_X_gifts=['','�� ������ ���������<br>�� ����� <b>%s</b> �������.','�� ������ ���������<br>�� ����� <b>%s</b> ��������.','�� ������ ���������<br>�� ����� <b>%s</b> ��������.'];
  529. 387.  - gifts_confirm_N_Votes=['','<b>%s</b> �����','<b>%s</b> ������','<b>%s</b> �������'];
  530. 388.  - gifts_confirm_send_to_N_friends=['','������� ����� ��������� %s ����� ({votes}). ����������?','������� ����� ��������� %s ������� ({votes}). ����������?','������� ����� ��������� %s ������� ({votes}). ����������?'];
  531. 389.  - gifts_rate_increase='��� �������� ����� ������� ������� ���������� ���������� �� <b>{gifts_count}</b>.';
  532. 390.  - gifts_X_gifts=['','<b>%s</b> �������','<b>%s</b> �������','<b>%s</b> ��������'];
  533. 391.  - gifts_X_votes=['','%s �����','%s ������','%s �������'];
  534. 392.  - // section = 15; version = 32;
  535. 393.  -
  536. 394.  - groups_admins='��������������';
  537. 395.  - groups_admins_of_group='�������������� ������';
  538. 396.  - groups_appl_rejected='������ ���������.';
  539. 397.  - groups_assign='���������';
  540. 398.  - groups_assigned='�������� �������� �������������.';
  541. 399.  - groups_assigning_manager='���������� ������������';
  542. 400.  - groups_cancel='������';
  543. 401.  - groups_cancel2='��������';
  544. 402.  - groups_create_enter='����������, ������� �������� ������';
  545. 403.  - groups_create_new='�������� ������ ����������';
  546. 404.  - groups_delete_manager='�������� ������������';
  547. 405.  - groups_deleting_link='�������� ������';
  548. 406.  - groups_edit='�������������';
  549. 407.  - groups_editing_link='�������������� ������';
  550. 408.  - groups_enter_name='��������';
  551. 409.  - groups_enter_post='������� ���������:';
  552. 410.  - groups_group_admin='������������� ������';
  553. 411.  - groups_group_create_button='������� ����������';
  554. 412.  - groups_inv_cancelled='����������� ��������.';
  555. 413.  - groups_limit_message='� ���������, �� �� ������ ���� ��������� �����, ��� �� 5000 ��������� ������������.';
  556. 414.  - groups_limit_title='��������� ������';
  557. 415.  - groups_no='���';
  558. 416.  - groups_officers='������������';
  559. 417.  - groups_officers_of_group='������������ ������';
  560. 418.  - groups_partic_accepted='�������� ������.';
  561. 419.  - groups_partic_deleted='�������� ������.';
  562. 420.  - groups_reject_invint='��������� �����������';
  563. 421.  - groups_sure_delete_link='�� ������������� ������ ������� ������ �� ��� ������?';
  564. 422.  - groups_sure_delete_manager='�� ������������� ������ ������� ����� �������� �� �������������?';
  565. 423.  - groups_to_all_posts='�� ���� �������';
  566. 424.  - groups_unbanned='������������ ������ �� ���-�����';
  567. 425.  - groups_yes='��';
  568. 426.  - // section = 17; version = 171;
  569. 427.  -
  570. 428.  - help_ccform_need_rules='�� ������ ����������� � ��������� ������ ������������ �����, ��������� � ����������� �������� �� ����� ���������.';
  571. 429.  - help_ccobjection_need_email='�� ������ �������� �������� � ���, ��� ��������� ���� ����� ����������� ����� ����� �������������� �������������� ����� ��� ���������� ������������ �� ������.';
  572. 430.  - help_ccobjection_need_inform='�� ������ �������� ���� �������� � ���, ��� ��������� ���� ������ � ��� � ���� ���������� ����� ���������� ���������������.';
  573. 431.  - help_ccobjection_need_rules='�� ������ ����������� � ��������� ������ ������������ �����, ��������� � ����������� �������� �� ����� ���������.';
  574. 432.  - // section = 18; version = 104;
  575. 433.  -
  576. 434.  - login_enter='�����';
  577. 435.  - login_wrong_email_pwd='������ �������� ����� ��� ������.';
  578. 436.  - // section = 21; version = 97;
  579. 437.  -
  580. 438.  - mail_cancel='������';
  581. 439.  - mail_close='�������';
  582. 440.  - mail_delete='�������';
  583. 441.  - mail_deleteall1='������� ��� ���������';
  584. 442.  - mail_delete_all_spam='������� ��� ���������, ���������� ����?';
  585. 443.  - mail_error='������';
  586. 444.  - mail_markedspam='��������� �������� ��� ����.';
  587. 445.  - mail_marked_as_spam='��������� �������� ��� ���� � �������.';
  588. 446.  - mail_restored='��������� �������������';
  589. 447.  - mail_restoremark='������������ ����������';
  590. 448.  - // section = 22; version = 230;
  591. 449.  -
  592. 450.  - matches_close='�������';
  593. 451.  - matches_closed='�������';
  594. 452.  - matches_no_accepted='����� ������.';
  595. 453.  - matches_open='�������';
  596. 454.  - matches_user_deleted='������������ ������ �� ������.';
  597. 455.  - matches_yes_accepted='�������� �������.';
  598. 456.  - // section = 24; version = 1;
  599. 457.  -
  600. 458.  - payments_amount_rubles=['','�����','�����','������'];
  601. 459.  - payments_amount_votes=['','�����','������','�������'];
  602. 460.  - payments_cancel='������';
  603. 461.  - payments_card_verified_msg='�� �����������, ��� ��������� ���������� �����.';
  604. 462.  - payments_close='�������';
  605. 463.  - payments_error='������';
  606. 464.  - payments_fee_full='�������� {amount} �. ({percent}%)';
  607. 465.  - payments_fee_votes=['','�����: %s �����','�����: %s �����','�����: %s ������'];
  608. 466.  - payments_min_amount_limit_rubles='����������� �����: %s �.';
  609. 467.  - payments_msg_deleted='��������� �������.';
  610. 468.  - payments_N_tries_left_msg=['','� ��� �������� ���� �������.','� ��� �������� %s �������.','� ��� �������� %s �������.'];
  611. 469.  - payments_payment_system_submit='��������';
  612. 470.  - payments_please_enter_money='���������� ������ ����� �������.';
  613. 471.  - payments_really_start_over_msg='�� ������������� ������ ������ ��������� ������?';
  614. 472.  - payments_really_use_other_msg='�� ������������� ������ ������������ ������ ����� ��� ���������� ��������?';
  615. 473.  - payments_send='���������';
  616. 474.  - payments_thanks_for_comm='������� �� ��� �����.';
  617. 475.  - payments_verify_start_over_header='�� �������?';
  618. 476.  - payments_verify_sum_currency='������ ��������������� ����������:';
  619. 477.  - payments_verify_sum_dialog='������� ����� ��������������� ����������:';
  620. 478.  - payments_verify_sum_header='������� �����';
  621. 479.  - payments_verify_sum_howto_dialog='����� ��������������� ���������� �� ������ ������:<br><ul class="listing"><li><span> ����������� � ������ ���������� ��������� ����� �� ��������, ���������� �� �������� ������� ����� �����. �������� ���������, ��� �� ������ ��� ��������� ������ � ��������-��������, �, ��� ������������� ����� �� ������������� �����, ��� ���������� ���������� � ����� ����������. ��� �������� ���������������� ����, ����� ���� ����������� ����������.</span></li><li><span> ����� ������� ���������� ����������� ������������ ��������-����/����-������ - � ������ �������������� ������ ������ ������-���������;</span></li><li><span> c ������� ������ SMS-�������������� - � ������ �������������� ������ ������ ������-���������.</span></li></ul>';
  622. 480.  - payments_verify_sum_howto_header='��� ������ ����� ��������������� ����������';
  623. 481.  - payments_wait_verifying_msg='����������, ���������. �������� ����� ������ 5-10 �����.';
  624. 482.  - payments_wrong_sum_msg='����� ��������������� ���������� ������� �������, ���������� �����.';
  625. 483.  - payments_your_comm='��� �����';
  626. 484.  - payment_no_more_tries_msg='����� ��������������� ���������� ������� �������. �� ��������� ���������� ������� ��� ���� ��������������� ����������. ��� ���������� ��������� ������� ������������� ������, ����� ������ &quot;������������ �����&quot;.';
  627. 485.  - // section = 28; version = 227;
  628. 486.  -
  629. 487.  - photos_cancel='������';
  630. 488.  - photos_crop_info='������� �������, ������� ����� ��������� ��� ���������� ����� ��������.';
  631. 489.  - photos_done='������';
  632. 490.  - photos_tags_info='������� �� �������, ��� ��������� �������, � �� ����� �������� �� ����������. �� ������ ��������� ����� ���������� ������ �� ����������.';
  633. 491.  - photos_tags_ok='������';
  634. 492.  - photos_viewer_exit='����� �� ������ ���������';
  635. 493.  - photo_comment_marked_as_spam='����������� ������� ��� ����.';
  636. 494.  - photo_dont_close='����������, �� ���������� ��� ����, ���� ���������� �� ����������.';
  637. 495.  - photo_rotating='������������';
  638. 496.  - photo_uploading_photo='��� �������� ����������';
  639. 497.  - // section = 30; version = 148;
  640. 498.  -
  641. 499.  - ads_image_too_small='�� ��������� ��������� ������� ��������� ����������.<br>�������� ���������� �������� ������� � ��������� �������.';
  642. 500.  - profile_mention_not_found='������������ �� ������';
  643. 501.  - profile_mention_start_typing='������� ������� ��� ����� ��� �������� ����������';
  644. 502.  - profile_oph_crop_desc='�������� ������� ���������� ������� ��� ��������� ����������.<br>��������� ��������� ����� �������������� � ��������, ������ ���������� � ������������.';
  645. 503.  - // section = 31; version = 313;
  646. 504.  -
  647. 505.  - reg_sex_not_set='- �� ����� -';
  648. 506.  - // section = 35; version = 94;
  649. 507.  -
  650. 508.  - search_adv_any_sex='�����';
  651. 509.  - search_nothing_found='������ �� �������';
  652. 510.  - // section = 36; version = 151;
  653. 511.  -
  654. 512.  - stats_data_empty='��� ������';
  655. 513.  - stats_day_mon='{day} {month}';
  656. 514.  - stats_day_month_year='{day} {month} {year}';
  657. 515.  - stats_error_loading='������ ��� ��������';
  658. 516.  - stats_good_browser_box_msg='� ���������, ��� ������� �� ������������ ����������� �������� ����������.<br><br>����� ������������ ��� ����������� �����, �� ������ ��������� � ���������� ���� �� ����������� ���������:';
  659. 517.  - stats_loading='��������...';
  660. 518.  - stats_need_flash_title='��������� Flash Player';
  661. 519.  - stats_no_data='����������� ������� ������';
  662. 520.  - stats_you_need_flash='��� ��������� ���������� ��������� {flash_player} ��������� ������.<br><br>������ ������� �� �������� ��������� Flash Player?';
  663. 521.  - // section = 38; version = 42;
  664. 522.  -
  665. 523.  - paysupp_error='������';
  666. 524.  - temp_messages_in_topic_function=['','� ���������� %s ���������.','� ���������� %s ���������.','� ���������� %s ���������.'];
  667. 525.  - temp_post_too_long_function=['','���������� ����� ������ ��������� �� %s ����.','���������� ����� ������ ��������� �� %s �����.','���������� ����� ������ ��������� �� %s ������.'];
  668. 526.  - // section = 39; version = 229;
  669. 527.  -
  670. 528.  - wall_post_not_found='������ �� �������';
  671. 529.  - wall_publish_now='������������ ������';
  672. 530.  - wall_send='���������';
  673. 531.  - // section = 41; version = 105;
  674. 532.  -
  675. 533.  - vkontakte_ru='���������';
  676. 534.  - // section = 42; version = 208;
  677. 535.  -
  678. 536.  - offers_reban='������� � ������';
  679. 537.  - offers_unban='������� �� ������';
  680. 538.  - // section = 59; version = 127;
  681. 539.  -
  682. 540.  -
  683. 541.  - var langConfig = {"id":0,"numDel":"<span class=\"num_delim\"> <\/span>","numDelS":" ","numDec":",","prepTags":["{prep_with}","{prep_With}","{prep_about}","{prep_About}"],"prep":[["{prep_with},{prep_With}","�*,�*","��,��"],["{prep_with},{prep_With}","*,��*,��*,Ѹ*,��*,��*,��*,��*,��*,��*,��*,��*,Ǹ*,��*,��*,��*,��*,��*,��*","�,�"],["{prep_about},{prep_About}","�*,�*,�*,�*,�*","��,��"],["{prep_about},{prep_About}","*","�,�"]],"parent":0,"timeSys":["24hour"],"yearOffset":0,"flexLast":false,"revOrder":false,"RTL":false,"numRules":{"int":[[100,[11,12,13,14],3],[10,[1],1],[10,[2,3,4],2],["*",0,3]],"float":2},"sexRules":[[1,2],["*",1]],"larr":"&larr;","rarr":"&rarr;"};
  684. 542.  - var market_currency_count = ['RUB','UAH','KZT','USD','EUR'];
  685. 543.  -
  686. 544.  - var qArr = [[0, getLang('search_by_person'), '', 'people', 0],
  687. 545.  - [1, getLang('search_by_group'), '', 'groups', 0x00800000],
  688. 546.  - [2, getLang('search_by_event'), '', 'events', 0x01000000],
  689. 547.  - [3, getLang('search_by_audio'), '', 'audio',  0x00000002],
  690. 548.  - [4, getLang('search_by_video'), '', 'video',  0x00400000],
  691. 549.  - [5, getLang('search_by_ad'), '', 'ads', 0x00000100],
  692. 550.  - [6, getLang('search_by_app'), '', 'apps', 0x00000020],
  693. 551.  - [7, getLang('search_by_question'), '', 'questions', 0x00000040],
  694. 552.  - [8, getLang('search_by_note'), '', 'notes', 0x02000000],
  695. 553.  - [9, getLang('search_by_topic'), '', 'topics', 0x00800000],
  696. 554.  - [11, getLang('search_by_status'), '', 'statuses', 0]];
  697. 556.  - var year_offset = langConfig.yearOffset;
  698. 557.  - var larr = langConfig.larr;
  699. 558.  - var rarr = langConfig.rarr;
  700. ------
Advertisement
Add Comment
Please, Sign In to add comment