-
Notifications
You must be signed in to change notification settings - Fork 10
/
config.php
52 lines (37 loc) · 3.52 KB
/
config.php
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
<?php
/* ----------------------------------------------------------------- */
// Under wordpress dashboard reading settings : Blog pages show at most 56
// Edit the fields to make the theme run correct in your language!!
/* ----------------------------------------------------------------- */
//define ('share', 'true');
define ('apilanguage', 'pt-BR'); /* FOR EXAMPLE define ('apilanguage', 'pt-BR'); */
define ('movies', 'Peliculas'); /* FOR EXAMPLE define ('movies', 'Peliculas'); */
define ('season', 'Temporada'); /* FOR EXAMPLE define ('season', 'Temporada'); */
define ('episode', 'Episodio'); /* FOR EXAMPLE define ('episode', 'Episodio'); */
define ('latest', 'Ultimo'); /* FOR EXAMPLE define ('latest', 'Ultimo'); */
define ('top', 'Top'); /* FOR EXAMPLE define ('top', 'Mejor'); */
define ('random', 'Random'); /* FOR EXAMPLE define ('top', 'Casual'); */
define ('popular', 'Popular'); /* FOR EXAMPLE define ('popular', 'Popular'); */
define ('title', 'Titulo'); /* FOR EXAMPLE define ('title', 'Titulo'); */
define ('watchtext', 'WATCH IT NOW'); /* FOR EXAMPLE define ('watchtext', 'MIRE AHORA'); */
//define ('favorites', 'Favoritos'); /* FOR EXAMPLE define ('favorites', 'Favoritos'); */
// IMPORTANT!! Just category NAME (not permalink) used for TMDB api auto generated category
define ('Action', 'Açăo');
define ('Fantasy', 'Fantasia');
define ('SciFi', 'Ficçăo científica');
define ('Adventure', 'Aventura');
// IMPORTANT!! Do not capitalize letters, no white space, no special caracters!!
define ('director', 'diretor'); /* FOR EXAMPLE define ('director', 'diretor'); */
define ('actors', 'actores'); /* FOR EXAMPLE define ('actors', 'actores'); */
define ('country', 'pais'); /* FOR EXAMPLE define ('country', 'pais'); */
define ('year', 'ano'); /* FOR EXAMPLE define ('year', 'ano'); */
define ('network', 'network'); /* FOR EXAMPLE define ('network', 'network'); */
define ('creator', 'creador'); /* FOR EXAMPLE define ('creator', 'creador'); */
define ('embedurl', 'openload'); /* FOR EXAMPLE define ('embedurl', 'openload'); */
// Now go to permalinks settings under Category base just write the genre base name like: genero, or genre (if you are english)
define ('genre', 'genero');
// Now create a category with same name and slug for example : programas or tv-shows
define ('tvshows', 'Programas'); /* FOR EXAMPLE define ('tvshows', 'Programas'); */
define ('tvseries', 'programas'); /* IMPORTANT Do not capitalize letters for this category name/permalink use no white space, no special caracters like : tv-shows or programas-tv */
define ('cartoons', 'animados');
/* ----------------------------------------------------------------- */