当前位置: 首页 > news >正文

wordpress4.9 多站点怎样做网站底部导航

wordpress4.9 多站点,怎样做网站底部导航,百度学术论文查重免费检测,营销策划方案的内容QT开发之路 企业级开发系列文章#xff0c;主要目标快速学习、完善、提升 相关技能 高效完成企业级项目开发 分享在企业中积累的实用技能和经验。 通过具体的编码过程、代码示例、步骤详解、核心内容和展示的方法解决遇到的实际问题。 阅读前声明 本系列文章属于付费内容 禁止…        QT开发之路 企业级开发系列文章主要目标快速学习、完善、提升 相关技能 高效完成企业级项目开发 分享在企业中积累的实用技能和经验。 通过具体的编码过程、代码示例、步骤详解、核心内容和展示的方法解决遇到的实际问题。 阅读前声明 本系列文章属于付费内容 禁止转载、复制、抄袭 仅限付费读者阅读参考。 QT 多语言转换 ts、qm 1 运行环境 2 命令用法 3 软件界面 4 vs配置 5 .h代码 6 .cpp代码 7 其它 8 en.ts 9 xf.ts 10 zh.ts 11 其它文章 1 运行环境 VS2017QT 2 命令用法 lupdate 更新翻译文件        生成 .ts 文件 用法: lupdate ./ -ts language/QLinguist_en.ts language/QLinguist_zh.ts language/QLinguist_xf.tslanguage/QLinguist_en.ts //language/目录 按照实际需求更改 lrelease 发布更新文件        生成 .qm 文件 用法: lrelease language/QLinguist_en.ts language/QLinguist_zh.ts language/QLinguist_xf.tslanguage/QLinguist_en.ts // language/ 目录 按照实际需求更改 3 软件界面 4 vs配置 项目- 属性-生成事件-生成后事件-输入 lupdate ./ -ts language/QLinguist_en.ts language/QLinguist_zh.ts language/QLinguist_xf.ts lrelease language/QLinguist_en.ts language/QLinguist_zh.ts language/QLinguist_xf.ts 5 .h代码 #pragma once#include QtWidgets/QMainWindow #include ui_QLinguist.h #include QTranslator #include QDebug#pragma execution_character_set(utf-8) class QLinguist : public QMainWindow {Q_OBJECTpublic:QLinguist(QWidget *parent nullptr);~QLinguist();private slots:void on_ActionTriggered();void on_ActionXf_Triggered();void on_ActionEn_Triggered();private:Ui::QLinguistClass ui;QString strFilePath ;QTranslator zh;QTranslator xf;QTranslator en; };6 .cpp代码 #include QLinguist.hQLinguist::QLinguist(QWidget *parent): QMainWindow(parent) {ui.setupUi(this);setWindowTitle(多语言切换Demo CSDN 双子座断点 V1.0 https://blog.csdn.net/qq_37529913?typeblog);strFilePath C:/Users/dream/source/repos/QLinguist/QLinguist/language/;zh.load(strFilePath QLinguist_zh.qm);xf.load(strFilePath QLinguist_xf.qm);en.load(strFilePath QLinguist_en.qm);connect(ui.action, SIGNAL(triggered()), SLOT(on_ActionTriggered()));connect(ui.action_2, SIGNAL(triggered()), SLOT(on_ActionXf_Triggered()));connect(ui.action_3, SIGNAL(triggered()), SLOT(on_ActionEn_Triggered()));}QLinguist::~QLinguist() {}void QLinguist::on_ActionTriggered() {qDebug() .....;qApp-installTranslator(zh);ui.retranslateUi(this); }void QLinguist::on_ActionXf_Triggered() {qDebug() .....;qApp-installTranslator(xf);ui.retranslateUi(this); }void QLinguist::on_ActionEn_Triggered() {qDebug() .....;qApp-installTranslator(en);ui.retranslateUi(this); }7 其它 void QLinguist::on_ActionEn_Triggered() {qDebug() .....;//qApp-installTranslator(en);//ui.retranslateUi(this);//ui.lineEdit-setText(tr(图像路径为空!)); }8 en.ts ?xml version1.0 encodingutf-8? !DOCTYPE TS TS version2.1 languageen_US contextnameQLinguist/namemessagelocation filename../QLinguist.cpp line51/source图像路径为空!/sourcetranslation typeunfinishedThe image path is empty!/translation/message /context contextnameQLinguistClass/namemessagelocation filename../QLinguist.ui line14/location filename../x64/Release/uic/ui_QLinguist.h line227/source多语言切换Demo CSDN 双子座断点 V1.0 https://blog.csdn.net/qq_37529913?typeblog/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line29/location filename../x64/Debug/uic/ui_QLinguist.h line204/location filename../x64/Release/uic/ui_QLinguist.h line231/source图像路径:/sourcetranslation typeunfinishedimage path:/translation/messagemessagelocation filename../QLinguist.ui line62/location filename../x64/Debug/uic/ui_QLinguist.h line205/location filename../x64/Release/uic/ui_QLinguist.h line232/source曝光:/sourcetranslation typeunfinishedExposure:/translation/messagemessagelocation filename../QLinguist.ui line95/location filename../x64/Debug/uic/ui_QLinguist.h line206/location filename../x64/Release/uic/ui_QLinguist.h line233/source增益:/sourcetranslation typeunfinishedgain:/translation/messagemessagelocation filename../QLinguist.ui line128/location filename../x64/Debug/uic/ui_QLinguist.h line207/location filename../x64/Release/uic/ui_QLinguist.h line234/source区域/sourcetranslation typeunfinishedroi:/translation/messagemessagelocation filename../QLinguist.ui line161/location filename../x64/Debug/uic/ui_QLinguist.h line208/location filename../x64/Release/uic/ui_QLinguist.h line235/source串口:/sourcetranslation typeunfinishedcom:/translation/messagemessagelocation filename../QLinguist.ui line236/location filename../x64/Debug/uic/ui_QLinguist.h line209/location filename../x64/Release/uic/ui_QLinguist.h line237/source语言选择/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line246/location filename../x64/Debug/uic/ui_QLinguist.h line201/location filename../x64/Release/uic/ui_QLinguist.h line228/source简体中文/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line251/location filename../x64/Debug/uic/ui_QLinguist.h line202/location filename../x64/Release/uic/ui_QLinguist.h line229/source繁体中文/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line256/location filename../x64/Debug/uic/ui_QLinguist.h line203/location filename../x64/Release/uic/ui_QLinguist.h line230/sourceEnglish/sourcetranslation typeunfinished/translation/messagemessagelocation filename../x64/Debug/uic/ui_QLinguist.h line200/sourceQLinguist/sourcetranslation typeunfinished/translation/message /context /TS9 xf.ts ?xml version1.0 encodingutf-8? !DOCTYPE TS TS version2.1 contextnameQLinguist/namemessagelocation filename../QLinguist.cpp line51/source图像路径为空!/sourcetranslation typeunfinished圖像路徑為空!/translation/message /context contextnameQLinguistClass/namemessagelocation filename../QLinguist.ui line14/location filename../x64/Release/uic/ui_QLinguist.h line227/source多语言切换Demo CSDN 双子座断点 V1.0 https://blog.csdn.net/qq_37529913?typeblog/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line29/location filename../x64/Debug/uic/ui_QLinguist.h line204/location filename../x64/Release/uic/ui_QLinguist.h line231/source图像路径:/sourcetranslation typeunfinished圖像路徑:/translation/messagemessagelocation filename../QLinguist.ui line62/location filename../x64/Debug/uic/ui_QLinguist.h line205/location filename../x64/Release/uic/ui_QLinguist.h line232/source曝光:/sourcetranslation typeunfinished曝光:/translation/messagemessagelocation filename../QLinguist.ui line95/location filename../x64/Debug/uic/ui_QLinguist.h line206/location filename../x64/Release/uic/ui_QLinguist.h line233/source增益:/sourcetranslation typeunfinished增益:/translation/messagemessagelocation filename../QLinguist.ui line128/location filename../x64/Debug/uic/ui_QLinguist.h line207/location filename../x64/Release/uic/ui_QLinguist.h line234/source区域/sourcetranslation typeunfinished區域:/translation/messagemessagelocation filename../QLinguist.ui line161/location filename../x64/Debug/uic/ui_QLinguist.h line208/location filename../x64/Release/uic/ui_QLinguist.h line235/source串口:/sourcetranslation typeunfinished串口:/translation/messagemessagelocation filename../QLinguist.ui line236/location filename../x64/Debug/uic/ui_QLinguist.h line209/location filename../x64/Release/uic/ui_QLinguist.h line237/source语言选择/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line246/location filename../x64/Debug/uic/ui_QLinguist.h line201/location filename../x64/Release/uic/ui_QLinguist.h line228/source简体中文/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line251/location filename../x64/Debug/uic/ui_QLinguist.h line202/location filename../x64/Release/uic/ui_QLinguist.h line229/source繁体中文/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line256/location filename../x64/Debug/uic/ui_QLinguist.h line203/location filename../x64/Release/uic/ui_QLinguist.h line230/sourceEnglish/sourcetranslation typeunfinished/translation/messagemessagelocation filename../x64/Debug/uic/ui_QLinguist.h line200/sourceQLinguist/sourcetranslation typeunfinished/translation/message /context /TS10 zh.ts ?xml version1.0 encodingutf-8? !DOCTYPE TS TS version2.1 languagezh_CN contextnameQLinguist/namemessagelocation filename../QLinguist.cpp line49/source图像路径为空!/sourcetranslation typeunfinished图像路径为空!/translation/message /context contextnameQLinguistClass/namemessagelocation filename../QLinguist.ui line14/source多语言切换Demo CSDN 双子座断点 V1.0 https://blog.csdn.net/qq_37529913?typeblog/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line29/source图像路径:/sourcetranslation typeunfinished图像路径:/translation/messagemessagelocation filename../QLinguist.ui line62/source曝光:/sourcetranslation typeunfinished曝光:/translation/messagemessagelocation filename../QLinguist.ui line95/source增益:/sourcetranslation typeunfinished增益:/translation/messagemessagelocation filename../QLinguist.ui line128/source区域/sourcetranslation typeunfinished区域/translation/messagemessagelocation filename../QLinguist.ui line161/source串口:/sourcetranslation typeunfinished串口:/translation/messagemessagelocation filename../QLinguist.ui line236/source语言选择/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line246/source简体中文/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line251/source繁体中文/sourcetranslation typeunfinished/translation/messagemessagelocation filename../QLinguist.ui line256/sourceEnglish/sourcetranslation typeunfinished/translation/message /context /TS11 其它文章
http://www.hkea.cn/news/14539280/

相关文章:

  • 做网站可以不写代码wordpress密码解密
  • 网站建设公司首选华网天下有没有好的网站
  • 香山红叶建设有限公司网站想要个免费网站
  • 成都网站建设制作需求不明确的软件开发模型
  • 平板电脑 做网站开发简单网页素材
  • 构建自己的网站大连网络推广机构
  • 阿里云如何做网站网站布局英文
  • 中国住房和城乡建设厅网站外贸网站建设科技
  • 影视自助建站系统源码海口智能建站模板
  • 天津手机模板建站手机网站设计宽度
  • 美橙建站之星怎么样郑州网站建设及托管
  • 网站设计作品哪些网站可以做驾考试题
  • 永春网站建设小程序商城的运营模式
  • 怎么做网站赚钱的动漫网站制作一个网站需要多少钱
  • 家政服务 技术支持 东莞网站建设龙岩正规招聘网
  • 乐陵seo网站千岛湖建设集团办公网站
  • 关于网站集约化建设的意见系统优化设置
  • 同城分类网站建设学网站建设前景
  • 网站开发最好用什么软件前端开发语言的特点是
  • flex 做网站做淘宝优惠网站
  • 访问中国建设银行网站阿勒泰地区网站
  • 鹤壁网站建设优化seo外包 杭州
  • 深圳博纳网站建设什么是网络营销基本思想
  • 怎样做好公司网站怎么网站建设多少钱
  • 网站备案变更主体电话官网如何做广告推广
  • 青海微信网站建设wordpress more
  • 淄博定制网站建设公司制作html网页相册代码
  • 管局审核网站名称门户网站的案例分析
  • 徐州网站制作功能企业网站的类型
  • 做网站的荣誉证书wordpress添加cnzz