• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Some questions regarding the script.

Started by tectonny,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

tectonnyTopic starter

Good afternoon, I would like to take some questions.
1 - When importing video from Redtube some do not come with the image.
http://www.live365.com.br/

2 - The XClub informs in sales working with various trusted site, but see only the admin redtube, as do others (extremetubeslutload Youku Tnaflix xhamster xvideos pornrabbit Keezmovies tube8 mofosex vidxnet drtuber alotporn spankwire youporn porntube bigtits)

3 - How can I translate the admin area?

I appreciate any answers.
  •  

PHPVibe A.

Hi,
only RedTube has an importer, the rest are sources, meaning you can add videos from them using "Upload web video".
Indeed, some images are returned broken by the redtube importer since they show up with weird links in the redtube api or gety removed very fast by them.
We will look more onto this when we update it, as we want to add also some importers for dump files we have discovered (youporn, xhamster, I think) and make it fully compatible with 3.5.

tectonnyTopic starter

What about the translation, as I do? Have the translation file?
  •  

PHPVibe A.

It doesn't use files for storing languages http://www.phprevolution.com/languages/

Oh, sorry.
The admin part is not coded in the translation system, you would need to open the files and translate them with an text editor.

tectonnyTopic starter

As I understand it, then we can translate the site, the administration is coded so there's no way.

Could create a file outside the coding to do the translation, or have only the html for me to translate and then put in the reference code.
  •  

PHPVibe A.

The administration is hardcoded but you can edit it directly in the files, or change for example

Import

to
<?php echo _lang('Import'); ?>

which will make it translatable from the translating system.
But why would you want to do this? It will enlarge the database which is not very indicated.

tectonnyTopic starter

Good morning and thank you for your reply, I think of reselling your script in my country, so it would be nice to have the translated language. Here many people like this type script, but not all have international card to buy it. So can facilitate the sale.
  •  

tectonnyTopic starter

As the import of translation did not understand.
  •  

PHPVibe A.

You can't resell it, the new marketplace will enforce an max 12 licenses per account as we announced.
The 10 euro per key offer is just for our clients, not for commercial purposes.

tectonnyTopic starter

I do not believe in using my licenses but new licenses.
Buying directly with the customer, just brokering.
  •  

PHPVibe A.


tectonnyTopic starter

  •  

PHPVibe A.

Not sure how much more I can explain.

For example if you open /moderator/ads.php

you'll see the table heading:
<thead>
                              <tr>
                                  <th>Ad</th>
                                  <th>Spot</th>
							     ...
                                  </tr>
                          </thead>


If you want to translate this from the languages manager you need to change it to:



<thead>
                              <tr>
                                  <th><?php echo _lang('Ad'); ?> </th>
                                  <th><?php echo _lang('Spot'); ?> </th>
							    ...
                                  </tr>
                          </thead>


Or just edit there the words to hardcode it in your language.

Similar topics (7)