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
|
<?php // ================================================ // SPAW v.2.0 // ================================================ // Custom button plugin English language file // ================================================ // Author: Alan Mendelevich, UAB Solmetra // ------------------------------------------------ // www.solmetra.com // ================================================ // v.2.0 // ================================================
// charset to be used in dialogs $spaw_lang_charset = 'utf-8';
// language text data array // first dimension - block, second - exact phrase // alternative text for toolbar buttons and title for dropdowns - 'title'
$spaw_lang_data = array( 'my_button' => array( 'title' => 'My custom button' ), ); ?>
|