OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
uninstall languages (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

Uninstall languages

ahenriod (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Real Estate Peru Location: Lima, Perú
uninstall languages 8 Years, 11 Months ago
Karma: 0  
Hi, I run my place with 2 languages.
I want to edit only the Constant Value for Spanish.
But, I never end doing this because many languages appear.
Is there a way to remove unused languages? Example: deleting those php language files. Will it break my installation?
Wish list: I'd like to have the original english.php file commented before each variable to show what exactly it means. Some terms may vary from language to language and from english itself to other english modes.
Gracias/Thanks,
Alfredo
Logged Logged
The administrator has disabled public write access.
Taras (User)
Platinum Boarder
Posts: 2857
graphgraph
User Offline Click here to see the profile of this user
Re:uninstall languages 8 Years, 11 Months ago
Karma: 58  
Hello,

If you need add new language:
First, find the file called english.php, either in your installation or in the zip archive of the component. Or download the latest English language file for Real Estate Manager from the Real Estate Manager languages section of the website.

In the Real Estate Manager installation it is located in the directory /components/com_realestatemanager/lang/.

Next, make a copy of english.php and rename it to your own language, for example dutch.php.

Now open dutch.php with a text editor which is capable of handling UTF-8. We recommend PSPad if you are on a Windows operating system.

WARNING:
All Joomla 3.0.x files need to be saved as UTF-8. WordPad or Notepad can NOT handle UTF-8, so they are NOT FIT to create or edit these files with!

Try PSPad instead (www.pspad.com/), and set it under [Format] to UTF-8 before you edit and save your files.

A partial example of what you will see:
/**
*
* @package Real Estate Manager
* @copyright 2008 Andrey Kvasnevskiy-OrdaSoft
* Homepage: www.ordasoft.com/
* @version: 1.5.2 Shop $
* English Language File (EN) - UTF-8
**/
// components/com_RealEstate
DEFINE('_RealEstateManager_TITLE','Real Estate Manager';
DEFINE('_RealEstateManager_DESC','Our library with suggestions for house for you to enjoy.';
DEFINE('_RealEstateManager_SEARCH_DESC1', 'Search House';
DEFINE('_RealEstateManager_SEARCH_DESC2', 'Search House';
DEFINE('_RealEstateManager_SUBMIT_House','Submit a House';
etc.

You translate the text portions only, so ONLY the parts between the single quotes.

Example translation for Dutch (NL) would look like this:
/**
*
* @package Real Estate Manager
* @copyright 2008 Andrey Kvasnevskiy-OrdaSoft, Rob de Cleen
* Homepage: www.ordasoft.com/
* @version: 1.5.2 Shop $
* Dutch Language File (NL) - UTF8
* Dutch translation by Rob de Cleen
**/
// components/com_ RealEstateManager
DEFINE('_RealEstateManager_TITLE','RealEstateManager';
DEFINE('_RealEstateManager_DESC','Onze bibliotheek met suggesties voor boeken die je misschien leuk en nuttig vindt.';
DEFINE('_RealEstateManager_SEARCH_DESC1', 'zoeken voor woningen';
DEFINE('_RealEstateManager_SEARCH_DESC2', 'zoeken voor woningen';
DEFINE('_RealEstateManager_SUBMIT_house','zoeken voor woningen';
etc.

Continue to translate all language variables in your language.

REMARK:

You can use accented letters and special characters like é, ô, ü, ç, ñ, ¿. ©, ß etc. inside the files, with ONE exception:

You cannot use single quotes inside the language variables.

Please replace all single quotes ( ' ) with back-accents ( ` )

So for example French "l'emprunt" inside a language variable needs to be written "l`imprunt".

This is because single quotes are part of the PHP code normally. The “`” or back- accent will be ignored by PHP and interpreted as normal text.
Adding your language file to the Real Estate manager installation

You can either do the operations on the component archive and then rezip and install, or edit the necessary files in place inside an existing installation.

1. Place your language file inside the directory
/components/com_real estate manager/lang/ using an FTP client or similar (if you are on a shared hosting account, please use internal Joomla FTP or QuiXplorer or similar to preserve the file ownership).

2.In the file Real Estate Manager.xml in the directory
/components/com_Real estate Manager/ add the language entry for your language. This goes right after the entry lang/english.php.

3.Go to administration Real Estate Manager Language tab. Now you will see your language and may update any constant with it help.

So if you use for example Dutch and Spanish on your site you would add those, like this:
< filename>lang/english.php
< filename>lang/dutch.php
< filename>lang/spanish.php

3. To ensure the languages you use are visible inside the dropdown boxes in the administration part for selecting, you will need to add the language entries to every language file in use in your installation. In each language file, find the part marked //Languages and add your language there. Example:

//Languages
DEFINE('_RealEstateManager_LANGUAGE_NOT_USED', 'Not specified';
DEFINE('_RealEstateManager_LANGUAGE_ENG', 'English';
DEFINE('_RealEstateManager_LANGUAGE_DUT', 'Dutch';
DEFINE('_RealEstateManager_LANGUAGE_GER', 'German';
DEFINE('_RealEstateManager_LANGUAGE_FRE', 'French';
DEFINE('_RealEstateManager_LANGUAGE_ITA', 'Italian';
DEFINE('_RealEstateManager_LANGUAGE_SPA', 'Spanish';
etc.

Save each file. Remember to translate the entries according to the language file you are editing. That's it, you're done!

Sharing your created language files with the community.

Once you have a working translation for Real Estate Manager ready, please share it on the website to help others!

You will receive full credits for your work in the Real Estate Manager Languages Section, as well as a link to your website.

Submitting language files for Real Estate Manager can be done in two ways by registered users:
You can upload your language file from User Menu > Upload file
Or you can attach the file in a forum post
When submitting your language file, please mention:
Version of Real Estate Manager the language translation is for
Your name as you want it mentioned in the credits the website you want mentioned in the credits

Also check:

ordasoft.com/News/Real-Estate-Manager-Do...-estate-manager.html

Thanks
Logged Logged
The administrator has disabled public write access.
ahenriod (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Real Estate Peru Location: Lima, Perú
Re:uninstall languages 8 Years, 11 Months ago
Karma: 0  
Steemed Taras:
I don't want to install. I wanto to uninstall unused languages.
How to di it?
Thanks
Logged Logged
Last Edit: 2015/05/11 18:01 By ahenriod.
The administrator has disabled public write access.
Taras (User)
Platinum Boarder
Posts: 2857
graphgraph
User Offline Click here to see the profile of this user
Re:uninstall languages 8 Years, 11 Months ago
Karma: 58  
Hello,

There is no any option for uninstall unused languages.

If you do not want use them, then you can leave default settings.
Thanks,
Taras
OrdaSoft team.
Logged Logged
The administrator has disabled public write access.
Vkreations (User)
Fresh Boarder
Posts: 11
graphgraph
User Offline Click here to see the profile of this user
Re:uninstall languages 8 Years, 8 Months ago
Karma: 0  
Hi, I want to install the Greek language and I made the steps 1 and 3 of the following.
I missed the step 2, I cannot find the RealEstate Manager.xml inside the directory /components/com_RealestateManager/. There is only a Realestate Manager.php but that's the component.

1. Place your language file inside the directory /components/com_real estate manager/lang/.

2.In the file RealEstate Manager.xml in the directory /components/com_Real estate Manager/ add the language entry for your language. This goes right after the entry lang/english.php.

3.Go to administration Real Estate Manager Language tab. Now you will see your language and may update any constant with it help.
3. To ensure the languages you use are visible inside the dropdown boxes in the administration part for selecting, you will need to add the language entries to every language file in use in your installation. In each language file, find the part marked //Languages and add your language there. Example:
DEFINE('_RealEstateManager_LANGUAGE_GRE', 'Greek';

I have installed the REM that comes with Classic template (REM package). Do I have to install the standalone REM Pro?
If I install it I will miss the records that I have already put in REM?
Logged Logged
The administrator has disabled public write access.
AnnaZh (Admin)
Admin
Posts: 226
graphgraph
User Offline Click here to see the profile of this user
Gender: Female Location: Kharkov, Ukraine
Re:uninstall languages 8 Years, 8 Months ago
Karma: 7  
Dear Evangelos Kats,

Please clarify me following:

You've installed Quickstart package of Classic package.
Also you have added Greek language in zip file of Real Estate Manager component and want to install it in Classic package.
Right?

Best Regards,
Anna
ordasoft.com
Logged Logged
The administrator has disabled public write access.
Go to top
»