1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | $lang['Black'] = 'Preto'; |
---|
24 | $lang['Blue'] = 'Azul'; |
---|
25 | $lang['Bold : [b]bold[/b]'] = 'Negrito: [b]bold[/b]'; |
---|
26 | $lang['Center : [center]center[/center]'] = 'Centro: [center]center[/center]'; |
---|
27 | $lang['E-mail : [email]Email[/email]'] = 'E-mail : [email]Email[/email]'; |
---|
28 | $lang['Font color : [color=color]text[/color]'] = 'Cor da letra:[color=color]text[/color]'; |
---|
29 | $lang['Font size : [size=X]text[/size]'] = 'Tamanho da letra : [size=X]text[/size]'; |
---|
30 | $lang['Green'] = 'Verde'; |
---|
31 | $lang['Grey'] = 'Cinza'; |
---|
32 | $lang['Italic : [i]italic[/i]'] = 'Itálico: [i]italic[/i]'; |
---|
33 | $lang['List element : [li]element[/li]'] = 'Listar elementos: [li]element[/li]'; |
---|
34 | $lang['Orange'] = 'Laranja'; |
---|
35 | $lang['Ordered list : [ol][li]element[/li][/ol]'] = 'Lista de pedidos: [ol][li]element[/li][/ol]'; |
---|
36 | $lang['Paragraph : [p]Paragraph[/p]'] = 'Paragrafo: [p]Paragraph[/p]'; |
---|
37 | $lang['Picture : [img]picture[/img]'] = 'Foto: [img]picture[/img]'; |
---|
38 | $lang['Purple'] = 'Purpura'; |
---|
39 | $lang['Quote : [quote]quote[/quote]'] = 'Valor: [quote]quote[/quote]'; |
---|
40 | $lang['Red'] = 'Vermelho'; |
---|
41 | $lang['Right : [right]right[/right]'] = 'Direita: [right]right[/right]'; |
---|
42 | $lang['Striped : [s]striped[/s]'] = 'Listado : [s]striped[/s]'; |
---|
43 | $lang['URL : [url=URL]Title[/url]'] = 'URL : [url=URL]Title[/url]'; |
---|
44 | $lang['Underline : [u]underline[/u]'] = 'Sublinhado: [u]underline[/u]'; |
---|
45 | $lang['Unordered list : [ul][li]element[/li][/ul]'] = 'Lista de não pedidos: [ul][li]element[/li][/ul]'; |
---|
46 | $lang['White'] = 'Branco'; |
---|
47 | $lang['Yellow'] = 'Amarelo'; |
---|
48 | $lang['huge font'] = 'Enorme'; |
---|
49 | $lang['large font'] = 'Grande'; |
---|
50 | $lang['normal font'] = 'Normal'; |
---|
51 | $lang['small font'] = 'Pequeno'; |
---|
52 | $lang['tiny font'] = 'Fino'; |
---|
53 | $lang['Available options'] = 'Opções disponíveis'; |
---|
54 | ?> |
---|