mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-12 12:46:38 +02:00
- check m_ permission for quickmod [Bug #1317]
- don't sync the global forum (id 0) [Bug #1383] - corrections to available time zones [Bug #1306] - only display open reports on mcp_front - added whois information to mcp_post [Bug #1400] - copy "dot" when copying a topic [Bug #1321] - some language corrections [Bugs #1324, #1255, #1317] - mozWrap scrolls back to previous position now [Bug #1190] - some style related corrections [Bugs #1322, #1454, #1316] - corrected copyrights [Bug #1468] - fixed links on search results page [Bug #1469] git-svn-id: file:///svn/phpbb/trunk@5779 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@ -283,7 +283,8 @@ $lang = array_merge($lang, array(
|
||||
'NEXT' => 'Next',
|
||||
'NO' => 'No',
|
||||
'NONE' => 'None',
|
||||
'NOT_WATCHING_FORUM' => 'You no subscribe to updates on this forum',
|
||||
'NOT_AUTHORIZED' => 'You are not authorized to access this area.',
|
||||
'NOT_WATCHING_FORUM' => 'You are no longer subscribed to updates on this forum.',
|
||||
'NOT_WATCHING_TOPIC' => 'You are no longer subscribed to this topic.',
|
||||
'NO_AUTH_ADMIN' => 'You do not have admin permissions and therefore not allowed to access the administration control panel.',
|
||||
'NO_AUTH_ADMIN_USER_DIFFER' => 'You are not able to re-authenticate as a different user.',
|
||||
@ -404,6 +405,7 @@ $lang = array_merge($lang, array(
|
||||
'SELECT_FORUM' => 'Select a forum',
|
||||
'SEND_EMAIL' => 'Email',
|
||||
'SEND_PRIVATE_MESSAGE' => 'Send private message',
|
||||
'SETTINGS' => 'Settings',
|
||||
'SIGNATURE' => 'Signature',
|
||||
'SKIP' => 'Skip to content',
|
||||
'SORRY_AUTH_READ' => 'You are not authorized to read this forum',
|
||||
@ -565,37 +567,45 @@ $lang = array_merge($lang, array(
|
||||
),
|
||||
|
||||
'tz' => array(
|
||||
'-12' => 'GMT - 12 Hours',
|
||||
'-11' => 'GMT - 11 Hours',
|
||||
'-10' => 'GMT - 10 Hours',
|
||||
'-9' => 'GMT - 9 Hours',
|
||||
'-8' => 'GMT - 8 Hours',
|
||||
'-7' => 'GMT - 7 Hours',
|
||||
'-6' => 'GMT - 6 Hours',
|
||||
'-5' => 'GMT - 5 Hours',
|
||||
'-4' => 'GMT - 4 Hours',
|
||||
'-3.5' => 'GMT - 3.5 Hours',
|
||||
'-3' => 'GMT - 3 Hours',
|
||||
'-2' => 'GMT - 2 Hours',
|
||||
'-1' => 'GMT - 1 Hour',
|
||||
'-12' => 'GMT - 12 hours',
|
||||
'-11' => 'GMT - 11 hours',
|
||||
'-10' => 'GMT - 10 hours',
|
||||
'-9.5' => 'GMT - 9:30 hours',
|
||||
'-9' => 'GMT - 9 hours',
|
||||
'-8' => 'GMT - 8 hours',
|
||||
'-7' => 'GMT - 7 hours',
|
||||
'-6' => 'GMT - 6 hours',
|
||||
'-5' => 'GMT - 5 hours',
|
||||
'-4' => 'GMT - 4 hours',
|
||||
'-3.5' => 'GMT - 3:30 hours',
|
||||
'-3' => 'GMT - 3 hours',
|
||||
'-2' => 'GMT - 2 hours',
|
||||
'-1' => 'GMT - 1 hour',
|
||||
'0' => 'GMT',
|
||||
'1' => 'GMT + 1 Hour',
|
||||
'2' => 'GMT + 2 Hours',
|
||||
'3' => 'GMT + 3 Hours',
|
||||
'3.5' => 'GMT + 3.5 Hours',
|
||||
'4' => 'GMT + 4 Hours',
|
||||
'4.5' => 'GMT + 4.5 Hours',
|
||||
'5' => 'GMT + 5 Hours',
|
||||
'5.5' => 'GMT + 5.5 Hours',
|
||||
'6' => 'GMT + 6 Hours',
|
||||
'6.5' => 'GMT + 6.5 Hours',
|
||||
'7' => 'GMT + 7 Hours',
|
||||
'8' => 'GMT + 8 Hours',
|
||||
'9' => 'GMT + 9 Hours',
|
||||
'9.5' => 'GMT + 9.5 Hours',
|
||||
'10' => 'GMT + 10 Hours',
|
||||
'11' => 'GMT + 11 Hours',
|
||||
'12' => 'GMT + 12 Hours',
|
||||
'1' => 'GMT + 1 hour',
|
||||
'2' => 'GMT + 2 hours',
|
||||
'3' => 'GMT + 3 hours',
|
||||
'3.5' => 'GMT + 3:30 hours',
|
||||
'4' => 'GMT + 4 hours',
|
||||
'4.5' => 'GMT + 4:30 hours',
|
||||
'5' => 'GMT + 5 hours',
|
||||
'5.5' => 'GMT + 5:30 hours',
|
||||
'5.75' => 'GMT + 5:45 hours',
|
||||
'6' => 'GMT + 6 hours',
|
||||
'6.5' => 'GMT + 6:30 hours',
|
||||
'7' => 'GMT + 7 hours',
|
||||
'8' => 'GMT + 8 hours',
|
||||
'8.75' => 'GMT + 8:45 hours',
|
||||
'9' => 'GMT + 9 hours',
|
||||
'9.5' => 'GMT + 9:30 hours',
|
||||
'10' => 'GMT + 10 hours',
|
||||
'10.5' => 'GMT + 10:30 hours',
|
||||
'11' => 'GMT + 11 hours',
|
||||
'11.5' => 'GMT + 11:30 hours',
|
||||
'12' => 'GMT + 12 hours',
|
||||
'12.75' => 'GMT + 12:45 hours',
|
||||
'13' => 'GMT + 13 hours',
|
||||
'14' => 'GMT + 14 hours',
|
||||
'dst' => '[ DST ]',
|
||||
),
|
||||
|
||||
@ -603,13 +613,14 @@ $lang = array_merge($lang, array(
|
||||
'-12' => '[GMT-12] Eniwetok, Kwaialein',
|
||||
'-11' => '[GMT-11] Midway Island, Samoa',
|
||||
'-10' => '[GMT-10] Hawaii, Honolulu',
|
||||
'-9.5' => '[GMT-9:30] Marquesas Is.',
|
||||
'-9' => '[GMT-9] Alaska, Anchorage',
|
||||
'-8' => '[GMT-8] Los Angeles, San Francisco, Seattle',
|
||||
'-7' => '[GMT-7] Denver, Edmonton, Phoenix, Salt Lake City, Santa Fe',
|
||||
'-6' => '[GMT-6] Chicago, Guatemala, Mexico City, Saskatchewan East',
|
||||
'-5' => '[GMT-5] Bogota, Kingston, Lima, New York',
|
||||
'-4' => '[GMT-4] Caracas, Labrador, La Paz, Maritimes, Santiago',
|
||||
'-3.5' => '[GMT-3.5] Standard Time [Canada], Newfoundland',
|
||||
'-3.5' => '[GMT-3:30] Standard Time [Canada], Newfoundland',
|
||||
'-3' => '[GMT-3] Brazilia, Buenos Aires, Georgetown, Rio de Janero',
|
||||
'-2' => '[GMT-2] Mid-Atlantic',
|
||||
'-1' => '[GMT-1] Azores, Cape Verde Is.',
|
||||
@ -617,20 +628,27 @@ $lang = array_merge($lang, array(
|
||||
'1' => '[GMT+1] Amsterdam, Berlin, Bern, Brussells, Madrid, Paris, Rome, Oslo, Vienna',
|
||||
'2' => '[GMT+2] Athens, Bucharest, Harare, Helsinki, Israel, Istanbul',
|
||||
'3' => '[GMT+3] Ankara, Baghdad, Bahrain, Beruit, Kuwait, Moscow, Nairobi, Riyadh',
|
||||
'3.5' => '[GMT+3.5] Iran',
|
||||
'3.5' => '[GMT+3:30] Iran',
|
||||
'4' => '[GMT+4] Abu Dhabi, Kabul, Muscat, Tbilisi, Volgograd',
|
||||
'4.5' => '[GMT+4.5] Afghanistan',
|
||||
'4.5' => '[GMT+4:30] Afghanistan',
|
||||
'5' => '[GMT+5] Pakistan',
|
||||
'5.5' => '[GMT+5.5] Calcutta, India, Madras, New Dehli',
|
||||
'6' => '[GMT+6] Almaty, Dhakar, Kathmandu',
|
||||
'6.5' => '[GMT+6.5] Rangoon',
|
||||
'5.5' => '[GMT+5:30] Calcutta, India, Madras, New Dehli',
|
||||
'5.75' => '[GMT+5:45] Kathmandu, Nepal',
|
||||
'6' => '[GMT+6] Almaty, Dhakar, Sri Lanka',
|
||||
'6.5' => '[GMT+6:30] Rangoon',
|
||||
'7' => '[GMT+7] Bangkok, Hanoi, Jakarta, Phnom Penh',
|
||||
'8' => '[GMT+8] Beijing, Hong Kong, Kuala Lumpar, Manila, Perth, Singapore, Taipei',
|
||||
'8.75' => '[GMT+8:45] Caiguna, Eucla',
|
||||
'9' => '[GMT+9] Osaka, Sapporo, Seoul, Tokyo, Yakutsk',
|
||||
'9.5' => '[GMT+9.5] Adelaide, Darwin',
|
||||
'9.5' => '[GMT+9:30] Adelaide, Darwin',
|
||||
'10' => '[GMT+10] Brisbane, Canberra, Guam, Hobart, Melbourne, Port Moresby, Sydney',
|
||||
'10.5' => '[GMT+10:30] Lord Howe Is.',
|
||||
'11' => '[GMT+11] Magadan, New Caledonia, Solomon Is.',
|
||||
'12' => '[GMT+12] Auckland, Fiji, Kamchatka, Marshall Is., Suva, Wellington'
|
||||
'11.5' => '[GMT+11:30] Norfolk Is.',
|
||||
'12' => '[GMT+12] Auckland, Fiji, Kamchatka, Marshall Is., Suva, Wellington',
|
||||
'12.75' => '[GMT+12:45] Chatham Is.',
|
||||
'13' => '[GMT+13] Tonga, Phoenix Is.',
|
||||
'14' => '[GMT+14] Line Is.',
|
||||
),
|
||||
|
||||
// The value is only an example and will get replaced by the current time on view
|
||||
|
Reference in New Issue
Block a user