From 9b2898ae2d2b3812b71fb5c511d2cbcd71dd1320 Mon Sep 17 00:00:00 2001 From: pollyndos <56310766+pollyndos@users.noreply.github.com> Date: Thu, 17 Nov 2022 13:52:46 +0400 Subject: [PATCH 1/5] Update readme.md --- readme.md | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/readme.md b/readme.md index 88609f2..abd5240 100644 --- a/readme.md +++ b/readme.md @@ -20,22 +20,17 @@ The example has the following structure: - The [dashboard-vue-app](dashboard-vue-app) folder contains the client application built with Vue. ### Client Localization - -*Files to look at*: +*Files to Review*: * [App.vue](./dashboard-vue-app/src/App.vue) - - The **dashboard-vue-app** project shows how to localize a client application with the [component-specific JSON files](https://docs.devexpress.com/Dashboard/402537/web-dashboard/dashboard-component-for-vue/localization#localize-ui) for the German market (the `de` culture). Intl is used to format to dates, numbers, and currencies. ### Server Localization - -*Files to look at*: -* [Startup.cs](./asp-net-core-server/Startup.cs#L45) +*Files to Review*: - +* [Startup.cs](./asp-net-core-server/Startup.cs#L45) Since the Web Dashboard exports data on the server side, you need to localize the server to complete the localization process. The **asp-net-core-server** project contains satellite resource assemblies for the German culture. From f891a281e8c964990e41e7100740dd2e041eb0dd Mon Sep 17 00:00:00 2001 From: DevExpressExampleBot Date: Tue, 25 Jun 2024 18:38:43 +0400 Subject: [PATCH 2/5] README auto update [skip ci] --- readme.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/readme.md b/readme.md index abd5240..d06b66a 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,7 @@ ![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/337426632/21.2.3%2B) [![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T972359) [![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183) +[![](https://img.shields.io/badge/💬_Leave_Feedback-feecdd?style=flat-square)](#does-this-example-address-your-development-requirementsobjectives) # Dashboard for Vue - Localization @@ -76,3 +77,10 @@ Open ```http://localhost:8080/``` in your browser to see the result. - [ASP.NET Core Dashboard Control - Localization](https://github.com/DevExpress-Examples/asp-net-core-dashboard-localization) - [ASP.NET MVC Dashboard Extension- Localization](https://github.com/DevExpress-Examples/asp-net-mvc-dashboard-localization) - [ASP.NET Web Forms Dashboard Control - Localization](https://github.com/DevExpress-Examples/asp-net-web-forms-dashboard-localization) + +## Does this example address your development requirements/objectives? + +[](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=vue-dashboard-localization&~~~was_helpful=yes) [](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=vue-dashboard-localization&~~~was_helpful=no) + +(you will be redirected to DevExpress.com to submit your response) + From 0eac7c13e67fff2c3d91db43616f5e597fd99033 Mon Sep 17 00:00:00 2001 From: DevExpressExampleBot Date: Thu, 10 Oct 2024 16:04:44 +0300 Subject: [PATCH 3/5] Created a new file vale.yml [skip ci] --- .github/workflows/vale.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/vale.yml diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml new file mode 100644 index 0000000..adadc73 --- /dev/null +++ b/.github/workflows/vale.yml @@ -0,0 +1,26 @@ +name: vale-validation +on: + pull_request: + paths: + - README.md + +jobs: + vale: + name: runner / vale + runs-on: ubuntu-latest + steps: + - name: clone repo + uses: actions/checkout@v4 + - name: clone vale-styles repo + uses: actions/checkout@v4 + with: + repository: DevExpress/vale-styles + path: vale-styles + ssh-key: ${{ secrets.VALE_STYLES_ACCESS_KEY }} + - name: copy vale rules to the root repo + run: shopt -s dotglob && cp -r ./vale-styles/vale/* . + - name: vale linter check + uses: DevExpress/vale-action@reviewdog + with: + files: README.md + fail_on_error: true From 3131749610661734f6e96933bb512b7b43777abe Mon Sep 17 00:00:00 2001 From: DevExpressExampleBot Date: Wed, 16 Oct 2024 11:15:02 +0400 Subject: [PATCH 4/5] Vale auto update [skip ci] --- .github/workflows/vale.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml index adadc73..068c35b 100644 --- a/.github/workflows/vale.yml +++ b/.github/workflows/vale.yml @@ -24,3 +24,5 @@ jobs: with: files: README.md fail_on_error: true + filter_mode: nofilter + reporter: github-check From 35c453c69303fa8ab2e0e92217e977dd2f5d280f Mon Sep 17 00:00:00 2001 From: DevExpressExampleBot Date: Tue, 4 Mar 2025 19:35:28 +0400 Subject: [PATCH 5/5] Vale auto update [skip ci] --- .github/workflows/vale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml index 068c35b..fc11f81 100644 --- a/.github/workflows/vale.yml +++ b/.github/workflows/vale.yml @@ -3,6 +3,8 @@ on: pull_request: paths: - README.md + - readme.md + - Readme.md jobs: vale: @@ -22,7 +24,7 @@ jobs: - name: vale linter check uses: DevExpress/vale-action@reviewdog with: - files: README.md + files: '["README.md", "readme.md", "Readme.md"]' fail_on_error: true filter_mode: nofilter reporter: github-check