当前位置: 首页>>代码示例>>PHP>>正文


PHP cmtx_define函数代码示例

本文整理汇总了PHP中cmtx_define函数的典型用法代码示例。如果您正苦于以下问题:PHP cmtx_define函数的具体用法?PHP cmtx_define怎么用?PHP cmtx_define使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了cmtx_define函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: die

GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Commentics. If not, see <http://www.gnu.org/licenses/>.

Text to help preserve UTF-8 file encoding: 汉语漢語.
*/
if (!isset($cmtx_path)) {
    die('Access Denied.');
}
cmtx_define('CMTX_SUB_FEATURE_DISABLED', 'This feature has been disabled.');
cmtx_define('CMTX_SUB_HEADING', 'Email Subscription');
cmtx_define('CMTX_SUB_MSG_CONFIRMED', 'Your subscription is confirmed.');
cmtx_define('CMTX_SUB_MSG_ALREADY_CONFIRMED', 'Your subscription is already confirmed.');
cmtx_define('CMTX_SUB_MSG_SETTINGS_SAVED', 'Settings saved.');
cmtx_define('CMTX_SUB_MSG_INVALID', 'Invalid request.');
cmtx_define('CMTX_SUB_MSG_NO_SUBSCRIPTION', 'No subscription found.');
cmtx_define('CMTX_SUB_MSG_UNSUBSCRIBED', 'You are unsubscribed.');
cmtx_define('CMTX_SUB_NAME', 'Name:');
cmtx_define('CMTX_SUB_EMAIL', 'Email:');
cmtx_define('CMTX_SUB_HEADING_TYPE', 'What Would You Like To Be Notified Of?');
cmtx_define('CMTX_SUB_ALL_COMMENTS', 'All comments');
cmtx_define('CMTX_SUB_CUSTOM', 'Custom');
cmtx_define('CMTX_SUB_ONLY', 'Notify me of only these specific types:');
cmtx_define('CMTX_SUB_ADMIN_COMMENTS', 'Admin comments');
cmtx_define('CMTX_SUB_REPLY_COMMENTS', 'Replies to my comments');
cmtx_define('CMTX_SUB_SAVE', 'Save');
cmtx_define('CMTX_SUB_HEADING_CANCEL', 'Cancel This Subscription');
cmtx_define('CMTX_SUB_LINK_CANCEL', 'Click here to cancel this subscription');
cmtx_define('CMTX_SUB_LINK_CANCEL_TITLE', 'Cancel this subscription');
开发者ID:GTAWWEKID,项目名称:tsiserver.us,代码行数:30,代码来源:subscribers.php

示例2: die

		 http://www.commentics.org/license/

This file is part of Commentics.

Commentics is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Commentics is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Commentics. If not, see <http://www.gnu.org/licenses/>.

Text to help preserve UTF-8 file encoding: 汉语漢語.
*/
if (!isset($cmtx_path)) {
    die('Access Denied.');
}
cmtx_define('CMTX_TITLE_RATING', 'Selecione a nota');
cmtx_define('CMTX_TOP_RATING', 'Selecione a Nota');
cmtx_define('CMTX_RATING_ONE', 'Horrível');
cmtx_define('CMTX_RATING_TWO', 'Ruim');
cmtx_define('CMTX_RATING_THREE', 'Ok');
cmtx_define('CMTX_RATING_FOUR', 'Bom');
cmtx_define('CMTX_RATING_FIVE', 'Excelente');
cmtx_define('CMTX_HAS_RATED', 'Já Avaliou');
开发者ID:GTAWWEKID,项目名称:tsiserver.us,代码行数:30,代码来源:ratings.php

示例3: cmtx_define

/* Text displayed for Securimage captcha */
cmtx_define('CMTX_TEXT_SECURIMAGE', 'Upišite kodu:');
cmtx_define('CMTX_TITLE_SECURIMAGE', 'Upišite kodu sa slike');
cmtx_define('CMTX_TITLE_SECURIMAGE_AUDIO', 'Audio');
cmtx_define('CMTX_TITLE_SECURIMAGE_REFRESH', 'Ponovo');
/* Text displayed if ReCaptcha key missing */
cmtx_define('CMTX_RECAPTCHA_NO_KEY', 'API ključ nedostaje u stranica Admin');
/* Text displayed after notify checkbox */
cmtx_define('CMTX_TEXT_NOTIFY', 'Obavijestite me o novim komentarima putem e-maila.');
/* Text displayed after remember checkbox */
cmtx_define('CMTX_TEXT_REMEMBER', 'Pamti moje podatke na ovom računalu.');
/* Text displayed after privacy checkbox */
cmtx_define('CMTX_PRIVACY_TEXT', 'I have read and understand the %s.');
cmtx_define('CMTX_PRIVACY_LINK', 'privacy policy');
cmtx_define('CMTX_PRIVACY_LINK_TITLE', 'View the privacy policy');
/* Text displayed after terms checkbox */
cmtx_define('CMTX_TERMS_TEXT', 'I have read and agree to the %s.');
cmtx_define('CMTX_TERMS_LINK', 'terms and conditions');
cmtx_define('CMTX_TERMS_LINK_TITLE', 'View the terms and conditions');
/* Text for form submit button */
cmtx_define('CMTX_SUBMIT_BUTTON', 'Novi komentar');
/* Text for form preview button */
cmtx_define('CMTX_PREVIEW_BUTTON', 'Predgled');
/* Text for form buttons when processing */
cmtx_define('CMTX_PROCESSING_BUTTON', 'Molimo pričekajte ...');
/* Text for parsing information */
cmtx_define('CMTX_TEXT_PARSING', 'Generated in %s seconds');
cmtx_define('CMTX_TEXT_QUERIES', 'Queries');
/* Text for 'powered by' statement */
cmtx_define('CMTX_POWERED_BY', 'Usluge nudi');
开发者ID:jonathancromie,项目名称:ifb299,代码行数:30,代码来源:form.php

示例4: cmtx_define

cmtx_define('CMTX_FLAG_DIALOG_NO', 'No');
cmtx_define('CMTX_FLAG_NO_COMMENT', 'ta komentar ne obstaja več');
cmtx_define('CMTX_FLAG_OWN_COMMENT', 'Ne morete prijaviti lastnega komentarja');
cmtx_define('CMTX_FLAG_ADMIN_COMMENT', 'Administratorjevega komentarja ne morete prijaviti');
cmtx_define('CMTX_FLAG_BANNED', 'Ti so bili že prepovedani');
cmtx_define('CMTX_FLAG_REPORT_LIMIT', 'Ne morete več prijavljati komentarjev');
cmtx_define('CMTX_FLAG_ALREADY_REPORTED', 'Ta komentar ste že prijavili');
cmtx_define('CMTX_FLAG_ALREADY_FLAGGED', 'Ta komentar je že bil označen');
cmtx_define('CMTX_FLAG_ALREADY_VERIFIED', 'Ta komentar je že bil potrjen');
cmtx_define('CMTX_FLAG_REPORT_SENT', 'Hvala za poročilo');
/* Permalink */
cmtx_define('CMTX_PERMALINK', 'Permalink povezava');
cmtx_define('CMTX_TITLE_PERMALINK', 'Permalink povezava za ta komentar');
/* Reply */
cmtx_define('CMTX_REPLY', 'Odgovor');
cmtx_define('CMTX_TITLE_REPLY', 'Odgovorite na ta komentar');
/* RSS */
cmtx_define('CMTX_RSS', 'RSS Alerts');
cmtx_define('CMTX_TITLE_RSS', 'Get RSS alerts for this page');
/* Page Number */
cmtx_define('CMTX_INFO_PAGE', 'Stran %d od %d');
/* Pagination */
cmtx_define('CMTX_PAGINATION_FIRST', 'prva');
cmtx_define('CMTX_PAGINATION_PREVIOUS', '<');
cmtx_define('CMTX_PAGINATION_NEXT', '>');
cmtx_define('CMTX_PAGINATION_LAST', 'zadnja');
cmtx_define('CMTX_TITLE_PAG_FIRST', 'prvi');
cmtx_define('CMTX_TITLE_PAG_PREVIOUS', 'predhodni');
cmtx_define('CMTX_TITLE_PAG_NEXT', 'naslednji');
cmtx_define('CMTX_TITLE_PAG_LAST', 'zadnji');
开发者ID:GTAWWEKID,项目名称:tsiserver.us,代码行数:30,代码来源:comments.php

示例5: die

/*
Copyright © 2009-2014 Commentics Development Team [commentics.org]
License: GNU General Public License v3.0
		 http://www.commentics.org/license/

This file is part of Commentics.

Commentics is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Commentics is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Commentics. If not, see <http://www.gnu.org/licenses/>.

Text to help preserve UTF-8 file encoding: 汉语漢語.
*/
if (!isset($cmtx_path)) {
    die('Access Denied.');
}
cmtx_define('CMTX_ALERT_MESSAGE_NO_IDENTIFIER', 'Zorg ervoor dat deze pagina een identifier heeft.');
cmtx_define('CMTX_ALERT_MESSAGE_INVALID_IDENTIFIER', 'De meegeleverde identifier ongeldig blijkt te zijn.');
cmtx_define('CMTX_ALERT_MESSAGE_INVALID_REFERENCE', 'De meegeleverde verwijzing blijkt ongeldig te zijn.');
cmtx_define('CMTX_ALERT_MESSAGE_INVALID_URL', 'De meegeleverde URL blijkt ongeldig te zijn.');
开发者ID:GTAWWEKID,项目名称:tsiserver.us,代码行数:29,代码来源:page.php

示例6: die

<?php

/*
Copyright © 2009-2014 Commentics Development Team [commentics.org]
License: GNU General Public License v3.0
		 http://www.commentics.org/license/

This file is part of Commentics.

Commentics is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Commentics is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Commentics. If not, see <http://www.gnu.org/licenses/>.

Text to help preserve UTF-8 file encoding: 汉语漢語.
*/
if (!isset($cmtx_path)) {
    die('Access Denied.');
}
cmtx_define('CMTX_RSS_FEATURE_DISABLED', 'This feature has been disabled.');
cmtx_define('CMTX_RSS_DESCRIPTION', 'Comments');
cmtx_define('CMTX_RSS_POSTER', '%s');
开发者ID:jonathancromie,项目名称:ifb299,代码行数:30,代码来源:rss.php

示例7: cmtx_define

cmtx_define('CMTX_COUNTRY_SOUTH_KOREA', 'Южна Корея');
cmtx_define('CMTX_COUNTRY_SPAIN', 'Испания');
cmtx_define('CMTX_COUNTRY_SRI_LANKA', 'Шри Ланка');
cmtx_define('CMTX_COUNTRY_SUDAN', 'Судан');
cmtx_define('CMTX_COUNTRY_SURINAME', 'Суринам');
cmtx_define('CMTX_COUNTRY_SWAZILAND', 'Свазиленд');
cmtx_define('CMTX_COUNTRY_SWEDEN', 'Швеция');
cmtx_define('CMTX_COUNTRY_SWITZERLAND', 'Швейцария');
cmtx_define('CMTX_COUNTRY_SYRIA', 'Сирия');
cmtx_define('CMTX_COUNTRY_TAIWAN', 'Тайван');
cmtx_define('CMTX_COUNTRY_TAJIKISTAN', 'Таджикистан');
cmtx_define('CMTX_COUNTRY_TANZANIA', 'Танзания');
cmtx_define('CMTX_COUNTRY_THAILAND', 'Тайланд');
cmtx_define('CMTX_COUNTRY_THE_EMIRATES', 'Обединени арабски емирства');
cmtx_define('CMTX_COUNTRY_TOGO', 'Того');
cmtx_define('CMTX_COUNTRY_TRINIDAD_TOBAGO', 'Тринидат-Тобаго');
cmtx_define('CMTX_COUNTRY_TUNISIA', 'Тунизия');
cmtx_define('CMTX_COUNTRY_TURKEY', 'Турция');
cmtx_define('CMTX_COUNTRY_TURKMENISTAN', 'Турмекистан');
cmtx_define('CMTX_COUNTRY_UGANDA', 'Уганда');
cmtx_define('CMTX_COUNTRY_UKRAINE', 'Украйна');
cmtx_define('CMTX_COUNTRY_URUGUAY', 'Уругвай');
cmtx_define('CMTX_COUNTRY_UZBEKISTAN', 'Узбекистан');
cmtx_define('CMTX_COUNTRY_VATICAN_CITY', 'Ватикана');
cmtx_define('CMTX_COUNTRY_VENEZUELA', 'Венецуела');
cmtx_define('CMTX_COUNTRY_VIETNAM', 'Виетнам');
cmtx_define('CMTX_COUNTRY_WESTERN_SAHARA', 'Западна Сахара');
cmtx_define('CMTX_COUNTRY_YEMEN', 'Йемен');
cmtx_define('CMTX_COUNTRY_ZAMBIA', 'Замбия');
cmtx_define('CMTX_COUNTRY_ZIMBABWE', 'Зимбабве');
开发者ID:GTAWWEKID,项目名称:tsiserver.us,代码行数:30,代码来源:countries.php

示例8: cmtx_define

cmtx_define('CMTX_BAN_REASON_CAPITALS', 'Muitas maiúsculas.');
cmtx_define('CMTX_BAN_REASON_LINK_IN_COMMENT', 'Link informado no comentário.');
cmtx_define('CMTX_BAN_REASON_REPEATS', 'Repetições informadas no comentário.');
/* Approval reasons */
cmtx_define('CMTX_APPROVE_REASON_ALL', 'Todos aprovador.');
cmtx_define('CMTX_APPROVE_REASON_RESERVED_NAME', 'Nome reservado informado.');
cmtx_define('CMTX_APPROVE_REASON_BANNED_NAME', 'Nome banido informado.');
cmtx_define('CMTX_APPROVE_REASON_DUMMY_NAME', 'Nome fictício informado.');
cmtx_define('CMTX_APPROVE_REASON_LINK_IN_NAME', 'Link informado no nome.');
cmtx_define('CMTX_APPROVE_REASON_RESERVED_EMAIL', 'Endereço de email reservado informado.');
cmtx_define('CMTX_APPROVE_REASON_BANNED_EMAIL', 'Endereço de email banido informado.');
cmtx_define('CMTX_APPROVE_REASON_DUMMY_EMAIL', 'Endereço de email fictício informado.');
cmtx_define('CMTX_APPROVE_REASON_WEBSITE_ENTERED', 'Website informado.');
cmtx_define('CMTX_APPROVE_REASON_RESERVED_WEBSITE', 'Website banido informado.');
cmtx_define('CMTX_APPROVE_REASON_BANNED_WEBSITE_IN_WEBSITE', 'Website banido informado no campo.');
cmtx_define('CMTX_APPROVE_REASON_BANNED_WEBSITE_IN_COMMENT', 'Banned website entered in comment.');
cmtx_define('CMTX_APPROVE_REASON_DUMMY_WEBSITE', 'Website banido informado no comentário.');
cmtx_define('CMTX_APPROVE_REASON_RESERVED_TOWN', 'Cidade reservada informada.');
cmtx_define('CMTX_APPROVE_REASON_BANNED_TOWN', 'Cidade banida informada.');
cmtx_define('CMTX_APPROVE_REASON_DUMMY_TOWN', 'Cidade fictícia informada.');
cmtx_define('CMTX_APPROVE_REASON_LINK_IN_TOWN', 'Link informado na cidade.');
cmtx_define('CMTX_APPROVE_REASON_LINK_IN_COMMENT', 'Link informado no comentário.');
cmtx_define('CMTX_APPROVE_REASON_REPEATS', 'Repetições informadas no comentário.');
cmtx_define('CMTX_APPROVE_REASON_IMAGE_ENTERED', 'Imagem informada.');
cmtx_define('CMTX_APPROVE_REASON_VIDEO_ENTERED', 'Vídeo informada.');
cmtx_define('CMTX_APPROVE_REASON_MILD_SWEARING', 'Xingamento leve.');
cmtx_define('CMTX_APPROVE_REASON_STRONG_SWEARING', 'Xingamento pesado.');
cmtx_define('CMTX_APPROVE_REASON_SPAMMING', 'Prática de spam.');
cmtx_define('CMTX_APPROVE_REASON_CAPITALS', 'Muitas maiúsculas.');
cmtx_define('CMTX_APPROVE_REASON_AKISMET', 'Akismet.');
开发者ID:jonathancromie,项目名称:ifb299,代码行数:30,代码来源:processor.php


注:本文中的cmtx_define函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。