diff --git a/README.md b/README.md
index a059337..b3d249c 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,23 @@
 Yet another image viewer.
 
+|CI|Build Status|
+|---|---|
+|Windows Build|[](https://ci.appveyor.com/project/BLumia/pineapplepictures/branch/master)
+|
+
 
 
+## Get it!
+
+ - [GitHub Release Page](https://github.com/BLumia/PineapplePictures/releases)
+ - Archlinux AUR: [pineapple-pictures-git](https://aur.archlinux.org/packages/pineapple-pictures-git/)
+
+## Help Translation!
+
+[Translate this project on Transifex!](https://www.transifex.com/blumia/pineapple-pictures/)
+
+Feel free to open up an issue to request an new language to translate.
+
 ## Uncleaned shits inside(TM):
 
  - Mixed `CR LF` and `LF`.
diff --git a/languages/PineapplePictures.ts b/languages/PineapplePictures.ts
index 097dd7d..3ca203e 100644
--- a/languages/PineapplePictures.ts
+++ b/languages/PineapplePictures.ts
@@ -46,7 +46,7 @@
     
     
         
-        Copy &Pixmap
+        Copy P&ixmap
         
     
     
@@ -110,7 +110,7 @@
 
     main
     
-        
+        
         File list.
         
     
diff --git a/languages/PineapplePictures_zh_CN.ts b/languages/PineapplePictures_zh_CN.ts
index cba86e3..869e85e 100644
--- a/languages/PineapplePictures_zh_CN.ts
+++ b/languages/PineapplePictures_zh_CN.ts
@@ -45,9 +45,13 @@
         复制(&C)
     
     
-        
         Copy &Pixmap
-        复制位图(&P)
+        复制位图(&P)
+    
+    
+        
+        Copy P&ixmap
+        复制位图(&I)
     
     
         
@@ -110,7 +114,7 @@
 
     main
     
-        
+        
         File list.
         文件列表。
     
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 41008b5..345cb2e 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -340,7 +340,7 @@ void MainWindow::contextMenuEvent(QContextMenuEvent *event)
         }
     }
 
-    QAction * copyPixmap = new QAction(tr("Copy &Pixmap"));
+    QAction * copyPixmap = new QAction(tr("Copy P&ixmap"));
     connect(copyPixmap, &QAction::triggered, this, [ = ](){
         QClipboard *cb = QApplication::clipboard();
         cb->setPixmap(m_graphicsView->scene()->renderToPixmap());