From f8f5b112e716f995d34fc813aa267b1d0034299f Mon Sep 17 00:00:00 2001 From: R3tr0R4z0r <11089936+R3tr0R4z0r@users.noreply.github.com> Date: Thu, 2 Apr 2020 12:18:08 +0100 Subject: [PATCH 01/20] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 666c52b..bb528da 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,18 @@ Open source web player compatible with XtreamCodes V2 API Use a clean Ubuntu 18.04 (not running any other service or script will fail) and run the following: +*** Original Language *** ```sh curl -s https://raw.githubusercontent.com/tweakunwanted/OpenXC-Player/master/install.sh | sudo bash ``` +*** English Version *** + + +```sh +curl -s https://raw.githubusercontent.com/R3tr0R4z0r/OpenXC-Player/master/install-ENG.sh | sudo bash +``` + After that edit the file `/var/www/html/libs/config.php` ``` From f0457faf78877933727de786c7d77cbb2ef3ec8e Mon Sep 17 00:00:00 2001 From: R3tr0R4z0r <11089936+R3tr0R4z0r@users.noreply.github.com> Date: Thu, 2 Apr 2020 12:19:52 +0100 Subject: [PATCH 02/20] Create install-ENG.sh --- install-ENG.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 install-ENG.sh diff --git a/install-ENG.sh b/install-ENG.sh new file mode 100644 index 0000000..e47ece2 --- /dev/null +++ b/install-ENG.sh @@ -0,0 +1,12 @@ + +apt update && apt install apache2 php7.2 wget curl git -y +curl -s https://raw.githubusercontent.com/R3tr0R4z0r/OpenXC-Player/master/php7.2-ext.sh | sudo bash +rm -rf /var/www/html +git clone https://github.com/R3tr0R4z0r/OpenXC-Player /var/www/html +rm -rf !$/.git +rm -rf /var/www/html/.gitattributes +rm -rf /var/www/html/install.sh +rm -rf /var/www/html/README.md +rm -rf /var/www/html/php7.2-ext.sh +wget -q https://raw.githubusercontent.com/R3tr0R4z0r/OpenXC-Player/master/000-default.conf -O /etc/apache2/sites-available/000-default.conf +service apache2 restart From f83382bd044d8c7dc86d3ac995672508996f50bc Mon Sep 17 00:00:00 2001 From: R3tr0R4z0r <11089936+R3tr0R4z0r@users.noreply.github.com> Date: Thu, 2 Apr 2020 12:53:13 +0100 Subject: [PATCH 03/20] Update idioma.php Translated to English --- libs/idioma.php | 107 ++++++++++++++++++++++++------------------------ 1 file changed, 53 insertions(+), 54 deletions(-) diff --git a/libs/idioma.php b/libs/idioma.php index 3ea49e4..5851bf9 100644 --- a/libs/idioma.php +++ b/libs/idioma.php @@ -1,66 +1,65 @@ Caso necessário, contate nossa equipe através do whatsapp.'); -define('BOTAO_WHATSAPP','ATENDIMENTO VIA WHATSAPP'); -define('BOTAO_ASSINAR','Assinar'); -define('DESCRICAO_PLANOS','
  • ±6.000 Canais, Filmes e Séries
  • -
  • Canais SD, HD e FULL HD
  • -
  • Canais Adultos (Opcional)
  • -
  • Desenhos, Esportes e Religiosos
  • -
  • Canais Brasileiros
  • -
  • Assista Onde Quiser
  • '); \ No newline at end of file +define('TXT_DESCRICAO_ASSINATURA','Payments by bank transfer can take up to 24 workign hours to complete, this may be longer on the weekend, please talk to your provider for alternative ways to pay if you want instant access.'); +define('TXT_DESCRICAO_ASSINATURA_DESCONTO','* Adding/removing Adult from you subscription may be done so by your provider, additional charges may apply, please talk to your provider to find out more.'); +define('BOTAO_WHATSAPP','JOIN WHATSAPP'); +define('BOTAO_ASSINAR','Subscribe'); +define('DESCRICAO_PLANOS','
  • ± 6,000 Channels Films and Series
  • +
  • SD HD and FULL HD channels
  • +
  • Adult Channels (Optional)
  • +
  • Sports
  • +
  • Watch Where You Want
  • '); From d41b1f6f0a97ebe80f86f0132ade17c4c156d2c1 Mon Sep 17 00:00:00 2001 From: R3tr0R4z0r <11089936+R3tr0R4z0r@users.noreply.github.com> Date: Thu, 2 Apr 2020 13:02:16 +0100 Subject: [PATCH 04/20] Update idioma.php Correct typographical errors --- libs/idioma.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/idioma.php b/libs/idioma.php index 5851bf9..53d2941 100644 --- a/libs/idioma.php +++ b/libs/idioma.php @@ -23,13 +23,13 @@ define('MENU_TV_AO_VIVO','Live TV'); define('MENU_HOME','Home'); define('MENU_SERIES','Series'); -define('MENU_RENOVAR','Reneq Subscription'); +define('MENU_RENOVAR','Renew Subscription'); define('MENU_SAIR','Logout'); -define('TXT_BEMVINDO','Welcomw'); +define('TXT_BEMVINDO','Welcome'); define('TXT_TELAS','Maximum Streams'); define('TXT_VALIDADE','Expiry Date'); -define('TXT_RESTAM','Rmaining'); +define('TXT_RESTAM','Remaining'); define('TXT_SERIES','Series'); define('TXT_SERIE','Series'); define('TXT_TEMPORADA','Season'); @@ -42,7 +42,7 @@ define('TXT_DIRETOR','Diretor'); define('TXT_ELENCO','Cast'); define('TXT_GENERO','Genre'); -define('TXT_FILMES_SUGESTAO','Suggested Filmes'); +define('TXT_FILMES_SUGESTAO','Suggested Films'); define('TXT_CANAIS_SUGESTAO','Similar Channels'); define('TXT_ASSINATURA','Subscription'); define('TXT_MES','/ Month'); From 9ea3232eb95eeb9e44dab521e2a0a652e8380133 Mon Sep 17 00:00:00 2001 From: R3tr0R4z0r <11089936+R3tr0R4z0r@users.noreply.github.com> Date: Thu, 2 Apr 2020 13:27:42 +0100 Subject: [PATCH 05/20] Update menu.php Added code to link "Films/Films" Menu bar to Variable in idioma.php to assist in transaltion. --- inc/menu.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/menu.php b/inc/menu.php index 311ed6e..ef7bb0c 100644 --- a/inc/menu.php +++ b/inc/menu.php @@ -35,7 +35,7 @@