mirror of
				https://gitlab.nic.cz/turris/reforis/foris-js.git
				synced 2025-11-03 23:00:31 +01:00 
			
		
		
		
	Merge branch 'dev' into 'master'
Dev See merge request turris/reforis/foris-js!215
This commit is contained in:
		@@ -1,4 +1,4 @@
 | 
				
			|||||||
image: node:16-alpine
 | 
					image: registry.nic.cz/turris/reforis/reforis/reforis-image
 | 
				
			||||||
 | 
					
 | 
				
			||||||
stages:
 | 
					stages:
 | 
				
			||||||
    - test
 | 
					    - test
 | 
				
			||||||
@@ -6,7 +6,7 @@ stages:
 | 
				
			|||||||
    - publish
 | 
					    - publish
 | 
				
			||||||
 | 
					
 | 
				
			||||||
before_script:
 | 
					before_script:
 | 
				
			||||||
    - apk add make
 | 
					    - apt-get update && apt-get install -y make
 | 
				
			||||||
    - npm install
 | 
					    - npm install
 | 
				
			||||||
 | 
					
 | 
				
			||||||
test:
 | 
					test:
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										1284
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										1284
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -1,6 +1,6 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    "name": "foris",
 | 
					    "name": "foris",
 | 
				
			||||||
    "version": "5.6.0",
 | 
					    "version": "5.6.1",
 | 
				
			||||||
    "description": "Foris JS library is a set of components and utils for reForis application and plugins.",
 | 
					    "description": "Foris JS library is a set of components and utils for reForis application and plugins.",
 | 
				
			||||||
    "author": "CZ.NIC, z.s.p.o.",
 | 
					    "author": "CZ.NIC, z.s.p.o.",
 | 
				
			||||||
    "repository": {
 | 
					    "repository": {
 | 
				
			||||||
@@ -22,7 +22,7 @@
 | 
				
			|||||||
        "react-uid": "^2.2.0"
 | 
					        "react-uid": "^2.2.0"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "peerDependencies": {
 | 
					    "peerDependencies": {
 | 
				
			||||||
        "bootstrap": "4.4.1",
 | 
					        "bootstrap": "^4.6.2",
 | 
				
			||||||
        "prop-types": "15.8.1",
 | 
					        "prop-types": "15.8.1",
 | 
				
			||||||
        "react": "16.9.0",
 | 
					        "react": "16.9.0",
 | 
				
			||||||
        "react-dom": "16.9.0",
 | 
					        "react-dom": "16.9.0",
 | 
				
			||||||
@@ -38,7 +38,7 @@
 | 
				
			|||||||
        "@testing-library/react": "^8.0.9",
 | 
					        "@testing-library/react": "^8.0.9",
 | 
				
			||||||
        "babel-loader": "^8.1.0",
 | 
					        "babel-loader": "^8.1.0",
 | 
				
			||||||
        "babel-polyfill": "^6.26.0",
 | 
					        "babel-polyfill": "^6.26.0",
 | 
				
			||||||
        "bootstrap": "^4.5.0",
 | 
					        "bootstrap": "^4.6.2",
 | 
				
			||||||
        "css-loader": "^5.2.4",
 | 
					        "css-loader": "^5.2.4",
 | 
				
			||||||
        "eslint": "^6.8.0",
 | 
					        "eslint": "^6.8.0",
 | 
				
			||||||
        "eslint-config-prettier": "^6.11.0",
 | 
					        "eslint-config-prettier": "^6.11.0",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,5 @@
 | 
				
			|||||||
/*
 | 
					/*
 | 
				
			||||||
 * Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
 | 
					 * Copyright (C) 2019-2023 CZ.NIC z.s.p.o. (https://www.nic.cz/)
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * This is free software, licensed under the GNU General Public License v3.
 | 
					 * This is free software, licensed under the GNU General Public License v3.
 | 
				
			||||||
 * See /LICENSE for more information.
 | 
					 * See /LICENSE for more information.
 | 
				
			||||||
@@ -31,24 +31,25 @@ export function Button({
 | 
				
			|||||||
    children,
 | 
					    children,
 | 
				
			||||||
    ...props
 | 
					    ...props
 | 
				
			||||||
}) {
 | 
					}) {
 | 
				
			||||||
    let buttonClass = className ? `btn ${className}` : "btn btn-primary ";
 | 
					    let buttonClass = className ? `btn ${className}` : "btn btn-primary";
 | 
				
			||||||
    if (forisFormSize) {
 | 
					    if (forisFormSize) {
 | 
				
			||||||
        buttonClass = `${buttonClass} col-sm-12 col-md-3 col-lg-2`;
 | 
					        buttonClass = `${buttonClass} col-sm-12 col-md-3 col-lg-2`;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const span = loading ? (
 | 
					    return (
 | 
				
			||||||
 | 
					        <button
 | 
				
			||||||
 | 
					            type="button"
 | 
				
			||||||
 | 
					            className={`${buttonClass} d-inline-flex justify-content-center align-items-center`}
 | 
				
			||||||
 | 
					            {...props}
 | 
				
			||||||
 | 
					        >
 | 
				
			||||||
 | 
					            {loading && (
 | 
				
			||||||
                <span
 | 
					                <span
 | 
				
			||||||
            className="spinner-border spinner-border-sm"
 | 
					                    className="spinner-border spinner-border-sm mr-1"
 | 
				
			||||||
                    role="status"
 | 
					                    role="status"
 | 
				
			||||||
                    aria-hidden="true"
 | 
					                    aria-hidden="true"
 | 
				
			||||||
                />
 | 
					                />
 | 
				
			||||||
    ) : null;
 | 
					            )}
 | 
				
			||||||
 | 
					            <span>{children}</span>
 | 
				
			||||||
    return (
 | 
					 | 
				
			||||||
        <button type="button" className={buttonClass} {...props}>
 | 
					 | 
				
			||||||
            {span}
 | 
					 | 
				
			||||||
            {span ? " " : null}
 | 
					 | 
				
			||||||
            {children}
 | 
					 | 
				
			||||||
        </button>
 | 
					        </button>
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -31,3 +31,7 @@
 | 
				
			|||||||
.spinner-fs-wrapper .spinner-text {
 | 
					.spinner-fs-wrapper .spinner-text {
 | 
				
			||||||
    margin: 1rem;
 | 
					    margin: 1rem;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.spinner-border-sm {
 | 
				
			||||||
 | 
					    min-width: 16px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,33 +2,38 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
exports[`<Button /> Render button correctly 1`] = `
 | 
					exports[`<Button /> Render button correctly 1`] = `
 | 
				
			||||||
<button
 | 
					<button
 | 
				
			||||||
  class="btn btn-primary "
 | 
					  class="btn btn-primary d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
  type="button"
 | 
					  type="button"
 | 
				
			||||||
>
 | 
					>
 | 
				
			||||||
 | 
					  <span>
 | 
				
			||||||
    Test Button
 | 
					    Test Button
 | 
				
			||||||
 | 
					  </span>
 | 
				
			||||||
</button>
 | 
					</button>
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exports[`<Button /> Render button with custom classes 1`] = `
 | 
					exports[`<Button /> Render button with custom classes 1`] = `
 | 
				
			||||||
<button
 | 
					<button
 | 
				
			||||||
  class="btn one two three"
 | 
					  class="btn one two three d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
  type="button"
 | 
					  type="button"
 | 
				
			||||||
>
 | 
					>
 | 
				
			||||||
 | 
					  <span>
 | 
				
			||||||
    Test Button
 | 
					    Test Button
 | 
				
			||||||
 | 
					  </span>
 | 
				
			||||||
</button>
 | 
					</button>
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exports[`<Button /> Render button with spinner 1`] = `
 | 
					exports[`<Button /> Render button with spinner 1`] = `
 | 
				
			||||||
<button
 | 
					<button
 | 
				
			||||||
  class="btn btn-primary "
 | 
					  class="btn btn-primary d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
  type="button"
 | 
					  type="button"
 | 
				
			||||||
>
 | 
					>
 | 
				
			||||||
  <span
 | 
					  <span
 | 
				
			||||||
    aria-hidden="true"
 | 
					    aria-hidden="true"
 | 
				
			||||||
    class="spinner-border spinner-border-sm"
 | 
					    class="spinner-border spinner-border-sm mr-1"
 | 
				
			||||||
    role="status"
 | 
					    role="status"
 | 
				
			||||||
  />
 | 
					  />
 | 
				
			||||||
   
 | 
					  <span>
 | 
				
			||||||
    Test Button
 | 
					    Test Button
 | 
				
			||||||
 | 
					  </span>
 | 
				
			||||||
</button>
 | 
					</button>
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -301,10 +301,12 @@ exports[`<WiFiSettings/> Snapshot both modules disabled. 1`] = `
 | 
				
			|||||||
        class="text-right"
 | 
					        class="text-right"
 | 
				
			||||||
      >
 | 
					      >
 | 
				
			||||||
        <button
 | 
					        <button
 | 
				
			||||||
          class="btn btn-primary  col-sm-12 col-md-3 col-lg-2"
 | 
					          class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
          type="submit"
 | 
					          type="submit"
 | 
				
			||||||
        >
 | 
					        >
 | 
				
			||||||
 | 
					          <span>
 | 
				
			||||||
            Save
 | 
					            Save
 | 
				
			||||||
 | 
					          </span>
 | 
				
			||||||
        </button>
 | 
					        </button>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
    </form>
 | 
					    </form>
 | 
				
			||||||
@@ -322,10 +324,12 @@ exports[`<WiFiSettings/> Snapshot both modules disabled. 1`] = `
 | 
				
			|||||||
      class="text-right"
 | 
					      class="text-right"
 | 
				
			||||||
    >
 | 
					    >
 | 
				
			||||||
      <button
 | 
					      <button
 | 
				
			||||||
        class="btn btn-primary col-sm-12 col-md-3 col-lg-2"
 | 
					        class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
        type="button"
 | 
					        type="button"
 | 
				
			||||||
      >
 | 
					      >
 | 
				
			||||||
 | 
					        <span>
 | 
				
			||||||
          Reset Wi-Fi Settings
 | 
					          Reset Wi-Fi Settings
 | 
				
			||||||
 | 
					        </span>
 | 
				
			||||||
      </button>
 | 
					      </button>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
@@ -435,13 +439,13 @@ exports[`<WiFiSettings/> Snapshot guest network. 1`] = `
 | 
				
			|||||||
          class=\\"text-right\\"
 | 
					          class=\\"text-right\\"
 | 
				
			||||||
        >
 | 
					        >
 | 
				
			||||||
          <button
 | 
					          <button
 | 
				
			||||||
            class=\\"btn btn-primary  col-sm-12 col-md-3 col-lg-2\\"
 | 
					            class=\\"btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center\\"
 | 
				
			||||||
+           disabled=\\"\\"
 | 
					+           disabled=\\"\\"
 | 
				
			||||||
            type=\\"submit\\"
 | 
					            type=\\"submit\\"
 | 
				
			||||||
          >
 | 
					          >
 | 
				
			||||||
 | 
					            <span>
 | 
				
			||||||
              Save
 | 
					              Save
 | 
				
			||||||
          </button>
 | 
					            </span>"
 | 
				
			||||||
        </div>"
 | 
					 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
 | 
					exports[`<WiFiSettings/> Snapshot one module enabled. 1`] = `
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -46,16 +46,20 @@ exports[`<RebootButton/> Render modal. 1`] = `
 | 
				
			|||||||
            class="modal-footer"
 | 
					            class="modal-footer"
 | 
				
			||||||
          >
 | 
					          >
 | 
				
			||||||
            <button
 | 
					            <button
 | 
				
			||||||
              class="btn btn-primary "
 | 
					              class="btn btn-primary d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
              type="button"
 | 
					              type="button"
 | 
				
			||||||
            >
 | 
					            >
 | 
				
			||||||
 | 
					              <span>
 | 
				
			||||||
                Cancel
 | 
					                Cancel
 | 
				
			||||||
 | 
					              </span>
 | 
				
			||||||
            </button>
 | 
					            </button>
 | 
				
			||||||
            <button
 | 
					            <button
 | 
				
			||||||
              class="btn btn-danger"
 | 
					              class="btn btn-danger d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
              type="button"
 | 
					              type="button"
 | 
				
			||||||
            >
 | 
					            >
 | 
				
			||||||
 | 
					              <span>
 | 
				
			||||||
                Confirm reboot
 | 
					                Confirm reboot
 | 
				
			||||||
 | 
					              </span>
 | 
				
			||||||
            </button>
 | 
					            </button>
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
@@ -63,10 +67,12 @@ exports[`<RebootButton/> Render modal. 1`] = `
 | 
				
			|||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
  <button
 | 
					  <button
 | 
				
			||||||
    class="btn btn-danger"
 | 
					    class="btn btn-danger d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
    type="button"
 | 
					    type="button"
 | 
				
			||||||
  >
 | 
					  >
 | 
				
			||||||
 | 
					    <span>
 | 
				
			||||||
      Reboot
 | 
					      Reboot
 | 
				
			||||||
 | 
					    </span>
 | 
				
			||||||
  </button>
 | 
					  </button>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
@@ -77,10 +83,12 @@ exports[`<RebootButton/> Render. 1`] = `
 | 
				
			|||||||
    id="modal-container"
 | 
					    id="modal-container"
 | 
				
			||||||
  />
 | 
					  />
 | 
				
			||||||
  <button
 | 
					  <button
 | 
				
			||||||
    class="btn btn-danger"
 | 
					    class="btn btn-danger d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
    type="button"
 | 
					    type="button"
 | 
				
			||||||
  >
 | 
					  >
 | 
				
			||||||
 | 
					    <span>
 | 
				
			||||||
      Reboot
 | 
					      Reboot
 | 
				
			||||||
 | 
					    </span>
 | 
				
			||||||
  </button>
 | 
					  </button>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,17 +3,18 @@
 | 
				
			|||||||
exports[`<SubmitButton/> Render load 1`] = `
 | 
					exports[`<SubmitButton/> Render load 1`] = `
 | 
				
			||||||
<div>
 | 
					<div>
 | 
				
			||||||
  <button
 | 
					  <button
 | 
				
			||||||
    class="btn btn-primary  col-sm-12 col-md-3 col-lg-2"
 | 
					    class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
    disabled=""
 | 
					    disabled=""
 | 
				
			||||||
    type="submit"
 | 
					    type="submit"
 | 
				
			||||||
  >
 | 
					  >
 | 
				
			||||||
    <span
 | 
					    <span
 | 
				
			||||||
      aria-hidden="true"
 | 
					      aria-hidden="true"
 | 
				
			||||||
      class="spinner-border spinner-border-sm"
 | 
					      class="spinner-border spinner-border-sm mr-1"
 | 
				
			||||||
      role="status"
 | 
					      role="status"
 | 
				
			||||||
    />
 | 
					    />
 | 
				
			||||||
     
 | 
					    <span>
 | 
				
			||||||
      Load settings
 | 
					      Load settings
 | 
				
			||||||
 | 
					    </span>
 | 
				
			||||||
  </button>
 | 
					  </button>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
@@ -21,10 +22,12 @@ exports[`<SubmitButton/> Render load 1`] = `
 | 
				
			|||||||
exports[`<SubmitButton/> Render ready 1`] = `
 | 
					exports[`<SubmitButton/> Render ready 1`] = `
 | 
				
			||||||
<div>
 | 
					<div>
 | 
				
			||||||
  <button
 | 
					  <button
 | 
				
			||||||
    class="btn btn-primary  col-sm-12 col-md-3 col-lg-2"
 | 
					    class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
    type="submit"
 | 
					    type="submit"
 | 
				
			||||||
  >
 | 
					  >
 | 
				
			||||||
 | 
					    <span>
 | 
				
			||||||
      Save
 | 
					      Save
 | 
				
			||||||
 | 
					    </span>
 | 
				
			||||||
  </button>
 | 
					  </button>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
@@ -32,17 +35,18 @@ exports[`<SubmitButton/> Render ready 1`] = `
 | 
				
			|||||||
exports[`<SubmitButton/> Render saving 1`] = `
 | 
					exports[`<SubmitButton/> Render saving 1`] = `
 | 
				
			||||||
<div>
 | 
					<div>
 | 
				
			||||||
  <button
 | 
					  <button
 | 
				
			||||||
    class="btn btn-primary  col-sm-12 col-md-3 col-lg-2"
 | 
					    class="btn btn-primary col-sm-12 col-md-3 col-lg-2 d-inline-flex justify-content-center align-items-center"
 | 
				
			||||||
    disabled=""
 | 
					    disabled=""
 | 
				
			||||||
    type="submit"
 | 
					    type="submit"
 | 
				
			||||||
  >
 | 
					  >
 | 
				
			||||||
    <span
 | 
					    <span
 | 
				
			||||||
      aria-hidden="true"
 | 
					      aria-hidden="true"
 | 
				
			||||||
      class="spinner-border spinner-border-sm"
 | 
					      class="spinner-border spinner-border-sm mr-1"
 | 
				
			||||||
      role="status"
 | 
					      role="status"
 | 
				
			||||||
    />
 | 
					    />
 | 
				
			||||||
     
 | 
					    <span>
 | 
				
			||||||
      Updating
 | 
					      Updating
 | 
				
			||||||
 | 
					    </span>
 | 
				
			||||||
  </button>
 | 
					  </button>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
`;
 | 
					`;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,8 +8,8 @@ msgstr ""
 | 
				
			|||||||
"Project-Id-Version: PROJECT VERSION\n"
 | 
					"Project-Id-Version: PROJECT VERSION\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 | 
					"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 | 
				
			||||||
"POT-Creation-Date: 2022-12-02 15:54+0100\n"
 | 
					"POT-Creation-Date: 2022-12-02 15:54+0100\n"
 | 
				
			||||||
"PO-Revision-Date: 2023-04-16 13:52+0000\n"
 | 
					"PO-Revision-Date: 2023-11-23 16:03+0000\n"
 | 
				
			||||||
"Last-Translator: František Bartoš <frantisek.bartos@email.cz>\n"
 | 
					"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n"
 | 
				
			||||||
"Language-Team: Czech <https://hosted.weblate.org/projects/turris/foris-js/cs/"
 | 
					"Language-Team: Czech <https://hosted.weblate.org/projects/turris/foris-js/cs/"
 | 
				
			||||||
">\n"
 | 
					">\n"
 | 
				
			||||||
"Language: cs\n"
 | 
					"Language: cs\n"
 | 
				
			||||||
@@ -17,7 +17,7 @@ msgstr ""
 | 
				
			|||||||
"Content-Type: text/plain; charset=utf-8\n"
 | 
					"Content-Type: text/plain; charset=utf-8\n"
 | 
				
			||||||
"Content-Transfer-Encoding: 8bit\n"
 | 
					"Content-Transfer-Encoding: 8bit\n"
 | 
				
			||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 | 
					"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 | 
				
			||||||
"X-Generator: Weblate 4.17-dev\n"
 | 
					"X-Generator: Weblate 5.2.1-rc\n"
 | 
				
			||||||
"Generated-By: Babel 2.11.0\n"
 | 
					"Generated-By: Babel 2.11.0\n"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/api/utils.js:61
 | 
					#: src/api/utils.js:61
 | 
				
			||||||
@@ -79,7 +79,7 @@ msgstr "Nastavení Wi-Fi jsou uvedena do výchozího stavu."
 | 
				
			|||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:55
 | 
					#: src/common/WiFiSettings/ResetWiFiSettings.js:55
 | 
				
			||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:69
 | 
					#: src/common/WiFiSettings/ResetWiFiSettings.js:69
 | 
				
			||||||
msgid "Reset Wi-Fi Settings"
 | 
					msgid "Reset Wi-Fi Settings"
 | 
				
			||||||
msgstr "Resetovat nastavení Wi-Fi"
 | 
					msgstr "Reset nastavení Wi-Fi"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:57
 | 
					#: src/common/WiFiSettings/ResetWiFiSettings.js:57
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
@@ -105,7 +105,6 @@ msgid "Hide SSID"
 | 
				
			|||||||
msgstr "Skrýt SSID"
 | 
					msgstr "Skrýt SSID"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiForm.js:186
 | 
					#: src/common/WiFiSettings/WiFiForm.js:186
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "802.11n/ac/ax mode"
 | 
					msgid "802.11n/ac/ax mode"
 | 
				
			||||||
msgstr "Režim 802.11n/ac/ax"
 | 
					msgstr "Režim 802.11n/ac/ax"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -119,22 +118,23 @@ msgstr "Šifrování"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiForm.js:226
 | 
					#: src/common/WiFiSettings/WiFiForm.js:226
 | 
				
			||||||
msgid "Disable Management Frame Protection"
 | 
					msgid "Disable Management Frame Protection"
 | 
				
			||||||
msgstr ""
 | 
					msgstr "Vypnout Management Frame Protection"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiForm.js:227
 | 
					#: src/common/WiFiSettings/WiFiForm.js:227
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
"In case you have trouble connecting to WiFi Access Point, try disabling "
 | 
					"In case you have trouble connecting to WiFi Access Point, try disabling "
 | 
				
			||||||
"Management Frame Protection."
 | 
					"Management Frame Protection."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					"Máte-li problémy při připojování k přístupovému bodu Wi-Fi, zkuste vypnout "
 | 
				
			||||||
 | 
					"Management Frame Protection."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiForm.js:262
 | 
					#: src/common/WiFiSettings/WiFiForm.js:262
 | 
				
			||||||
msgid "auto"
 | 
					msgid "auto"
 | 
				
			||||||
msgstr "automaticky"
 | 
					msgstr "automaticky"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiForm.js:303
 | 
					#: src/common/WiFiSettings/WiFiForm.js:303
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "Custom"
 | 
					msgid "Custom"
 | 
				
			||||||
msgstr "automaticky"
 | 
					msgstr "Uživatelsky určené"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiGuestForm.js:42
 | 
					#: src/common/WiFiSettings/WiFiGuestForm.js:42
 | 
				
			||||||
msgid "Enable Guest Wi-Fi"
 | 
					msgid "Enable Guest Wi-Fi"
 | 
				
			||||||
@@ -170,7 +170,6 @@ msgstr "Je třeba, aby heslo obsahovalo alespoň 8 znaků"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiSettings.js:90
 | 
					#: src/common/WiFiSettings/WiFiSettings.js:90
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiSettings.js:109
 | 
					#: src/common/WiFiSettings/WiFiSettings.js:109
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "Password must not contain more than 63 symbols"
 | 
					msgid "Password must not contain more than 63 symbols"
 | 
				
			||||||
msgstr "Heslo nesmí obsahovat více než 63 znaků"
 | 
					msgstr "Heslo nesmí obsahovat více než 63 znaků"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -203,24 +202,20 @@ msgid "802.11ac - 160 MHz wide channel"
 | 
				
			|||||||
msgstr "802.11ac – kanál šíře 160 MHz"
 | 
					msgstr "802.11ac – kanál šíře 160 MHz"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:16
 | 
					#: src/common/WiFiSettings/constants.js:16
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "802.11ax - 20 MHz wide channel"
 | 
					msgid "802.11ax - 20 MHz wide channel"
 | 
				
			||||||
msgstr "802.11ac – kanál šíře 20 MHz"
 | 
					msgstr "802.11ax – kanál šíře 20 MHz"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:17
 | 
					#: src/common/WiFiSettings/constants.js:17
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "802.11ax - 40 MHz wide channel"
 | 
					msgid "802.11ax - 40 MHz wide channel"
 | 
				
			||||||
msgstr "802.11ac – kanál šíře 40 MHz"
 | 
					msgstr "802.11ax – kanál šíře 40 MHz"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:18
 | 
					#: src/common/WiFiSettings/constants.js:18
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "802.11ax - 80 MHz wide channel"
 | 
					msgid "802.11ax - 80 MHz wide channel"
 | 
				
			||||||
msgstr "802.11ac – kanál šíře 80 MHz"
 | 
					msgstr "802.11ax – kanál šíře 80 MHz"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:19
 | 
					#: src/common/WiFiSettings/constants.js:19
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "802.11ax - 160 MHz wide channel"
 | 
					msgid "802.11ax - 160 MHz wide channel"
 | 
				
			||||||
msgstr "802.11ac – kanál šíře 160 MHz"
 | 
					msgstr "802.11ax – kanál šíře 160 MHz"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:26
 | 
					#: src/common/WiFiSettings/constants.js:26
 | 
				
			||||||
msgid "WPA3 only"
 | 
					msgid "WPA3 only"
 | 
				
			||||||
@@ -228,7 +223,7 @@ msgstr "pouze WPA3"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:27
 | 
					#: src/common/WiFiSettings/constants.js:27
 | 
				
			||||||
msgid "WPA3 with WPA2 as fallback (default)"
 | 
					msgid "WPA3 with WPA2 as fallback (default)"
 | 
				
			||||||
msgstr ""
 | 
					msgstr "WPA3, nouzově WPA2 (výchozí)"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:28
 | 
					#: src/common/WiFiSettings/constants.js:28
 | 
				
			||||||
msgid "WPA2 only"
 | 
					msgid "WPA2 only"
 | 
				
			||||||
@@ -243,13 +238,8 @@ msgstr ""
 | 
				
			|||||||
"problémy."
 | 
					"problémy."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:34
 | 
					#: src/common/WiFiSettings/constants.js:34
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "WPA2/3 pre-shared key, that is required to connect to the network."
 | 
					msgid "WPA2/3 pre-shared key, that is required to connect to the network."
 | 
				
			||||||
msgstr ""
 | 
					msgstr "Předsdílený klíč WPA2/3, který je vyžadován pro připojení se k síti."
 | 
				
			||||||
"\n"
 | 
					 | 
				
			||||||
"        WPA2 předsdílený klíč, který je vyžadován pro připojení se k "
 | 
					 | 
				
			||||||
"síti.\n"
 | 
					 | 
				
			||||||
"    "
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:37
 | 
					#: src/common/WiFiSettings/constants.js:37
 | 
				
			||||||
msgid "If set, network is not visible when scanning for available networks."
 | 
					msgid "If set, network is not visible when scanning for available networks."
 | 
				
			||||||
@@ -258,38 +248,29 @@ msgstr ""
 | 
				
			|||||||
"vyhledávat dostupné sítě."
 | 
					"vyhledávat dostupné sítě."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:40
 | 
					#: src/common/WiFiSettings/constants.js:40
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
"The 2.4 GHz band is more widely supported by clients, but tends to have "
 | 
					"The 2.4 GHz band is more widely supported by clients, but tends to have "
 | 
				
			||||||
"more interference. The 5 GHz band is a newer standard and may not be "
 | 
					"more interference. The 5 GHz band is a newer standard and may not be "
 | 
				
			||||||
"supported by all your devices. It usually has less interference, but the "
 | 
					"supported by all your devices. It usually has less interference, but the "
 | 
				
			||||||
"signal does not carry so well indoors."
 | 
					"signal does not carry so well indoors."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"\n"
 | 
					"Pásmo 2,4 GHz je v klientských zařízeních podporováno nejčastěji, bývá ale "
 | 
				
			||||||
"        Pásmo 2,4 GHz je v klientských zařízeních podporováno nejčastěji,"
 | 
					"více zarušené. Pásmo 5 GHz je novější standard a nemusí být podporováno "
 | 
				
			||||||
" ale bývá více zarušené. Pásmo 5 GHz je\n"
 | 
					"všemi vámi používanými zařízeními. Obvykle bývá méně zarušené, signál se ale "
 | 
				
			||||||
"        novější standard a nemusí být podporováno všemi vámi používanými "
 | 
					"hůře šíří uvnitř budov."
 | 
				
			||||||
"zařízeními. Obvykle bývá méně zarušené,\n"
 | 
					 | 
				
			||||||
"        ale signál se hůře šíři uvnitř budov."
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:43
 | 
					#: src/common/WiFiSettings/constants.js:43
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
 | 
					"Change this to adjust 802.11n/ac/ax mode of operation. 802.11n with 40 "
 | 
				
			||||||
"MHz wide channels can yield higher throughput but can cause more "
 | 
					"MHz wide channels can yield higher throughput but can cause more "
 | 
				
			||||||
"interference in the network. If you don't know what to choose, use the "
 | 
					"interference in the network. If you don't know what to choose, use the "
 | 
				
			||||||
"default option with 20 MHz wide channel."
 | 
					"default option with 20 MHz wide channel."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"\n"
 | 
					"Změna tohoto parametru upraví režim fungování 802.11n/ac. 802.11n s kanály o "
 | 
				
			||||||
"        Změna tohoto upraví režim fungování 802.11n/ac. 802.11n s kanály "
 | 
					"šíři 40 MHz může pomoci k vyšší propustnosti, je ale náchylnější na rušení. "
 | 
				
			||||||
"o šíři 40 MHz kanály může pomoci k vyšší\n"
 | 
					"Pokud nevíte co zvolit, použijte výchozí volbu s kanálem šíře 20 MHz."
 | 
				
			||||||
"        propustnosti, ale je náchylnější na rušení. Pokud nevíte co "
 | 
					 | 
				
			||||||
"zvolit, použijte výchozí volbu s kanálem šíře\n"
 | 
					 | 
				
			||||||
"        20 MHz.\n"
 | 
					 | 
				
			||||||
"    "
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:46
 | 
					#: src/common/WiFiSettings/constants.js:46
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
 | 
					"Enables Wi-Fi for guests, which is separated from LAN network. Devices "
 | 
				
			||||||
"connected to this network are allowed to access the internet, but aren't "
 | 
					"connected to this network are allowed to access the internet, but aren't "
 | 
				
			||||||
@@ -297,14 +278,10 @@ msgid ""
 | 
				
			|||||||
"router. Parameters of the guest network can be set in the Guest network "
 | 
					"router. Parameters of the guest network can be set in the Guest network "
 | 
				
			||||||
"tab."
 | 
					"tab."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
"\n"
 | 
					"Zapíná Wi-Fi pro hosty, která je oddělená od místní sítě (LAN). Zařízením "
 | 
				
			||||||
"        Zapíná Wi-Fi pro hosty, která je oddělená od místní sítě (LAN). "
 | 
					"připojeným k této síti je umožněn přístup do Internetu, ale už ne na ostatní "
 | 
				
			||||||
"Zařízením připojeným k této síti je umožněn\n"
 | 
					"zařízení a k rozhraní pro nastavování směrovače. Parametry sítě pro hosty je "
 | 
				
			||||||
"        přístup do Internetu, ale už ne na ostatní zařízení a k rozhraní "
 | 
					"možné nastavit na panelu „Síť pro hosty“."
 | 
				
			||||||
"pro nastavování směrovače.\n"
 | 
					 | 
				
			||||||
"        Parametry sítě pro hosty je možné nastavit na panelu „Síť pro "
 | 
					 | 
				
			||||||
"hosty“.\n"
 | 
					 | 
				
			||||||
"        "
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/constants.js:49
 | 
					#: src/common/WiFiSettings/constants.js:49
 | 
				
			||||||
msgid ""
 | 
					msgid ""
 | 
				
			||||||
@@ -313,6 +290,10 @@ msgid ""
 | 
				
			|||||||
"without WPA3 support require older WPA2. If you experience issues with "
 | 
					"without WPA3 support require older WPA2. If you experience issues with "
 | 
				
			||||||
"connecting older devices, try to enable WPA2."
 | 
					"connecting older devices, try to enable WPA2."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					"Standard WPA3 je nová nejbezpečnější metoda, již se doporučuje používat se "
 | 
				
			||||||
 | 
					"všemi zařízeními, která ji podporují. Starší zařízení bez podpory WPA3 "
 | 
				
			||||||
 | 
					"potřebují starší WPA2. Zaznamenáte-li problémy s připojováním starších "
 | 
				
			||||||
 | 
					"zařízení, zkuste zapnout WPA2."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/form/components/ForisForm.js:121
 | 
					#: src/form/components/ForisForm.js:121
 | 
				
			||||||
msgid "Settings saved successfully"
 | 
					msgid "Settings saved successfully"
 | 
				
			||||||
@@ -357,7 +338,6 @@ msgid "This is not a valid domain name."
 | 
				
			|||||||
msgstr "Toto není platné doménové jméno."
 | 
					msgstr "Toto není platné doménové jméno."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/utils/validations.js:17
 | 
					#: src/utils/validations.js:17
 | 
				
			||||||
#, fuzzy
 | 
					 | 
				
			||||||
msgid "This is not a valid hostname."
 | 
					msgid "This is not a valid hostname."
 | 
				
			||||||
msgstr "Toto není platné doménové jméno."
 | 
					msgstr "Toto není platné doménové jméno."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,7 +8,7 @@ msgstr ""
 | 
				
			|||||||
"Project-Id-Version: PROJECT VERSION\n"
 | 
					"Project-Id-Version: PROJECT VERSION\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 | 
					"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 | 
				
			||||||
"POT-Creation-Date: 2022-12-02 15:54+0100\n"
 | 
					"POT-Creation-Date: 2022-12-02 15:54+0100\n"
 | 
				
			||||||
"PO-Revision-Date: 2023-08-13 10:47+0000\n"
 | 
					"PO-Revision-Date: 2024-01-04 21:08+0000\n"
 | 
				
			||||||
"Last-Translator: Erik Pfannenstein <debianignatz@gmx.de>\n"
 | 
					"Last-Translator: Erik Pfannenstein <debianignatz@gmx.de>\n"
 | 
				
			||||||
"Language-Team: German <https://hosted.weblate.org/projects/turris/foris-js/"
 | 
					"Language-Team: German <https://hosted.weblate.org/projects/turris/foris-js/"
 | 
				
			||||||
"de/>\n"
 | 
					"de/>\n"
 | 
				
			||||||
@@ -17,7 +17,7 @@ msgstr ""
 | 
				
			|||||||
"Content-Type: text/plain; charset=utf-8\n"
 | 
					"Content-Type: text/plain; charset=utf-8\n"
 | 
				
			||||||
"Content-Transfer-Encoding: 8bit\n"
 | 
					"Content-Transfer-Encoding: 8bit\n"
 | 
				
			||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
 | 
					"Plural-Forms: nplurals=2; plural=n != 1;\n"
 | 
				
			||||||
"X-Generator: Weblate 5.0-dev\n"
 | 
					"X-Generator: Weblate 5.4-dev\n"
 | 
				
			||||||
"Generated-By: Babel 2.11.0\n"
 | 
					"Generated-By: Babel 2.11.0\n"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/api/utils.js:61
 | 
					#: src/api/utils.js:61
 | 
				
			||||||
@@ -89,6 +89,9 @@ msgid ""
 | 
				
			|||||||
"Fi settings. Note that this will remove the current Wi-Fi configuration "
 | 
					"Fi settings. Note that this will remove the current Wi-Fi configuration "
 | 
				
			||||||
"and restore the default values."
 | 
					"and restore the default values."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					"Falls die Anzahl der WLAN-Karten nicht korrekt ist, könnte es helfen, die "
 | 
				
			||||||
 | 
					"WLAN-Einstellungen zurückzusetzen. Beachten Sie, dass dabei die aktuelle "
 | 
				
			||||||
 | 
					"WLAN-Konfiguration mit den Werkseinstellungen überschrieben wird."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/WiFiForm.js:95
 | 
					#: src/common/WiFiSettings/WiFiForm.js:95
 | 
				
			||||||
msgid "Wi-Fi ${deviceID + 1}"
 | 
					msgid "Wi-Fi ${deviceID + 1}"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,15 +8,16 @@ msgstr ""
 | 
				
			|||||||
"Project-Id-Version: PROJECT VERSION\n"
 | 
					"Project-Id-Version: PROJECT VERSION\n"
 | 
				
			||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 | 
					"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 | 
				
			||||||
"POT-Creation-Date: 2022-12-02 15:54+0100\n"
 | 
					"POT-Creation-Date: 2022-12-02 15:54+0100\n"
 | 
				
			||||||
"PO-Revision-Date: 2020-11-29 19:29+0000\n"
 | 
					"PO-Revision-Date: 2024-01-04 21:08+0000\n"
 | 
				
			||||||
"Last-Translator: Johan van de Wetering <mail@jvdwetering.nl>\n"
 | 
					"Last-Translator: powerburner-nl <peter.mulder.1981@gmail.com>\n"
 | 
				
			||||||
 | 
					"Language-Team: Dutch <https://hosted.weblate.org/projects/turris/foris-js/nl/"
 | 
				
			||||||
 | 
					">\n"
 | 
				
			||||||
"Language: nl\n"
 | 
					"Language: nl\n"
 | 
				
			||||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/turris/foris-"
 | 
					 | 
				
			||||||
"js/nl/>\n"
 | 
					 | 
				
			||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
 | 
					 | 
				
			||||||
"MIME-Version: 1.0\n"
 | 
					"MIME-Version: 1.0\n"
 | 
				
			||||||
"Content-Type: text/plain; charset=utf-8\n"
 | 
					"Content-Type: text/plain; charset=utf-8\n"
 | 
				
			||||||
"Content-Transfer-Encoding: 8bit\n"
 | 
					"Content-Transfer-Encoding: 8bit\n"
 | 
				
			||||||
 | 
					"Plural-Forms: nplurals=2; plural=n != 1;\n"
 | 
				
			||||||
 | 
					"X-Generator: Weblate 5.4-dev\n"
 | 
				
			||||||
"Generated-By: Babel 2.11.0\n"
 | 
					"Generated-By: Babel 2.11.0\n"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/api/utils.js:61
 | 
					#: src/api/utils.js:61
 | 
				
			||||||
@@ -54,19 +55,19 @@ msgstr "Opnieuw opstarten"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: src/common/RebootButton.js:66
 | 
					#: src/common/RebootButton.js:66
 | 
				
			||||||
msgid "Warning!"
 | 
					msgid "Warning!"
 | 
				
			||||||
msgstr ""
 | 
					msgstr "Waarschuwing!"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/RebootButton.js:68
 | 
					#: src/common/RebootButton.js:68
 | 
				
			||||||
msgid "Are you sure you want to restart the router?"
 | 
					msgid "Are you sure you want to restart the router?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr "Weet u zeker dat u de router opnieuw wilt opstarten?"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/RebootButton.js:71
 | 
					#: src/common/RebootButton.js:71
 | 
				
			||||||
msgid "Cancel"
 | 
					msgid "Cancel"
 | 
				
			||||||
msgstr ""
 | 
					msgstr "Annuleren"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/RebootButton.js:73
 | 
					#: src/common/RebootButton.js:73
 | 
				
			||||||
msgid "Confirm reboot"
 | 
					msgid "Confirm reboot"
 | 
				
			||||||
msgstr ""
 | 
					msgstr "Opnieuw opstarten bevestigen"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: src/common/WiFiSettings/ResetWiFiSettings.js:38
 | 
					#: src/common/WiFiSettings/ResetWiFiSettings.js:38
 | 
				
			||||||
msgid "An error occurred during resetting Wi-Fi settings."
 | 
					msgid "An error occurred during resetting Wi-Fi settings."
 | 
				
			||||||
@@ -418,4 +419,3 @@ msgstr "Bevat geen lijst met e-mails gescheiden door komma's."
 | 
				
			|||||||
#~ " default option with 20 MHz wide "
 | 
					#~ " default option with 20 MHz wide "
 | 
				
			||||||
#~ "channel."
 | 
					#~ "channel."
 | 
				
			||||||
#~ msgstr ""
 | 
					#~ msgstr ""
 | 
				
			||||||
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user