perf[i18n]: TagsView contextmenu
This commit is contained in:
		@@ -125,5 +125,10 @@ export default {
 | 
				
			|||||||
    change: 'Theme change',
 | 
					    change: 'Theme change',
 | 
				
			||||||
    documentation: 'Theme documentation',
 | 
					    documentation: 'Theme documentation',
 | 
				
			||||||
    tips: 'Tips: It is different from the theme-pick on the navbar is two different skinning methods, each with different application scenarios. Refer to the documentation for details.'
 | 
					    tips: 'Tips: It is different from the theme-pick on the navbar is two different skinning methods, each with different application scenarios. Refer to the documentation for details.'
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  tagsView: {
 | 
				
			||||||
 | 
					    close: 'Close',
 | 
				
			||||||
 | 
					    closeOthers: 'Close Others',
 | 
				
			||||||
 | 
					    closeAll: 'Close All'
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -125,5 +125,10 @@ export default {
 | 
				
			|||||||
    change: '换肤',
 | 
					    change: '换肤',
 | 
				
			||||||
    documentation: '换肤文档',
 | 
					    documentation: '换肤文档',
 | 
				
			||||||
    tips: 'Tips: 它区别于 navbar 上的 theme-pick, 是两种不同的换肤方法,各自有不同的应用场景,具体请参考文档。'
 | 
					    tips: 'Tips: 它区别于 navbar 上的 theme-pick, 是两种不同的换肤方法,各自有不同的应用场景,具体请参考文档。'
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  tagsView: {
 | 
				
			||||||
 | 
					    close: '关闭',
 | 
				
			||||||
 | 
					    closeOthers: '关闭其它',
 | 
				
			||||||
 | 
					    closeAll: '关闭所有'
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,9 +8,9 @@
 | 
				
			|||||||
      </router-link>
 | 
					      </router-link>
 | 
				
			||||||
    </scroll-pane>
 | 
					    </scroll-pane>
 | 
				
			||||||
    <ul class='contextmenu' v-show="visible" :style="{left:left+'px',top:top+'px'}">
 | 
					    <ul class='contextmenu' v-show="visible" :style="{left:left+'px',top:top+'px'}">
 | 
				
			||||||
      <li @click="closeSelectedTag(selectedTag)">Close</li>
 | 
					      <li @click="closeSelectedTag(selectedTag)">{{$t('tagsView.close')}}</li>
 | 
				
			||||||
      <li @click="closeOthersTags">Close Others</li>
 | 
					      <li @click="closeOthersTags">{{$t('tagsView.closeOthers')}}</li>
 | 
				
			||||||
      <li @click="closeAllTags">Close All</li>
 | 
					      <li @click="closeAllTags">{{$t('tagsView.closeAll')}}</li>
 | 
				
			||||||
    </ul>
 | 
					    </ul>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user