Новые книги

Новая книга Игоря Зорина написана для продавцов, менеджеров по продажам, руководителей торговых компаний, всех тех, кто в силу своих профессиональных прав и обязанностей напрямую контактирует с клиентами – покупателями. В книге подробно описаны и классифицированы наиболее часто встречающиеся типы трудных клиентов, а также просто и понятно изложены правила и приемы работы с ними. Книга одинаково доступна и полезна как начинающим продавцам, так и «бывалым» менеджерам.

Читая книгу, вы получите полный доступ к арсеналу с приемами и можете «вооружиться», взяв из предложенного только то, что посчитаете нужным и достаточным. То, что вы сможете понять и принять. То, что будет вам «по руке», во что вы сможете реально поверить. Вы получите проверенное временем и практикой оружие, которое поможет вам справиться не только с любым Его Величеством Трудным Клиентом, но и с самим собой.
GNU Emacs is the most popular and widespread of the Emacs family of editors. It is also the most powerful and flexible. Unlike all other text editors, GNU Emacs is a complete working environment—you can stay within Emacs all day without leaving.

, 3rd Edition tells readers how to get started with the GNU Emacs editor. It is a thorough guide that will also "grow" with you: as you become more proficient, this book will help you learn how to use Emacs more effectively. It takes you from basic Emacs usage (simple text editing) to moderately complicated customization and programming.The third edition of

describes Emacs 21.3 from the ground up, including new user interface features such as an icon-based toolbar and an interactive interface to Emacs customization. A new chapter details how to install and run Emacs on Mac OS X, Windows, and Linux, including tips for using Emacs effectively on those platforms.

, third edition, covers:

Learning GNU Emacs

Learning GNU Emacs

Learning GNU Emacs

• How to edit files with Emacs

• Using the operating system shell through Emacs

• How to use multiple buffers, windows, and frames

• Customizing Emacs interactively and through startup files

• Writing macros to circumvent repetitious tasks

• Emacs as a programming environment for Java, C++, and Perl, among others

• Using Emacs as an integrated development environment (IDE)

• Integrating Emacs with CVS, Subversion and other change control systems for projects with multiple developers

• Writing HTML, XHTML, and XML with Emacs

• The basics of Emacs Lisp

The book is aimed at new Emacs users, whether or not they are programmers. Also useful for readers switching from other Emacs implementations to GNU Emacs.

gettext

Учебник РНР
Назад Вперёд

gettext

(PHP 3>= 3.0.7, PHP 4)

gettext - ищет сообщение в текущем домене.

Описание

string gettext (string message)

Эта функция возвращает оттранслированную строку, если она найдена в таблице трансляции, или отправленное сообщение, если строка не найдена. Вы можете использовать символ подчёркивания/underscore '_' в качестве псевдонима этой функции.

Пример 1. gettext()-check
<?php
// установить язык German
setlocale(LC_ALL, 'de');

// специфицировать местонахождение таблици трансляции
bindtextdomain("myPHPApp", "locale");

// выбрать домен
textdomain("myPHPApp");

// напечатать тестовое сообщение
print gettext("Welcome to My PHP Application");

// или использовать псевдоним _() для gettext()
print _("Have a nice day");
?>

Назад ОглавлениеВперёд
dngettextВверх ngettext