-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathhelp.php
More file actions
54 lines (50 loc) · 2.37 KB
/
help.php
File metadata and controls
54 lines (50 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
*
* phpBB Media Embed PlugIn extension for the phpBB Forum Software package.
*
* @copyright (c) 2016 phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = [];
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//
$lang = array_merge($lang, [
'HELP_EMBEDDING_MEDIA' => 'Încorporarea media',
'HELP_EMBEDDING_MEDIA_QUESTION' => 'Cum să încorporați media de pe alte site-uri în postări',
'HELP_EMBEDDING_MEDIA_ANSWER' => 'Utilizatorii pot încorpora conținut, cum ar fi videoclipuri și audio de pe site-uri permise folosind
etichetele <strong>[media][/media]</strong> sau pur și simplu de la postarea unui mesaj acceptat
URL în text simplu. De exemplu:<br /><br />
<strong>[media]</strong>%1$s<strong>[/media]</strong>
<br /><br />Așa cum sa menționat mai sus, linkul ar putea fi folosit și fără
etichete <strong>[media]</strong>.
<br /><br />Exemplul prezentat aici ar genera:<br /><br />%2$s
<br /><br />Sunt acceptate următoarele site-uri:<br /><samp>%3$s.</samp>
<br /><br />Pentru documentația completă despre site-urile acceptate și exemple de adrese URL,
accesați <a href="https://s9etextformatter.readthedocs.io/Plugins/MediaEmbed/Sites/">
Documentația pluginului MediaEmbed</a>.',
]);