[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * VigLink extension for the phpBB Forum Software package. 5 * 6 * @copyright (c) 2014 phpBB Limited <https://www.phpbb.com> 7 * @license GNU General Public License, version 2 (GPL-2.0) 8 * 9 */ 10 11 /** 12 * DO NOT CHANGE 13 */ 14 if (!defined('IN_PHPBB')) 15 { 16 exit; 17 } 18 19 if (empty($lang) || !is_array($lang)) 20 { 21 $lang = array(); 22 } 23 24 // DEVELOPERS PLEASE NOTE 25 // 26 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 27 // 28 // Placeholders can now contain order information, e.g. instead of 29 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 30 // translators to re-order the output of data while ensuring it remains correct 31 // 32 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 33 // equally where a string contains only two placeholders which are used to wrap text 34 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 35 // 36 // Some characters you may want to copy&paste: 37 // ’ » “ ” … 38 // 39 40 $lang = array_merge($lang, array( 41 'ACP_VIGLINK_SETTINGS' => 'VigLink settings', 42 'ACP_VIGLINK_SETTINGS_EXPLAIN' => 'VigLink is third-party service that discretely monetises links posted by users of your forum without any change to the user experience. When users click on your outbound links to products or services and buy something, the merchants pay VigLink a commission, of which a share is donated to the phpBB project. By choosing to enable VigLink and donating proceeds to the phpBB project, you are supporting our open source organisation and ensuring our continued financial security.', 43 'ACP_VIGLINK_SETTINGS_CHANGE' => 'You can change these settings at any time in the “<a href="%1$s">VigLink settings</a>” panel.', 44 'ACP_VIGLINK_SUPPORT_EXPLAIN' => 'You will no longer be redirected to this page once you submit your preferred options below, by clicking the Submit button.', 45 'ACP_VIGLINK_ENABLE' => 'Enable VigLink', 46 'ACP_VIGLINK_ENABLE_EXPLAIN' => 'Enables use of VigLink services.', 47 'ACP_VIGLINK_EARNINGS' => 'Claim your own earnings (optional)', 48 'ACP_VIGLINK_EARNINGS_EXPLAIN' => 'You can claim your own earnings by signing up for a VigLink Convert account.', 49 'ACP_VIGLINK_DISABLED_PHPBB' => 'VigLink services have been disabled by phpBB.', 50 'ACP_VIGLINK_CLAIM' => 'Claim your earnings', 51 'ACP_VIGLINK_CLAIM_EXPLAIN' => 'You can claim your forum’s earnings from VigLink monetised links, instead of donating the earnings to the phpBB project. To manage your account settings, sign up for a “VigLink Convert” account by clicking on “Convert account”.', 52 'ACP_VIGLINK_CONVERT_ACCOUNT' => 'Convert account', 53 'ACP_VIGLINK_NO_CONVERT_LINK' => 'VigLink convert account link could not be retrieved.', 54 ));
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |