mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 05:36:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | ||
| 
 | ||
| return [
 | ||
|     'heading' => '欢迎来到Pelican!',
 | ||
|     'version' => '版本: :version',
 | ||
|     'advanced' => '高级',
 | ||
|     'server' => '服务器',
 | ||
|     'user' => '用户',
 | ||
|     'sections' => [
 | ||
|         'intro-developers' => [
 | ||
|             'heading' => '面向开发者的信息',
 | ||
|             'content' => '感谢您尝试开发版本!',
 | ||
|             'extra_note' => '如果您遇到任何问题,请在GitHub上报告它们。',
 | ||
|             'button_issues' => '创建 Issue',
 | ||
|             'button_features' => '讨论功能',
 | ||
|         ],
 | ||
|         'intro-update-available' => [
 | ||
|             'heading' => '有可用更新',
 | ||
|             'content' => ':latest版本现在可用!阅读我们的文档以更新您的面板。',
 | ||
|         ],
 | ||
|         'intro-no-update' => [
 | ||
|             'heading' => '您的面板是最新的',
 | ||
|             'content' => '您正运行的 Pelican 版本为 :version。您的面板目前是最新的!',
 | ||
|         ],
 | ||
|         'intro-first-node' => [
 | ||
|             'heading' => '侦测不到任何节点',
 | ||
|             'content' => '看起来您还没有设置任何节点,但不用担心,因为您可以点击操作按钮来创建第一个节点!',
 | ||
|             'extra_note' => '如果您遇到任何问题,请在GitHub上报告它们。',
 | ||
|             'button_label' => '在Pelican建立第一个节点',
 | ||
|         ],
 | ||
|         'intro-support' => [
 | ||
|             'heading' => '支持Pelican',
 | ||
|             'content' => '感谢您使用Pelican!这得益于您的支持、我们贡献者的努力以及所有支持者的帮助。',
 | ||
|             'extra_note' => '我们感谢任何人的任何支持。',
 | ||
|             'button_translate' => '协助翻译',
 | ||
|             'button_donate' => '支持此项目',
 | ||
|         ],
 | ||
|         'intro-help' => [
 | ||
|             'heading' => '需要帮助?',
 | ||
|             'content' => '请先查阅文档!如果您仍然需要帮助,请加入我们的 Discord 服务器!',
 | ||
|             'button_docs' => '阅读文档',
 | ||
|         ],
 | ||
|     ],
 | ||
| ];
 | 
