Torrent Downloads » Other » [ DevCourseWeb com ] Udemy - Multi-language PHP - internationalisation for PHP developers
Other
[ DevCourseWeb com ] Udemy - Multi-language PHP - internationalisation for PHP developers
Torrent info
Name:[ DevCourseWeb com ] Udemy - Multi-language PHP - internationalisation for PHP developers
Infohash: 3C39422AF65DB7E8222C473E025074B24CBF9FFD
Total Size: 790.95 MB
Magnet: Magnet Download
Seeds: 0
Leechers: 0
Stream: Watch Full Movies @ LimeMovies
Last Updated: 2026-01-17 07:20:07 (Update Now)
Torrent added: 2021-12-22 02:32:33
Alternatives:[ DevCourseWeb com ] Udemy - Multi-language PHP - internationalisation for PHP developers Torrents
Torrent Files List
Get Bonus Downloads Here.url (Size: 790.95 MB) (Files: 176)
Get Bonus Downloads Here.url
~Get Your Files Here !
01 - Introduction_ software installation, configuration and setup
001 Introduction and welcome.mp4
001 Introduction and welcome_en.vtt
002 Install a web server with PHP, a database server and phpMyAdmin.mp4
002 Install a web server with PHP, a database server and phpMyAdmin_en.vtt
003 Optional_ configure a virtual host with its own root folder and hostname.mp4
003 Optional_ configure a virtual host with its own root folder and hostname_en.vtt
004 Install the Composer dependency manager.mp4
004 Install the Composer dependency manager_en.vtt
005 Enable the PHP internationalization extension.mp4
005 Enable the PHP internationalization extension_en.vtt
24204348-httpd-vhosts.conf
external-assets-links.txt
index.php
02 - An introduction to translating content using PHP
001 Translate a page by copying the entire page and translating all the text in it.mp4
001 Translate a page by copying the entire page and translating all the text in it_en.vtt
002 Translate a page by using conditional statements for every string.mp4
002 Translate a page by using conditional statements for every string_en.vtt
003 Store translated strings in an array with one array for each language.mp4
003 Store translated strings in an array with one array for each language_en.vtt
004 Display any character by encoding files using UTF-8.mp4
004 Display any character by encoding files using UTF-8_en.vtt
external-assets-links.txt
index.es.php
index.php
03 - Getting the language from the URL
001 Language code standards and passing the language code in the URL.mp4
001 Language code standards and passing the language code in the URL_en.vtt
002 Get the language code from the query string.mp4
002 Get the language code from the query string_en.vtt
003 Get the language code from a subfolder or URL segment.mp4
003 Get the language code from a subfolder or URL segment_en.vtt
004 Get the language code from a subdomain.mp4
004 Get the language code from a subdomain_en.vtt
005 Get the language code from the top-level domain.mp4
005 Get the language code from the top-level domain_en.vtt
external-assets-links.txt
htaccess
index.php
04 - Locale identifiers and validating the language from the URL
001 Add an I18n class with a list of supported languages.mp4
001 Add an I18n class with a list of supported languages_en.vtt
002 Combine language codes and region codes to create locale identifiers.mp4
002 Combine language codes and region codes to create locale identifiers_en.vtt
003 Canonicalise the locale code from the URL.mp4
003 Canonicalise the locale code from the URL_en.vtt
004 Get the best match from the list of supported locales.mp4
004 Get the best match from the list of supported locales_en.vtt
005 Redirect to the default locale if the value in the URL is invalid.mp4
005 Redirect to the default locale if the value in the URL is invalid_en.vtt
006 Declare the language of the HTML document with the lang attribute.mp4
006 Declare the language of the HTML document with the lang attribute_en.vtt
external-assets-links.txt
index.php
src
App
I18n.php
05 - Detecting the visitor's preferred language
001 Get language preferences from the browser_ the HTTP Accept-Language header.mp4
001 Get language preferences from the browser_ the HTTP Accept-Language header_en.vtt
002 Parse the Accept-Language header to get a list of locales in order of preference.mp4
002 Parse the Accept-Language header to get a list of locales in order of preference_en.vtt
003 Compare supported locales to the browser preferences and choose the best match.mp4
003 Compare supported locales to the browser preferences and choose the best match_en.vtt
004 Get the best match to the browser preferences using just the language codes.mp4
004 Get the best match to the browser preferences using just the language codes_en.vtt
005 Refactor the code to make it clearer.mp4
005 Refactor the code to make it clearer_en.vtt
006 Geolocation_ matching the user's IP address to their location.mp4
006 Geolocation_ matching the user's IP address to their location_en.vtt
007 Use a geolocation API to get the country code from the IP address.mp4
007 Use a geolocation API to get the country code from the IP address_en.vtt
composer.json
external-assets-links.txt
index.php
src
App
I18n.php
06 - Using gettext with PHP
001 The options for storing translations in separate files.mp4
001 The options for storing translations in separate files_en.vtt
002 The PHP gettext extension and gettext function for marking translatable strings.mp4
002 The PHP gettext extension and gettext function for marking translatable strings_en.vtt
003 Create the folders to store the gettext translation files.mp4
003 Create the folders to store the gettext translation files_en.vtt
004 Install the Poedit editor and create a .po translation file.mp4
004 Install the Poedit editor and create a .po translation file_en.vtt
005 Configure gettext to use the translation file and show the translations.mp4
005 Configure gettext to use the translation file and show the translations_en.vtt
external-assets-links.txt
index.php
locales
es
LC_MESSAGES
messages.mo
messages.po
src
App
I18n.php
07 - Using MoTranslator as a gettext-compatible alternative
001 MoTranslator_ a .mo-file-compatible alternative to gettext.mp4
001 MoTranslator_ a .mo-file-compatible alternative to gettext_en.vtt
002 Using MoTranslator with its gettext compatibility functions.mp4
002 Using MoTranslator with its gettext compatibility functions_en.vtt
003 Configure Poedit to extract MoTranslator translations.mp4
003 Configure Poedit to extract MoTranslator translations_en.vtt
004 Use the simpler MoTranslator object API.mp4
004 Use the simpler MoTranslator object API_en.vtt
005 Using real or keyword messages_ the advantages and disadvantages.mp4
005 Using real or keyword messages_ the advantages and disadvantages_en.vtt
composer.json
external-assets-links.txt
index.php
locales
es
LC_MESSAGES
messages.mo
messages.po
src
App
I18n.php
08 - Translating dynamic content_ variable substitution, plurals, decimals and dates
001 Including variables in translated strings_ use sprintf with gettext.mp4
001 Including variables in translated strings_ use sprintf with gettext_en.vtt
002 Display plural forms of messages using ngettext.mp4
002 Display plural forms of messages using ngettext_en.vtt
003 Decimal separators_ format decimal numbers based on the locale.mp4
003 Decimal separators_ format decimal numbers based on the locale_en.vtt
004 Translate day and month names in dates based on the locale.mp4
004 Translate day and month names in dates based on the locale_en.vtt
composer.json
external-assets-links.txt
index.php
locales
es
LC_MESSAGES
messages.mo
messages.po
src
App
I18n.php
09 - Translating content unsuited to gettext_ long text, databases and images
001 Handle long strings of text in separate files.mp4
001 Handle long strings of text in separate files_en.vtt
002 Display a message if the file containing the translation is unavailable.mp4
002 Display a message if the file containing the translation is unavailable_en.vtt
003 Use a plain-text formatting language to help translators.mp4
003 Use a plain-text formatting language to help translators_en.vtt
004 Convert translations in separate files to Markdown.mp4
004 Convert translations in separate files to Markdown_en.vtt
005 Translate data from a database_ multiple columns in one table.mp4
005 Translate data from a database_ multiple columns in one table_en.vtt
006 Translate data from a database_ separate table for the translations.mp4
006 Translate data from a database_ separate table for the translations_en.vtt
007 Display localised versions of images that contain text.mp4
007 Display localised versions of images that contain text_en.vtt
24229126-phpi18n-1.sql
24229162-phpi18n-2.sql
24229178-phpi18n-3.sql
composer.json
content
body.en_GB.html
body.en_GB.md
body.es.html
body.es.md
external-assets-links.txt
images
sign.png
sign_en_GB.png
sign_es.png
index.php
locales
es
LC_MESSAGES
messages.mo
messages.po
src
App
I18n.php
10 - Selecting and remembering the language
001 Add navigation links for switching between languages.mp4
001 Add navigation links for switching between languages_en.vtt
002 Language switching links_ what they should say and where to put them.mp4
002 Language switching links_ what they should say and where to put them_en.vtt
003 Remove code duplication_ extract common i18n code out to separate files.mp4
003 Remove code duplication_ extract common i18n code out to separate files_en.vtt
004 Add a second page and include the common i18n code.mp4
004 Add a second page and include the common i18n code_en.vtt
005 Calculate the full current URL from the $_SERVER data.mp4
005 Calculate the full current URL from the $_SERVER data_en.vtt
006 Generate the data for the language navigation links.mp4
006 Generate the data for the language navigation links_en.vtt
007 Add the language navigation links to the HTML.mp4
007 Add the language navigation links to the HTML_en.vtt
008 Remember the selected locale in a cookie.mp4
008 Remember the selected locale in a cookie_en.vtt
009 Redirect to the locale remembered in the cookie.mp4
009 Redirect to the locale remembered in the cookie_en.vtt
about.php
composer.json
external-assets-links.txt
includes
i18n_init.php
lang_nav.php
index.php
locales
es
LC_MESSAGES
messages.mo
messages.po
src
App
I18n.php
11 - Conclusion
001 Conclusion.mp4
001 Conclusion_en.vtt
Bonus Resources.txt
tracker
leech seedsTorrent description
Feel free to post any comments about this torrent, including links to Subtitle, samples, screenshots, or any other relevant information, Watch [ DevCourseWeb com ] Udemy - Multi-language PHP - internationalisation for PHP developers Online Free Full Movies Like 123Movies, Putlockers, Fmovies, Netflix or Download Direct via Magnet Link in Torrent Details.
related torrents
Torrent name
health leech seeds Size






