Skip to content

jacekbarecki/MultilingualOpinions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MultilingualOpinions

A one-page PHP site for gathering user opinions and displaying them in different languages basing on the translations provided by the Google Translate API.

This is the source code of the Sitepoint article: http://www.sitepoint.com/auto-translating-user-submitted-content-using-google-translate-api/

Overview

This is a simple PHP application that allows a visitor to add a new opinion using a web form. The opinion is saved to the database along with the translations to different languages fetched from the Google Translate API. The page also displays the existing opinions along with their translations.

Used technologies

Live demo

See a live demo!

Setup

The database

Enter your SQLite database file name in SqliteConnector.php. If the file doesn't exists, it will be created automatically.

    class SqliteConnector {
        private $_filename = 'opinions.db';
        ...
    }

The Google Translate API

Set up the PHPGoogleTranslator class as described in the documentation. You can enable the test mode and no requests to the API will be made or enter your API key and use the API functionality.

The list of used languages

Enter the languages that are used in the site in the Opinion.php file:

  class Opinion {
        private $_languages = array('en', 'fr', 'es');
        ...
  }

This list will be used to check which translations to fetch when adding an opinion.

The language of submitted opinions

When user submits the form, the opinion language is fetched from a hidden input field defined in index.php:

  <input type="hidden" name="language" id="inputLanguage" value="en">

If you want to implement different language versions of the form, change the field value depending on the language version that is currently displayed.

Usage

Upload the files to a server. Add some opinions. Read the existing ones. Have fun.

About

A one-page site for gathering user opinions and displaying them in different languages basing on the translations provided by the Google Translate API.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published