├── .datignore ├── .gitignore ├── .nojekyll ├── LICENSE.txt ├── README.md ├── collection ├── crick │ ├── _letter │ │ ├── info.yml │ │ └── letter.jpg │ ├── index.json │ └── thumb.jpeg └── index.json ├── index.html ├── package-lock.json ├── package.json ├── styles.css ├── uv-config.json └── uv ├── build.js.map ├── favicon.ico ├── helpers.js ├── img └── pixel.gif ├── info.json ├── lib ├── AVComponent.js ├── Detector.js ├── GLTFLoader.js ├── GalleryComponent.js ├── MTLLoader.js ├── MetadataComponent.js ├── OBJLoader.js ├── PLYLoader.js ├── TreeComponent.js ├── VRControls.js ├── VREffect.js ├── WebVR.js ├── dash.all.min.js ├── hls.min.js ├── iiifgallery.proxy.js ├── jquery-ui.min.js ├── jquery.binarytransport.js ├── jquery.ui.touch-punch.min.js ├── mediaelement-and-player.js ├── offline.js ├── openseadragon.min.js ├── pdf.combined.js ├── stats.min.js ├── three.min.js ├── uv-av-extension-dependencies.js ├── uv-av-extension.cy-GB.config.json ├── uv-av-extension.en-GB.config.json ├── uv-av-extension.fr-FR.config.json ├── uv-av-extension.sv-SE.config.json ├── uv-default-extension-dependencies.js ├── uv-default-extension.cy-GB.config.json ├── uv-default-extension.en-GB.config.json ├── uv-default-extension.fr-FR.config.json ├── uv-default-extension.sv-SE.config.json ├── uv-mediaelement-extension-dependencies.js ├── uv-mediaelement-extension.cy-GB.config.json ├── uv-mediaelement-extension.en-GB.config.json ├── uv-mediaelement-extension.fr-FR.config.json ├── uv-mediaelement-extension.sv-SE.config.json ├── uv-pdf-extension-dependencies.js ├── uv-pdf-extension.cy-GB.config.json ├── uv-pdf-extension.en-GB.config.json ├── uv-pdf-extension.fr-FR.config.json ├── uv-pdf-extension.sv-SE.config.json ├── uv-seadragon-extension-dependencies.js ├── uv-seadragon-extension.cy-GB.config.json ├── uv-seadragon-extension.en-GB.config.json ├── uv-seadragon-extension.fr-FR.config.json ├── uv-seadragon-extension.sv-SE.config.json ├── uv-seadragon-extension.xx-XX.config.json ├── uv-virtex-extension-dependencies.js ├── uv-virtex-extension.cy-GB.config.json ├── uv-virtex-extension.en-GB.config.json ├── uv-virtex-extension.fr-FR.config.json ├── uv-virtex-extension.sv-SE.config.json ├── virtex.js └── waveform-data.js ├── themes ├── uv-cy-gb-theme │ ├── assets │ │ └── uv-mediaelementcenterpanel-module │ │ │ └── mejs-controls.svg │ └── css │ │ ├── uv-av-extension │ │ └── theme.css │ │ ├── uv-default-extension │ │ └── theme.css │ │ ├── uv-mediaelement-extension │ │ └── theme.css │ │ ├── uv-pdf-extension │ │ └── theme.css │ │ ├── uv-seadragon-extension │ │ └── theme.css │ │ └── uv-virtex-extension │ │ └── theme.css └── uv-en-gb-theme │ ├── assets │ ├── hamburger.png │ └── uv-mediaelementcenterpanel-module │ │ └── mejs-controls.svg │ └── css │ ├── uv-av-extension │ └── theme.css │ ├── uv-default-extension │ └── theme.css │ ├── uv-mediaelement-extension │ └── theme.css │ ├── uv-pdf-extension │ └── theme.css │ ├── uv-seadragon-extension │ └── theme.css │ └── uv-virtex-extension │ └── theme.css ├── uv.css ├── uv.html ├── uv.js └── uv.zip /.datignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .nojekyll 3 | .npmignore 4 | LICENSE.txt 5 | node_modules 6 | npm-debug.log 7 | package-lock.json 8 | package.json 9 | README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | node_modules 3 | npm-debug.log -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalViewer/uv-app-starter/caff869e38e364cc29c19866168dc3614152273d/.nojekyll -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # uv-app-starter 2 | 3 | Get started building a [IIIF](http://iiif.io)-enabled website using the [Universal Viewer](http://universalviewer.io) and host it for free on [Github Pages](https://pages.github.com/). 4 | 5 | demo: http://universalviewer.io/uv-app-starter/ 6 | 7 | ### Setup 8 | 9 | - Fork this repo on github to your personal account. 10 | 11 | - Clone the repo to your desktop 12 | 13 | - Run `npm install` 14 | 15 | - Organise your files and folders in `/collection` using the [biiif conventions](https://github.com/edsilv/biiif/#examples) 16 | 17 | - Run `npm start` to preview on `http://localhost:8888` 18 | 19 | - When ready to publish to [Github Pages](https://pages.github.com/), in the `package.json` scripts section, assuming your Github username is for example `@username`, change: 20 | 21 | ``` 22 | "dist:gh": "biiif collection -u http://universalviewer.io/uv-app-starter/collection -g" 23 | ``` 24 | 25 | to: 26 | 27 | ``` 28 | "dist:gh": "biiif collection -u https://username.github.io/uv-app-starter/collection -g" 29 | ``` 30 | 31 | - Publish to github by running: 32 | 33 | `npm run publish:gh` 34 | 35 | - Your site should now be available at `https://username.github.io/uv-app-starter/` (may take a few seconds) 36 | 37 | ### Publishing using dat 38 | 39 | You can use [Beaker Browser](https://beakerbrowser.com/) to publish your portfolio using the [dat protocol](https://datproject.org/). 40 | 41 | Example: dat://3088365c94ecbe15d2963b1a1e629ee408535e5273c8b15fc20203b2b6f22020 42 | 43 | - In Beaker, click on the menu button and select "New Site". 44 | 45 | - Give it a name and click Create Site. 46 | 47 | - Next to the Share button, click the drop down and select Change Folder. 48 | 49 | - Set the folder to the location of your current uv-app-starter project. 50 | 51 | - Now click the Share button and copy your dat address (`dat://`). 52 | 53 | - In `index.html`, replace: 54 | 55 | ``` 56 | 57 | ``` 58 | 59 | with: 60 | 61 | ``` 62 | 63 | ``` 64 | 65 | - In `package.json` under the `dist:dat` script, replace the dat address with your site's address. 66 | 67 | - Run `npm run publish:dat`. This will generate your IIIF using your dat address as the root. 68 | 69 | - Refresh your site in Beaker. 70 | -------------------------------------------------------------------------------- /collection/crick/_letter/info.yml: -------------------------------------------------------------------------------- 1 | label: Copied letter from Francis Crick to Michael Crick 2 | attribution: Wellcome Library 3 | description: A copy of the famous letter from Crick to his son Michael explaining his and Watson's discovery of the structure of DNA, 19 March 1953. The letter is the earliest written description of the genetic mechanism, written before Crick and Watson's second Nature paper was drafted. 4 | metadata: 5 | license: CC-BY-NC 6 | date: 1953 -------------------------------------------------------------------------------- /collection/crick/_letter/letter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalViewer/uv-app-starter/caff869e38e364cc29c19866168dc3614152273d/collection/crick/_letter/letter.jpg -------------------------------------------------------------------------------- /collection/crick/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "http://universalviewer.io/uv-app-starter/collection/crick/index.json", 3 | "type": "Manifest", 4 | "items": [ 5 | { 6 | "id": "http://universalviewer.io/uv-app-starter/collection/crick/index.json/canvas/0", 7 | "type": "Canvas", 8 | "items": [ 9 | { 10 | "id": "http://universalviewer.io/uv-app-starter/collection/crick/index.json/canvas/0/annotationpage/0", 11 | "type": "AnnotationPage", 12 | "items": [ 13 | { 14 | "id": "http://universalviewer.io/uv-app-starter/collection/crick/index.json/canvas/0/annotation/0", 15 | "type": "Annotation", 16 | "motivation": "painting", 17 | "body": { 18 | "id": "http://universalviewer.io/uv-app-starter/collection/crick/_letter/letter.jpg", 19 | "type": "Image", 20 | "format": "image/jpeg", 21 | "label": { 22 | "@none": [ 23 | "Copied letter from Francis Crick to Michael Crick" 24 | ] 25 | } 26 | }, 27 | "target": "http://universalviewer.io/uv-app-starter/collection/crick/index.json/canvas/0" 28 | } 29 | ] 30 | } 31 | ], 32 | "label": { 33 | "@none": [ 34 | "Copied letter from Francis Crick to Michael Crick" 35 | ] 36 | }, 37 | "metadata": [ 38 | { 39 | "label": { 40 | "@none": [ 41 | "license" 42 | ] 43 | }, 44 | "value": { 45 | "@none": [ 46 | "CC-BY-NC" 47 | ] 48 | } 49 | }, 50 | { 51 | "label": { 52 | "@none": [ 53 | "date" 54 | ] 55 | }, 56 | "value": { 57 | "@none": [ 58 | 1953 59 | ] 60 | } 61 | } 62 | ] 63 | } 64 | ], 65 | "label": { 66 | "@none": [ 67 | "crick" 68 | ] 69 | }, 70 | "thumbnail": [ 71 | { 72 | "id": "http://universalviewer.io/uv-app-starter/collection/crick/thumb.jpeg", 73 | "type": "Image" 74 | } 75 | ] 76 | } -------------------------------------------------------------------------------- /collection/crick/thumb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalViewer/uv-app-starter/caff869e38e364cc29c19866168dc3614152273d/collection/crick/thumb.jpeg -------------------------------------------------------------------------------- /collection/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "http://universalviewer.io/uv-app-starter/collection/index.json", 3 | "type": "Collection", 4 | "items": [ 5 | { 6 | "id": "http://universalviewer.io/uv-app-starter/collection/crick/index.json", 7 | "type": "Manifest", 8 | "label": { 9 | "@none": [ 10 | "crick" 11 | ] 12 | }, 13 | "thumbnail": [ 14 | { 15 | "id": "http://universalviewer.io/uv-app-starter/collection/crick/thumb.jpeg", 16 | "type": "Image" 17 | } 18 | ] 19 | } 20 | ], 21 | "label": { 22 | "@none": [ 23 | "collection" 24 | ] 25 | } 26 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | My Collection 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 22 | 23 |
24 | 25 |
26 | 27 | 28 | 29 |
30 | 31 | 108 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "uv-app-starter", 3 | "version": "0.0.1", 4 | "description": "Universal Viewer App Starter", 5 | "main": "index.js", 6 | "engines": { 7 | "node": ">=8.9.1", 8 | "npm": ">=3.10.8" 9 | }, 10 | "scripts": { 11 | "postinstall": "npm run sync", 12 | "sync": "rm -rf uv && cp -R node_modules/universalviewer/dist uv", 13 | "build": "biiif collection -u http://localhost:8888/collection -g", 14 | "dist:gh": "biiif collection -u http://universalviewer.io/uv-app-starter/collection -g", 15 | "dist:netlify": "biiif collection -u https://uv-app-starter.netlify.com/collection -g", 16 | "dist:dat": "biiif collection -u dat://59ff047d6c3eadea7031769479e2aa436c88f046ad16c898577b105000ff85a9/collection -g", 17 | "publish:gh": "npm run dist:gh && git add -A && git commit -m \"published\" && git push origin gh-pages", 18 | "publish:netlify": "npm run dist:netlify && netlify deploy --prod", 19 | "publish:dat": "npm run dist:dat", 20 | "start": "npm run build && http-server --cors -c-1 -p 8888" 21 | }, 22 | "repository": { 23 | "type": "git", 24 | "url": "git+https://github.com/UniversalViewer/uv-app-starter.git" 25 | }, 26 | "keywords": [ 27 | "IIIF", 28 | "universalviewer", 29 | "starter" 30 | ], 31 | "author": "@edsilv", 32 | "license": "MIT", 33 | "bugs": { 34 | "url": "https://github.com/UniversalViewer/uv-app-starter/issues" 35 | }, 36 | "homepage": "https://github.com/UniversalViewer/uv-app-starter#readme", 37 | "devDependencies": { 38 | "biiif-cli": "0.0.19", 39 | "http-server": "^0.10.0" 40 | }, 41 | "dependencies": { 42 | "universalviewer": "3.0.33" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0px; 3 | padding: 50px 0 0 0; 4 | overflow-x: hidden; 5 | font-family: sans-serif; 6 | } 7 | 8 | nav { 9 | background-color: #212121; 10 | position: fixed; 11 | height: 50px; 12 | top: 0; 13 | right: 0; 14 | left: 0; 15 | z-index: 1000; 16 | color: #fff; 17 | font-size: 20px; 18 | } 19 | 20 | nav h1 { 21 | font-size: 20px; 22 | font-weight: normal; 23 | padding: 0; 24 | margin: 13px 0 0 20px; 25 | } 26 | 27 | #uv { 28 | display: none; 29 | height: 480px; 30 | } 31 | 32 | iiif-gallery { 33 | margin: 20px auto; 34 | width: 90%; 35 | } 36 | 37 | @media screen and (max-width: 800px) { 38 | iiif-gallery-item { 39 | width:calc(50% - 8px); 40 | } 41 | } 42 | 43 | /* 44 | 45 | bootstrap fixes 46 | 47 | #uv .close { 48 | opacity: 1; 49 | } 50 | 51 | #uv .label { 52 | display: block; 53 | line-height: 17px; 54 | padding: 0px; 55 | font-size: 12px; 56 | font-weight: 400; 57 | text-align: left; 58 | } 59 | 60 | */ -------------------------------------------------------------------------------- /uv-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "options": { 3 | "headerPanelEnabled": false 4 | }, 5 | "modules": { 6 | "headerPanel": { 7 | "options": { 8 | "localeToggleEnabled": false 9 | } 10 | }, 11 | "footerPanel": { 12 | "options": { 13 | "downloadEnabled": false 14 | } 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /uv/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalViewer/uv-app-starter/caff869e38e364cc29c19866168dc3614152273d/uv/favicon.ico -------------------------------------------------------------------------------- /uv/helpers.js: -------------------------------------------------------------------------------- 1 | function createUV(selector, data, dataProvider) { 2 | var uv; 3 | var isFullScreen = false; 4 | var $container = $(selector); 5 | $container.empty(); 6 | var $parent = $('
'); 7 | $container.append($parent); 8 | var $uv = $('
'); 9 | $parent.append($uv); 10 | 11 | function resize() { 12 | if (uv) { 13 | if (isFullScreen) { 14 | $parent.width(window.innerWidth); 15 | $parent.height(window.innerHeight); 16 | } else { 17 | $parent.width($container.width()); 18 | $parent.height($container.height()); 19 | } 20 | uv.resize(); 21 | } 22 | } 23 | 24 | window.onresize = function() { 25 | resize(); 26 | } 27 | 28 | uv = new UV({ 29 | target: $uv[0], 30 | data: data 31 | }); 32 | 33 | uv.on('create', function(obj) { 34 | resize(); 35 | }, false); 36 | 37 | uv.on('created', function(obj) { 38 | resize(); 39 | }, false); 40 | 41 | uv.on('collectionIndexChanged', function(collectionIndex) { 42 | dataProvider.set('c', collectionIndex); 43 | }, false); 44 | 45 | uv.on('manifestIndexChanged', function(manifestIndex) { 46 | dataProvider.set('m', manifestIndex); 47 | }, false); 48 | 49 | uv.on('sequenceIndexChanged', function(sequenceIndex) { 50 | dataProvider.set('s', sequenceIndex); 51 | }, false); 52 | 53 | uv.on('canvasIndexChanged', function(canvasIndex) { 54 | dataProvider.set('cv', canvasIndex); 55 | }, false); 56 | 57 | uv.on('rangeChanged', function(rangeId) { 58 | dataProvider.set('rid', rangeId); 59 | }, false); 60 | 61 | uv.on('openseadragonExtension.rotationChanged', function(rotation) { 62 | dataProvider.set('r', rotation); 63 | }, false); 64 | 65 | uv.on('openseadragonExtension.xywhChanged', function(xywh) { 66 | dataProvider.set('xywh', xywh); 67 | }, false); 68 | 69 | uv.on('openseadragonExtension.currentViewUri', function(data) { 70 | //console.log('openseadragonExtension.currentViewUri', obj); 71 | }, false); 72 | 73 | uv.on('reload', function(data) { 74 | data.isReload = true; 75 | uv.set(data); 76 | }, false); 77 | 78 | uv.on('toggleFullScreen', function(data) { 79 | isFullScreen = data.isFullScreen; 80 | 81 | if (data.overrideFullScreen) { 82 | return; 83 | } 84 | 85 | var elem = $parent[0]; 86 | 87 | if (isFullScreen) { 88 | var requestFullScreen = getRequestFullScreen(elem); 89 | if (requestFullScreen) { 90 | requestFullScreen.call(elem); 91 | resize(); 92 | } 93 | } else { 94 | var exitFullScreen = getExitFullScreen(); 95 | if (exitFullScreen) { 96 | exitFullScreen.call(document); 97 | resize(); 98 | } 99 | } 100 | }, false); 101 | 102 | uv.on('error', function(message) { 103 | console.error(message); 104 | }, false); 105 | 106 | uv.on('bookmark', function(data) { 107 | 108 | var absUri = parent.document.URL; 109 | var parts = Utils.Urls.getUrlParts(absUri); 110 | var relUri = parts.pathname + parts.search + parent.document.location.hash; 111 | 112 | if (!relUri.startsWith("/")) { 113 | relUri = "/" + relUri; 114 | } 115 | 116 | data.path = relUri; 117 | 118 | console.log('bookmark', data); 119 | },false); 120 | 121 | $(document).on('fullscreenchange webkitfullscreenchange mozfullscreenchange MSFullscreenChange', function(e) { 122 | if (e.type === 'webkitfullscreenchange' && !document.webkitIsFullScreen || 123 | e.type === 'fullscreenchange' && !document.fullscreenElement || 124 | e.type === 'mozfullscreenchange' && !document.mozFullScreen || 125 | e.type === 'MSFullscreenChange' && document.msFullscreenElement === null) { 126 | uv.exitFullScreen(); 127 | } 128 | }); 129 | 130 | return uv; 131 | } 132 | 133 | function getRequestFullScreen(elem) { 134 | 135 | if (elem.webkitRequestFullscreen) { 136 | return elem.webkitRequestFullscreen; 137 | } 138 | 139 | if (elem.mozRequestFullScreen) { 140 | return elem.mozRequestFullScreen; 141 | } 142 | 143 | if (elem.msRequestFullscreen) { 144 | return elem.msRequestFullscreen; 145 | } 146 | 147 | if (elem.requestFullscreen) { 148 | return elem.requestFullscreen; 149 | } 150 | 151 | return false; 152 | } 153 | 154 | function getExitFullScreen() { 155 | 156 | if (document.webkitExitFullscreen) { 157 | return document.webkitExitFullscreen; 158 | } 159 | 160 | if (document.msExitFullscreen) { 161 | return document.msExitFullscreen; 162 | } 163 | 164 | if (document.mozCancelFullScreen) { 165 | return document.mozCancelFullScreen; 166 | } 167 | 168 | if (document.exitFullscreen) { 169 | return document.exitFullscreen; 170 | } 171 | 172 | return false; 173 | } -------------------------------------------------------------------------------- /uv/img/pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalViewer/uv-app-starter/caff869e38e364cc29c19866168dc3614152273d/uv/img/pixel.gif -------------------------------------------------------------------------------- /uv/info.json: -------------------------------------------------------------------------------- 1 | { "version": "3.0.33" } 2 | -------------------------------------------------------------------------------- /uv/lib/Detector.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author alteredq / http://alteredqualia.com/ 3 | * @author mr.doob / http://mrdoob.com/ 4 | */ 5 | 6 | var Detector = { 7 | 8 | canvas: !! window.CanvasRenderingContext2D, 9 | webgl: ( function () { 10 | 11 | try { 12 | 13 | var canvas = document.createElement( 'canvas' ); return !! ( window.WebGLRenderingContext && ( canvas.getContext( 'webgl' ) || canvas.getContext( 'experimental-webgl' ) ) ); 14 | 15 | } catch ( e ) { 16 | 17 | return false; 18 | 19 | } 20 | 21 | } )(), 22 | workers: !! window.Worker, 23 | fileapi: window.File && window.FileReader && window.FileList && window.Blob, 24 | 25 | getWebGLErrorMessage: function () { 26 | 27 | var element = document.createElement( 'div' ); 28 | element.id = 'webgl-error-message'; 29 | element.style.fontFamily = 'monospace'; 30 | element.style.fontSize = '13px'; 31 | element.style.fontWeight = 'normal'; 32 | element.style.textAlign = 'center'; 33 | element.style.background = '#fff'; 34 | element.style.color = '#000'; 35 | element.style.padding = '1.5em'; 36 | element.style.width = '400px'; 37 | element.style.margin = '5em auto 0'; 38 | 39 | if ( ! this.webgl ) { 40 | 41 | element.innerHTML = window.WebGLRenderingContext ? [ 42 | 'Your graphics card does not seem to support WebGL.
', 43 | 'Find out how to get it here.' 44 | ].join( '\n' ) : [ 45 | 'Your browser does not seem to support WebGL.
', 46 | 'Find out how to get it here.' 47 | ].join( '\n' ); 48 | 49 | } 50 | 51 | return element; 52 | 53 | }, 54 | 55 | addGetWebGLMessage: function ( parameters ) { 56 | 57 | var parent, id, element; 58 | 59 | parameters = parameters || {}; 60 | 61 | parent = parameters.parent !== undefined ? parameters.parent : document.body; 62 | id = parameters.id !== undefined ? parameters.id : 'oldie'; 63 | 64 | element = Detector.getWebGLErrorMessage(); 65 | element.id = id; 66 | 67 | parent.appendChild( element ); 68 | 69 | } 70 | 71 | }; 72 | 73 | // browserify support 74 | if ( typeof module === 'object' ) { 75 | 76 | module.exports = Detector; 77 | 78 | } 79 | -------------------------------------------------------------------------------- /uv/lib/VRControls.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author dmarcos / https://github.com/dmarcos 3 | * @author mrdoob / http://mrdoob.com 4 | */ 5 | 6 | THREE.VRControls = function ( object, onError ) { 7 | 8 | var scope = this; 9 | 10 | var vrDisplay, vrDisplays; 11 | 12 | var standingMatrix = new THREE.Matrix4(); 13 | 14 | var frameData = null; 15 | 16 | if ( 'VRFrameData' in window ) { 17 | 18 | frameData = new VRFrameData(); 19 | 20 | } 21 | 22 | function gotVRDisplays( displays ) { 23 | 24 | vrDisplays = displays; 25 | 26 | if ( displays.length > 0 ) { 27 | 28 | vrDisplay = displays[ 0 ]; 29 | 30 | } else { 31 | 32 | if ( onError ) onError( 'VR input not available.' ); 33 | 34 | } 35 | 36 | } 37 | 38 | if ( navigator.getVRDisplays ) { 39 | 40 | navigator.getVRDisplays().then( gotVRDisplays ).catch( function () { 41 | 42 | console.warn( 'THREE.VRControls: Unable to get VR Displays' ); 43 | 44 | } ); 45 | 46 | } 47 | 48 | // the Rift SDK returns the position in meters 49 | // this scale factor allows the user to define how meters 50 | // are converted to scene units. 51 | 52 | this.scale = 1; 53 | 54 | // If true will use "standing space" coordinate system where y=0 is the 55 | // floor and x=0, z=0 is the center of the room. 56 | this.standing = false; 57 | 58 | // Distance from the users eyes to the floor in meters. Used when 59 | // standing=true but the VRDisplay doesn't provide stageParameters. 60 | this.userHeight = 1.6; 61 | 62 | this.getVRDisplay = function () { 63 | 64 | return vrDisplay; 65 | 66 | }; 67 | 68 | this.setVRDisplay = function ( value ) { 69 | 70 | vrDisplay = value; 71 | 72 | }; 73 | 74 | this.getVRDisplays = function () { 75 | 76 | console.warn( 'THREE.VRControls: getVRDisplays() is being deprecated.' ); 77 | return vrDisplays; 78 | 79 | }; 80 | 81 | this.getStandingMatrix = function () { 82 | 83 | return standingMatrix; 84 | 85 | }; 86 | 87 | this.update = function () { 88 | 89 | if ( vrDisplay ) { 90 | 91 | var pose; 92 | 93 | if ( vrDisplay.getFrameData ) { 94 | 95 | vrDisplay.getFrameData( frameData ); 96 | pose = frameData.pose; 97 | 98 | } else if ( vrDisplay.getPose ) { 99 | 100 | pose = vrDisplay.getPose(); 101 | 102 | } 103 | 104 | if ( pose.orientation !== null ) { 105 | 106 | object.quaternion.fromArray( pose.orientation ); 107 | 108 | } 109 | 110 | if ( pose.position !== null ) { 111 | 112 | object.position.fromArray( pose.position ); 113 | 114 | } else { 115 | 116 | object.position.set( 0, 0, 0 ); 117 | 118 | } 119 | 120 | if ( this.standing ) { 121 | 122 | if ( vrDisplay.stageParameters ) { 123 | 124 | object.updateMatrix(); 125 | 126 | standingMatrix.fromArray( vrDisplay.stageParameters.sittingToStandingTransform ); 127 | object.applyMatrix( standingMatrix ); 128 | 129 | } else { 130 | 131 | object.position.setY( object.position.y + this.userHeight ); 132 | 133 | } 134 | 135 | } 136 | 137 | object.position.multiplyScalar( scope.scale ); 138 | 139 | } 140 | 141 | }; 142 | 143 | this.dispose = function () { 144 | 145 | vrDisplay = null; 146 | 147 | }; 148 | 149 | }; 150 | -------------------------------------------------------------------------------- /uv/lib/WebVR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author mrdoob / http://mrdoob.com 3 | * @author Mugen87 / https://github.com/Mugen87 4 | * 5 | * Based on @tojiro's vr-samples-utils.js 6 | */ 7 | 8 | var WEBVR = { 9 | 10 | createButton: function ( renderer ) { 11 | 12 | function showEnterVR( display ) { 13 | 14 | button.style.display = ''; 15 | 16 | button.style.cursor = 'pointer'; 17 | button.style.left = 'calc(50% - 50px)'; 18 | button.style.width = '100px'; 19 | 20 | button.textContent = 'ENTER VR'; 21 | 22 | button.onmouseenter = function () { button.style.opacity = '1.0'; }; 23 | button.onmouseleave = function () { button.style.opacity = '0.5'; }; 24 | 25 | button.onclick = function () { 26 | 27 | display.isPresenting ? display.exitPresent() : display.requestPresent( [ { source: renderer.domElement } ] ); 28 | 29 | }; 30 | 31 | renderer.vr.setDevice( display ); 32 | 33 | } 34 | 35 | function showVRNotFound() { 36 | 37 | button.style.display = ''; 38 | 39 | button.style.cursor = 'auto'; 40 | button.style.left = 'calc(50% - 75px)'; 41 | button.style.width = '150px'; 42 | 43 | button.textContent = 'VR NOT FOUND'; 44 | 45 | button.onmouseenter = null; 46 | button.onmouseleave = null; 47 | 48 | button.onclick = null; 49 | 50 | renderer.vr.setDevice( null ); 51 | 52 | } 53 | 54 | function stylizeElement( element ) { 55 | 56 | element.style.position = 'absolute'; 57 | element.style.bottom = '20px'; 58 | element.style.padding = '12px 6px'; 59 | element.style.border = '1px solid #fff'; 60 | element.style.borderRadius = '4px'; 61 | element.style.background = 'transparent'; 62 | element.style.color = '#fff'; 63 | element.style.font = 'normal 13px sans-serif'; 64 | element.style.textAlign = 'center'; 65 | element.style.opacity = '0.5'; 66 | element.style.outline = 'none'; 67 | element.style.zIndex = '999'; 68 | 69 | } 70 | 71 | if ( 'getVRDisplays' in navigator ) { 72 | 73 | var button = document.createElement( 'button' ); 74 | button.style.display = 'none'; 75 | 76 | stylizeElement( button ); 77 | 78 | window.addEventListener( 'vrdisplayconnect', function ( event ) { 79 | 80 | showEnterVR( event.display ); 81 | 82 | }, false ); 83 | 84 | window.addEventListener( 'vrdisplaydisconnect', function ( event ) { 85 | 86 | showVRNotFound(); 87 | 88 | }, false ); 89 | 90 | window.addEventListener( 'vrdisplaypresentchange', function ( event ) { 91 | 92 | button.textContent = event.display.isPresenting ? 'EXIT VR' : 'ENTER VR'; 93 | 94 | }, false ); 95 | 96 | window.addEventListener( 'vrdisplayactivate', function ( event ) { 97 | 98 | event.display.requestPresent( [ { source: renderer.domElement } ] ); 99 | 100 | }, false ); 101 | 102 | navigator.getVRDisplays() 103 | .then( function ( displays ) { 104 | 105 | if ( displays.length > 0 ) { 106 | 107 | showEnterVR( displays[ 0 ] ); 108 | 109 | } else { 110 | 111 | showVRNotFound(); 112 | 113 | } 114 | 115 | } ); 116 | 117 | return button; 118 | 119 | } else { 120 | 121 | var message = document.createElement( 'a' ); 122 | message.href = 'https://webvr.info'; 123 | message.innerHTML = 'WEBVR NOT SUPPORTED'; 124 | 125 | message.style.left = 'calc(50% - 90px)'; 126 | message.style.width = '180px'; 127 | message.style.textDecoration = 'none'; 128 | 129 | stylizeElement( message ); 130 | 131 | return message; 132 | 133 | } 134 | 135 | }, 136 | 137 | // DEPRECATED 138 | 139 | checkAvailability: function () { 140 | console.warn( 'WEBVR.checkAvailability has been deprecated.' ); 141 | return new Promise( function () {} ); 142 | }, 143 | 144 | getMessageContainer: function () { 145 | console.warn( 'WEBVR.getMessageContainer has been deprecated.' ); 146 | return document.createElement( 'div' ); 147 | }, 148 | 149 | getButton: function () { 150 | console.warn( 'WEBVR.getButton has been deprecated.' ); 151 | return document.createElement( 'div' ); 152 | }, 153 | 154 | getVRDisplay: function () { 155 | console.warn( 'WEBVR.getVRDisplay has been deprecated.' ); 156 | } 157 | 158 | }; 159 | -------------------------------------------------------------------------------- /uv/lib/iiifgallery.proxy.js: -------------------------------------------------------------------------------- 1 | // demonstrates how to load a stencil component via a proxy script 2 | // https://github.com/ionic-team/stencil/issues/365 3 | // *.proxy.js files are ignored when cleaning lib folders 4 | // (function() { 5 | // var t = document.createElement('script'); 6 | // t.type = 'text/javascript'; 7 | // t.src = 'uv/lib/iiifgallery.js'; 8 | // document.body.appendChild(t); 9 | // })(); -------------------------------------------------------------------------------- /uv/lib/jquery.binarytransport.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * jquery.binarytransport.js 4 | * 5 | * @description. jQuery ajax transport for making binary data type requests. 6 | * @version 1.0 7 | * @author Henry Algus 8 | * 9 | */ 10 | 11 | (function($, undefined) { 12 | "use strict"; 13 | 14 | // use this transport for "binary" data type 15 | $.ajaxTransport("+binary", function(options, originalOptions, jqXHR) { 16 | // check for conditions and support for blob / arraybuffer response type 17 | if (window.FormData && ((options.dataType && (options.dataType == 'binary')) || (options.data && ((window.ArrayBuffer && options.data instanceof ArrayBuffer) || (window.Blob && options.data instanceof Blob))))) { 18 | return { 19 | // create new XMLHttpRequest 20 | send: function(headers, callback) { 21 | // setup all variables 22 | var xhr = new XMLHttpRequest(), 23 | url = options.url, 24 | type = options.type, 25 | async = options.async || true, 26 | // blob or arraybuffer. Default is blob 27 | dataType = options.responseType || "blob", 28 | data = options.data || null, 29 | username = options.username || null, 30 | password = options.password || null; 31 | 32 | xhr.addEventListener('load', function() { 33 | var data = {}; 34 | data[options.dataType] = xhr.response; 35 | // make callback and send data 36 | callback(xhr.status, xhr.statusText, data, xhr.getAllResponseHeaders()); 37 | }); 38 | 39 | xhr.open(type, url, async, username, password); 40 | 41 | // setup custom headers 42 | for (var i in headers) { 43 | xhr.setRequestHeader(i, headers[i]); 44 | } 45 | 46 | xhr.responseType = dataType; 47 | xhr.send(data); 48 | }, 49 | abort: function() {} 50 | }; 51 | } 52 | }); 53 | })(window.jQuery); 54 | -------------------------------------------------------------------------------- /uv/lib/jquery.ui.touch-punch.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Touch Punch 0.2.3 3 | * 4 | * Copyright 2011–2014, Dave Furfero 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * 7 | * Depends: 8 | * jquery.ui.widget.js 9 | * jquery.ui.mouse.js 10 | */ 11 | !function(a){function f(a,b){if(!(a.originalEvent.touches.length>1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery); -------------------------------------------------------------------------------- /uv/lib/stats.min.js: -------------------------------------------------------------------------------- 1 | // stats.js - http://github.com/mrdoob/stats.js 2 | var Stats=function(){function h(a){c.appendChild(a.dom);return a}function k(a){for(var d=0;de+1E3&&(r.update(1E3*a/(c-e),100),e=c,a=0,t)){var d=performance.memory;t.update(d.usedJSHeapSize/1048576,d.jsHeapSizeLimit/1048576)}return c},update:function(){g=this.end()},domElement:c,setMode:k}}; 4 | Stats.Panel=function(h,k,l){var c=Infinity,g=0,e=Math.round,a=e(window.devicePixelRatio||1),r=80*a,f=48*a,t=3*a,u=2*a,d=3*a,m=15*a,n=74*a,p=30*a,q=document.createElement("canvas");q.width=r;q.height=f;q.style.cssText="width:80px;height:48px";var b=q.getContext("2d");b.font="bold "+9*a+"px Helvetica,Arial,sans-serif";b.textBaseline="top";b.fillStyle=l;b.fillRect(0,0,r,f);b.fillStyle=k;b.fillText(h,t,u);b.fillRect(d,m,n,p);b.fillStyle=l;b.globalAlpha=.9;b.fillRect(d,m,n,p);return{dom:q,update:function(f, 5 | v){c=Math.min(c,f);g=Math.max(g,f);b.fillStyle=l;b.globalAlpha=1;b.fillRect(0,0,r,m);b.fillStyle=k;b.fillText(e(f)+" "+h+" ("+e(c)+"-"+e(g)+")",t,u);b.drawImage(q,d+a,m,n-a,p,d,m,n-a,p);b.fillRect(d+n-a,m,a,p);b.fillStyle=l;b.globalAlpha=.9;b.fillRect(d+n-a,m,a,e((1-f/v)*p))}}};"object"===typeof module&&(module.exports=Stats); 6 | -------------------------------------------------------------------------------- /uv/lib/uv-av-extension-dependencies.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | function isFormatAvailable(formats, format) { 3 | var isAvailable = formats.includes(format); 4 | return isAvailable; 5 | } 6 | function isHLSFormatAvailable(formats) { 7 | return isFormatAvailable(formats, 'application/vnd.apple.mpegurl') || isFormatAvailable(formats, 'vnd.apple.mpegurl'); 8 | } 9 | function isMpegDashFormatAvailable(formats) { 10 | return isFormatAvailable(formats, 'application/dash+xml'); 11 | } 12 | function canPlayHls() { 13 | var doc = typeof document === 'object' && document, videoelem = doc && doc.createElement('video'), isvideosupport = Boolean(videoelem && videoelem.canPlayType), canPlay = [ 14 | 'application/vnd.apple.mpegurl', 15 | 'audio/mpegurl', 16 | 'audio/x-mpegurl', 17 | 'application/x-mpegurl', 18 | 'video/x-mpegurl', 19 | 'video/mpegurl', 20 | 'application/mpegurl' 21 | ]; 22 | return isvideosupport && canPlay.some(function (canItPlay) { 23 | return /maybe|probably/i.test(videoelem.canPlayType(canItPlay)); 24 | }); 25 | } 26 | return function (formats) { 27 | var alwaysRequired = ['TreeComponent', 'AVComponent', 'MetadataComponent', 'jquery-ui.min', 'jquery.ui.touch-punch.min', 'jquery.binarytransport', 'waveform-data']; 28 | if (isHLSFormatAvailable(formats) && canPlayHls()) { 29 | console.log('load HLS'); 30 | return { 31 | sync: alwaysRequired.concat(['hls.min']) 32 | }; 33 | } 34 | else if (isMpegDashFormatAvailable(formats)) { 35 | console.log('load mpeg dash'); 36 | return { 37 | sync: alwaysRequired.concat(['dash.all.min']) 38 | }; 39 | } 40 | else { 41 | console.log('adaptive streaming not available'); 42 | return { 43 | sync: alwaysRequired 44 | }; 45 | } 46 | }; 47 | }); 48 | -------------------------------------------------------------------------------- /uv/lib/uv-av-extension.cy-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":false,"theme":"uv-en-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":true,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":false,"branchNodesSelectable":true,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Lleihau'r Cynnwys","collapseFull":"Lleihau'r Galeri","date":"Dyddiad","expand":"Ehangu'r Cynnwys","expandFull":"Ehangu'r Galeri","index":"Mynegai","searchResult":"{0} canlyniad chwilio","searchResults":"{0} canlyniad chwilio","sortBy":"Trefnu yn ôl:","thumbnails":"Bodluniau","title":"Cynnwys","volume":"cyfrol"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Cau"}},"footerPanel":{"options":{"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ychwanegu at nodau tudalen","download":"Lawrlwytho","embed":"Ymgorffori","exitFullScreen":"Dianc o'r sgrin lawn","feedback":"Adborth","fullScreen":"Sgrin lawn","moreInfo":"Mwy o Wybodaeth","open":"Agor","share":"Rhannu"}},"genericDialogue":{"content":{"emptyValue":"rhowch rif","invalidNumber":"Rhowch rif dilys","noMatches":"Dim canlyniad sy'n cyfateb.","ok":"GWELD","pageNotFound":"Nid yw'r eitem yn cynnwys tudalen gyda'r rhif a nodwyd. Ceisiwch cyfnewid y math i 'delwedd'.","refresh":"Ailosod"}},"headerPanel":{"options":{"localeToggleEnabled":false,"settingsButtonEnabled":true},"content":{"settings":"Dewisiadau"}},"helpDialogue":{"content":{"text":"testun i'w osod","title":"Cymorth"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines","limitToRange":false},"content":{"attribution":"Priodoledd","collapse":"Lleihau'r Wybodaeth","collapseFull":"Cuddio'r Galeri","description":"Disgrifiad","expand":"Ehangu'r Wybodaeth","expandFull":"Ehangu'r Galeri","holdingText":"Eich modiwl fan hyn!","less":"llai","license":"Trwydded","logo":"Logo","more":"mwy","noData":"Nid oes data i'w arddangos","page":"Tudalen","title":"Mwy o Wybodaeth","manifestHeader":"Am yr eitem","canvasHeader":"Am y ddelwedd","copyToClipboard":"Copïo i'r clipfwrdd","copiedToClipboard":"Copïwyd i'r clipfwrdd"}},"avCenterPanel":{"options":{"autoPlay":false,"includeParentInTitleEnabled":false,"posterImageRatio":0.3},"content":{"attribution":"Priodoledd","currentTime":"Amser Presennol","delimiter":" - ","duration":"Hyd","mute":"Mudo","next":"Nesaf","pause":"Seibiant","play":"Chwarae","previous":"Blaenorol"}},"settingsDialogue":{"content":{"locale":"Iaith","navigatorEnabled":"Ffenest llywio ar gael","clickToZoomEnabled":"Cliciwch gyda'r llygoden i glosio","pagingEnabled":"Arddangos dwy dudalen","preserveViewport":"Cadw'r lefel o glosio","title":"Dewisiadau","website":"mwy o wybodaeth"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true},"content":{"customSize":"dewisol","embed":"Ymgorffori","embedInstructions":"Er mwyn ymgorffori'r eitem hon ar eich gwefan, copïwch a gosodwch y cod isod.","height":"Hyd","iiif":"Maniffest IIIF","share":"Rhannu","shareInstructions":"Er mwyn rhannu'r eitem hon, copïwch y URL isod.","size":"Maint:","width":"Lled"}},"clickThroughDialogue":{"content":{"viewTerms":"Darllenwch y Telerau a'r Amodau Llawn"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Delwedd ddethol {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Agor mewn dwy ffenest newydd.","download":"Lawrlwytho","downloadSelection":"Lawrlwytho'r detholiad","downloadSelectionExplanation":"Agor ffenest er mwyn dewis tudalennau i'w lawrlwytho.","editSettings":"Golygu'r dewisiadau","entireDocument":"Y Ddogfen Gyfan ({0})","entireFileAsOriginal":"Y ffeil gyfan","entireFileAsOriginalWithFormat":"Y ffeil gyfan ({0})","noneAvailable":"Nid oes unrhyw opsiynau lawrlwytho ar gael.","pagingNote":"Dad-ddewiswch 'Arddangos Dwy Dudalen' i weld dewisiadau pellach.","preview":"Rhagolwg","title":"Lawrlwytho","wholeImageHighRes":"Delwedd gyfan {0} x {1}px ({2})","wholeImageHighResExplanation":"Agor mewn ffenest newydd","wholeImagesHighRes":"Delweddau cyfan ({0})","wholeImagesHighResExplanation":"Agor mewn dwy ffenest newydd.","wholeImageLowResAsJpg":"Delwedd gyfan {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Agor mewn ffenest newydd"}},"loginDialogue":{"content":{"login":"Mewngofnodi","logout":"Allgofnodi","cancel":"Canslo"}},"mobileFooterPanel":{"content":{"rotateRight":"Cylchdroi i'r dde","moreInfo":"Mwy o Wybodaeth","zoomIn":"Closio","zoomOut":"Gwrthglosio"}},"restrictedDialogue":{"content":{"cancel":"Canslo"}}},"localisation":{"label":"Cymraeg","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Mae angen diweddaru'ch porwr er mwyn galluogi rhannu adnoddau traws-safle.","authorisationFailedMessage":"Ni lwyddoch i fewngofnodi. Rhowch gynnig arni eto.","canvasIndexOutOfRange":"Canfas yn rhy fawr i'w arddangos (ceisiwch eto)","forbiddenResourceMessage":"Nid yw'ch hawliau mynediad presennol yn ddigonol i weld y ddelwedd hon","termsOfUse":"Telerau Defnydd"}} -------------------------------------------------------------------------------- /uv/lib/uv-av-extension.en-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":false,"theme":"uv-en-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":true,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":false,"branchNodesSelectable":true,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Collapse Contents","collapseFull":"Collapse Gallery","date":"date","expand":"Expand Contents","expandFull":"Expand Gallery","index":"Index","manifestRanges":"Manifest Ranges","searchResult":"{0} search result","searchResults":"{0} search results","sortBy":"Sort By:","thumbnails":"Thumbnails","title":"Contents","volume":"volume"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Close"}},"footerPanel":{"options":{"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"bookmark":"Add to bookmarks","download":"Download","embed":"Embed","exitFullScreen":"Exit Full Screen","feedback":"Feedback","fullScreen":"Full Screen","moreInfo":"More Information","open":"Open","share":"Share"}},"genericDialogue":{"content":{"emptyValue":"please enter a value.","invalidNumber":"Please enter a valid number.","noMatches":"No matches were found.","ok":"OK","pageNotFound":"This item does not contain a page with the number you entered. Try switching the numbering mode to 'image'.","refresh":"Refresh"}},"headerPanel":{"options":{"localeToggleEnabled":false,"settingsButtonEnabled":true},"content":{"settings":"Settings"}},"helpDialogue":{"content":{"text":"placeholder text","title":"Help"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines","limitToRange":false},"content":{"attribution":"Attribution","collapse":"Collapse Information","collapseFull":"Collapse Gallery","description":"Description","expand":"Expand Information","expandFull":"Expand Gallery","holdingText":"Your module goes here!","less":"less","license":"License","logo":"Logo","more":"more","noData":"No data to display","page":"Page","title":"More Information","manifestHeader":"About the item","canvasHeader":"About the image","copyToClipboard":"Copy to clipboard","copiedToClipboard":"Copied to clipboard"}},"avCenterPanel":{"options":{"autoPlay":false,"includeParentInTitleEnabled":false,"posterImageRatio":0.3},"content":{"attribution":"Attribution","currentTime":"Current Time","delimiter":" - ","duration":"Duration","mute":"Mute","next":"Next","pause":"Pause","play":"Play","previous":"Previous"}},"settingsDialogue":{"content":{"locale":"Locale","navigatorEnabled":"Navigator Enabled","clickToZoomEnabled":"Mouse Click To Zoom","pagingEnabled":"Two Page View","preserveViewport":"Preserve Zoom","title":"Settings","website":"more info"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true},"content":{"customSize":"custom","embed":"Embed","embedInstructions":"To embed this item in your own website, copy and paste the code below.","height":"Height","iiif":"IIIF Manifest","share":"Share","shareInstructions":"To share this item, copy the URL below.","size":"Size:","width":"Width"}},"authDialogue":{"content":{"cancel":"Cancel","confirm":"Confirm"}},"clickThroughDialogue":{"content":{"viewTerms":"Read Full Terms and Conditions"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Current view {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Opens in a new window","download":"Download","downloadSelection":"Download Selection","downloadSelectionExplanation":"Opens a dialogue to select which pages to download.","editSettings":"Edit Settings","entireDocument":"Entire document ({0})","entireFileAsOriginal":"Entire file","entireFileAsOriginalWithFormat":"Entire file ({0})","noneAvailable":"No download options are available.","pagingNote":"Please turn off Two Page View for additional options.","preview":"Preview","title":"Download","wholeImageHighRes":"Whole image {0} x {1}px ({2})","wholeImageHighResExplanation":"Opens in a new window.","wholeImagesHighRes":"Whole images ({0})","wholeImagesHighResExplanation":"Opens in two new windows.","wholeImageLowResAsJpg":"Whole image {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Opens in a new window."}},"loginDialogue":{"content":{"login":"Login","logout":"Logout","cancel":"Cancel"}},"restrictedDialogue":{"content":{"cancel":"Cancel"}}},"localisation":{"label":"English (GB)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Your browser does not support CORS, please upgrade to view this content.","authorisationFailedMessage":"Your log-in attempt did not appear to be successful. Please try again.","canvasIndexOutOfRange":"Canvas index out of range.","fallbackDegradedLabel":"Login","fallbackDegradedMessage":"Please log in to view this content at full resolution.","forbiddenResourceMessage":"Your current access rights are insufficient to view this image","termsOfUse":"Terms of Use"}} -------------------------------------------------------------------------------- /uv/lib/uv-av-extension.fr-FR.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":false,"theme":"uv-en-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":true,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":false,"branchNodesSelectable":true,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Masquer les contenus","collapseFull":"Masquer la galerie","date":"date","expand":"Afficher les contenus","expandFull":"Afficher la galerie","index":"Index","manifestRanges":"Manifestes","searchResult":"{0} résultats","searchResults":"{0} résultats","sortBy":"Trier par :","thumbnails":"Vignettes","title":"Contenus","volume":"volume"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Fermer"}},"footerPanel":{"options":{"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ajouter aux favoris","download":"Télécharger","embed":"Intégrer","exitFullScreen":"Quitter le mode plein écran","feedback":"Commentaire","fullScreen":"Affichage en plein écran","moreInfo":"Informations","open":"Ouvrir","share":"Partager"}},"genericDialogue":{"content":{"emptyValue":"veuillez saisir une valeur.","invalidNumber":"Veuillez saisir un nombre valide.","noMatches":"Aucune correspondance n'a été trouvée.","ok":"OK","pageNotFound":"Ce contenu ne contient pas de page avec le numéro indiqué. Veuillez essayer de basculer le mode de numérotation sur 'image'.","refresh":"Rafraîchir"}},"headerPanel":{"options":{"localeToggleEnabled":false,"settingsButtonEnabled":true}},"helpDialogue":{"content":{"text":"texte d'exemple","title":"Aide"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines","limitToRange":false},"content":{"attribution":"Attribution","collapse":"Masquer les informations","collapseFull":"Masquer la galerie","description":"Description","expand":"Afficher les informations","expandFull":"Afficher la galerie","holdingText":"Votre module vient ici !","less":"moins","license":"Licence","logo":"Logo","more":"suite","noData":"Aucune donnée à afficher","page":"Page","title":"Informations","manifestHeader":"A propos du contenu","canvasHeader":"A propos de l'image","copyToClipboard":"Copier dans le presse-papiers","copiedToClipboard":"Copié dans le presse-papiers"}},"avCenterPanel":{"options":{"autoPlay":false,"includeParentInTitleEnabled":false,"posterImageRatio":0.3}},"settingsDialogue":{"content":{"locale":"Langues","navigatorEnabled":"Navigateur activé","clickToZoomEnabled":"Cliquer pour zoomer","pagingEnabled":"Affichage double page","preserveViewport":"Conserver le zoom","title":"Paramètres","website":"informations"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true},"content":{"customSize":"personnalisée","embed":"Intégrer","embedInstructions":"Pour afficher ce contenu sur votre site internet, copier-collez le code ci-dessous.","height":"Hauteur","iiif":"Manifeste IIIF","share":"Partager","shareInstructions":"Pour partager ce contenu, copier l'URL ci-dessous.","size":"Taille :","width":"Largeur"}},"authDialogue":{"content":{"cancel":"Annuler","confirm":"Confirmer"}},"clickThroughDialogue":{"content":{"viewTerms":"Lire les termes et les conditions d'utilisation"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Vue actuelle {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Ouvre une nouvelle fenêtre","download":"Télécharger","downloadSelection":"Télécharger la sélection","downloadSelectionExplanation":"Ouvre une fenêtre pour sélectionner les pages à télécharger.","editSettings":"Modifier les paramètres","entireDocument":"Document entier ({0})","entireFileAsOriginal":"Fichier complet","entireFileAsOriginalWithFormat":"Fichier complet ({0})","noneAvailable":"Aucune option de téléchargement n'est disponible.","pagingNote":"Veuillez fermer l'affichage en double page pour accéder aux options supplémentaires.","preview":"Aperçu","title":"Télécharger","wholeImageHighRes":"Image {0} x {1}px ({2})","wholeImageHighResExplanation":"Ouvre une nouvelle fenêtre.","wholeImagesHighRes":"Images ({0})","wholeImagesHighResExplanation":"S'ouvre dans deux nouvelles fenêtres.","wholeImageLowResAsJpg":"Image {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Ouvre une nouvelle fenêtre."}},"loginDialogue":{"content":{"login":"Connexion","logout":"Déconnexion","cancel":"Annuler"}},"mobileFooterPanel":{"content":{"rotateRight":"Pivoter à droite","moreInfo":"Informations","zoomIn":"Zoom avant","zoomOut":"Zoom arrière"}},"multiSelectDialogue":{"content":{"select":"Télécharger","selectAll":"Tout sélectionner","title":"Sélectionner les pages à télécharger"}},"pagingHeaderPanel":{"content":{"close":"Fermer","emptyValue":"Veuillez saisir une valeur","first":"Premier","firstImage":"Première image","firstPage":"Première page","folio":"Folio","gallery":"Gallerie","go":"Aller","help":"Aide","image":"Image","last":"Dernier","lastImage":"Dernière image","lastPage":"Dernière page","next":"Suivant","nextImage":"Prochaine image","nextPage":"Page suivante","of":"de {0}","oneUp":"Affichage en mode page simple","page":"Page","pageSearchLabel":"Recherche par numéro de page.","previous":"Précédent","previousImage":"Image précédente","previousPage":"Page précédente","settings":"Paramètres","twoUp":"Affichage double page"}},"seadragonCenterPanel":{"content":{"attribution":"Attribution","goHome":"Retour","imageUnavailable":"Image non disponible","next":"Prochain","previous":"Précédent","rotateRight":"Pivoter à droite","zoomIn":"Zoomer","zoomOut":"Dézoomer"}},"restrictedDialogue":{"content":{"cancel":"Annuler"}},"searchFooterPanel":{"content":{"clearSearch":"Effacer","defaultLabel":"-","displaying":"{0} {1} de {2}","enterKeyword":"Saisir un mot","image":"image","imageCaps":"Image","instanceFound":"1 instance de '{0}' trouvée","instancesFound":"{0} instances de '{1}' trouvées","nextResult":"Résultat suivant","page":"page","pageCaps":"Page","previousResult":"Résultat précédent","print":"Imprimer","resultFoundFor":"résultat trouvé pour ","resultsFoundFor":"résultats trouvés pour","searchWithin":"Chercher dans ce document :"}}},"localisation":{"label":"Français (FR)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Votre navigateur ne supporte pas CORS, veuillez mettre à jour votre navigateur pour afficher ce contenu.","authorisationFailedMessage":"Votre tentative de connexion semble avoir échoué. Veuillez réessayer.","canvasIndexOutOfRange":"Valeur d'index invalide pour la balise Canvas.","fallbackDegradedLabel":"Connexion","fallbackDegradedMessage":"Connectez-vous pour visualisez ce contenu en résolution maximale.","forbiddenResourceMessage":"Vos droits d'accès ne vous permettent pas de visualiser cette image","termsOfUse":"Conditions d'utilisation"}} -------------------------------------------------------------------------------- /uv/lib/uv-av-extension.sv-SE.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":false,"theme":"uv-en-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":true,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":false,"branchNodesSelectable":true,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Fäll ihop innehåll","collapseFull":"Fäll ihop galleri","date":"datum","expand":"Expandera innehåll","expandFull":"Expandera galleri","index":"Index","manifestRanges":"Manifest-omfång","searchResult":"{0} sökträffar","searchResults":"{0} sökträffar","sortBy":"Sortera efter:","thumbnails":"Småbilder","title":"Innehåll","volume":"volym"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Stäng"}},"footerPanel":{"options":{"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"bookmark":"Lägg till bokmärke","download":"Ladda ner","embed":"Bädda in","exitFullScreen":"Avsluta helskärm","feedback":"Feedback","fullScreen":"Helskärm","moreInfo":"Mer information","open":"Öppna","share":"Dela"}},"genericDialogue":{"content":{"emptyValue":"ange ett värde.","invalidNumber":"Ange ett giltigt nummer.","noMatches":"Inga träffar hittades.","ok":"OK","pageNotFound":"Detta objekt har ingen sida med det nummer du angett. Testa att byta numreringsläge till 'bild'.","refresh":"Uppdatera"}},"headerPanel":{"options":{"localeToggleEnabled":false,"settingsButtonEnabled":true}},"helpDialogue":{"content":{"text":"platshållartext","title":"Hjälp"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines","limitToRange":false},"content":{"attribution":"Upphov","collapse":"Fäll ihop information","collapseFull":"Fäll ihop galleri","description":"Beskrivning","expand":"Expandera information","expandFull":"Expandera galleri","holdingText":"Plats för din modul!","less":"mindre","license":"Licensvillkor","logo":"Logotyp","more":"mer","noData":"Ingen information att visa","page":"Sida","title":"Mer information","manifestHeader":"Om objektet","canvasHeader":"Om bilden","copyToClipboard":"Kopiera till urklipp","copiedToClipboard":"Kopierade till urklipp"}},"avCenterPanel":{"options":{"autoPlay":false,"includeParentInTitleEnabled":false,"posterImageRatio":0.3},"content":{"attribution":"Upphov","currentTime":"Aktuell tid","delimiter":" - ","duration":"Speltid","mute":"Tyst","next":"Nästa","pause":"Paus","play":"Spela","previous":"Föregående"}},"settingsDialogue":{"content":{"locale":"Språk","navigatorEnabled":"Visa minivy","clickToZoomEnabled":"Zooma med musklick","pagingEnabled":"Dubbelsidig vy","preserveViewport":"Behåll zoomnivå","title":"Inställningar","website":"mer info"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true},"content":{"customSize":"Anpassad","embed":"Bädda in","embedInstructions":"För att bädda in det här objektet i din egen webbplats, kopiera och klistra koden nedan.","height":"Höjd","iiif":"IIIF Manifest","share":"Dela","shareInstructions":"Kopiera länken nedan för att dela det här objektet.","size":"Storlek:","width":"Bredd"}},"authDialogue":{"content":{"cancel":"Avbryt","confirm":"Bekräfta"}},"clickThroughDialogue":{"content":{"viewTerms":"Läs fullständiga villkor"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Aktuell vy {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Öppnas i nytt fönster","download":"Ladda ner","downloadSelection":"Ladda ner valt område","downloadSelectionExplanation":"Öppnar dialog där du får välja sidor att ladda ner.","editSettings":"Ändra inställningar","entireDocument":"Hela dokumentet ({0})","entireFileAsOriginal":"Hela filen","entireFileAsOriginalWithFormat":"Hela filen ({0})","noneAvailable":"Inga nedladdningsalternativ är tillgängliga.","pagingNote":"Stäng dubbelsidig vy för fler alternativ","preview":"Förhandsgranska","title":"Ladda ner","wholeImageHighRes":"Hela bilden {0} x {1}px ({2})","wholeImageHighResExplanation":"Öppnas i nytt fönster.","wholeImagesHighRes":"Hela bilder ({0})","wholeImagesHighResExplanation":"Öppnas i två nya fönster.","wholeImageLowResAsJpg":"Hela bilden {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Öppnas i nytt fönster."}},"loginDialogue":{"content":{"login":"Logga in","logout":"Logga ut","cancel":"Avbryt"}},"mobileFooterPanel":{"content":{"rotateRight":"Rotera höger","moreInfo":"Mer information","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"multiSelectDialogue":{"content":{"select":"Ladda ner","selectAll":"Markera alla","title":"Välj sidor att ladda ner"}},"pagingHeaderPanel":{"content":{"close":"Stäng","emptyValue":"Ange ett värde","first":"Första","firstImage":"Första bild","firstPage":"Första sidan","folio":"Folio","gallery":"Galleri","go":"Gå","help":"Hjälp","image":"Bild","last":"Sista","lastImage":"Sista bilden","lastPage":"Sista sidan","next":"Nästa","nextImage":"Nästa bild","nextPage":"Nästa sida","of":"av {0}","oneUp":"Enkelsidig vy","page":"Sida","pageSearchLabel":"Sök med sidnummer","previous":"Föregående","previousImage":"Föregående bild","previousPage":"Föregående sida","settings":"Inställningar","twoUp":"Dubbelsidig vy"}},"restrictedDialogue":{"content":{"cancel":"Avbryt"}},"searchFooterPanel":{"content":{"clearSearch":"Rensa sökning","defaultLabel":"-","displaying":"{0} {1} av {2}","enterKeyword":"Ange sökord","image":"bild","imageCaps":"Bild","instanceFound":"1 instans av '{0}' hittades","instancesFound":"{0} instanser av '{1}' hittades","nextResult":"Nästa träff","page":"sida","pageCaps":"Sida","previousResult":"Föregående träff","print":"Skriv ut","resultFoundFor":"träff hittades för","resultsFoundFor":"träffar hittades för","searchWithin":"Sök inom detta objekt:"}}},"localisation":{"label":"Svenska","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Din webbläsare stöder inte CORS. Uppgradera den för att kunna se detta innehåll.","authorisationFailedMessage":"Din inloggning misslyckades. Vänligen försök igen.","canvasIndexOutOfRange":"Canvas-index ogiltigt.","fallbackDegradedLabel":"Logga in","fallbackDegradedMessage":"Logga in för att se bilden i bästa kvalitet.","forbiddenResourceMessage":"Du har inte behörighet att se den här bilden","termsOfUse":"Användningsvillkor"}} -------------------------------------------------------------------------------- /uv/lib/uv-default-extension-dependencies.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return function (formats) { 3 | return { 4 | async: ['MetadataComponent'] 5 | }; 6 | }; 7 | }); 8 | -------------------------------------------------------------------------------- /uv/lib/uv-default-extension.cy-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"arfer","embed":"gwreiddio","embedInstructions":"Er mwyn ymgorffori'r eitem hon ar eich gwefan, cop�wch a gosodwch y cod isod.","height":"Hyd","iiif":"IIIF Manifest","share":"Rhannu","shareInstructions":"I rannu yr eitem hon, copïwch y URL isod.","size":"maint:","width":"Lled"}},"fileLinkCenterPanel":{"content":{}},"footerPanel":{"options":{"bookmarkEnabled":false,"downloadEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ychwanegu at nodau tudalen","download":"Lawrlwytho","embed":"Ymgorffori","exitFullScreen":"Dianc o'r sgrin lawn","fullScreen":"Sgrin lawn","moreInfo":"Mwy o Wybodaeth","open":"agored"}},"genericDialogue":{"content":{"ok":"GWELD"}},"headerPanel":{"content":{"close":"Cau","help":"Cymorth"}},"helpDialogue":{"content":{"text":"testun i'w osod","title":"Cymorth"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Priodoledd","collapse":"Lleihau'r Wybodaeth","collapseFull":"Cuddio'r Galeri","description":"Disgrifiad","expand":"Ehangu'r Wybodaeth","expandFull":"Ehangu'r Galeri","holdingText":"Eich modiwl fan hyn!","less":"llai","license":"Trwydded","logo":"Logo","more":"mwy","noData":"Nid oes data i'w arddangos","page":"tudalen","title":"Mwy o Wybodaeth","manifestHeader":"Am yr eitem","canvasHeader":"Am y ddelwedd","copyToClipboard":"Copïo i'r clipfwrdd","copiedToClipboard":"Copïwyd i'r clipfwrdd"}},"resourcesLeftPanel":{"options":{"expandFullEnabled":false,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true},"content":{"title":"Cynnwys"}},"dialogue":{"content":{"close":"Cau"}},"downloadDialogue":{"content":{"download":"Lawrlwytho","entireFileAsOriginal":"Y ffeil gyfan","noneAvailable":"Nid oes unrhyw opsiynau lawrlwytho ar gael.","preview":"Rhagolwg","title":"Lawrlwytho"}},"loginDialogue":{"content":{"login":"Mewngofnodi","cancel":"Diddymu"}},"mediaelementCenterPanel":{"content":{}},"settingsDialogue":{"content":{"locale":"Iaith","pagingEnabled":"Arddangos dwy dudalen","preserveViewport":"Cadw'r lefel o glosio","title":"Dewisiadau","website":"mwy o wybodaeth"}}},"localisation":{"label":"Cymraeg","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Eich porwr yn peidio cefnogi CORS, os gwelwch yn dda uwchraddio i weld y cynnwys hwn.","authorisationFailedMessage":"Nid oedd yn ymddangos eich ymgais mewngofnodi i fod yn llwyddiannus . Trio eto os gwelwch yn dda.","degradedResourceMessage":"Os gwelwch yn dda mewngofnodwch i weld yn ansawdd llawn.","degradedResourceLogin":"Mewngofnodi","forbiddenResourceMessage":"Eich hawliau mynediad presennol yn annigonol i weld llun hwn"}} -------------------------------------------------------------------------------- /uv/lib/uv-default-extension.en-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"custom","embed":"Embed","embedInstructions":"To embed this item in your own website, copy and paste the code below.","height":"Height","iiif":"IIIF Manifest","share":"Share","shareInstructions":"To share this item, copy the URL below.","size":"Size:","width":"Width"}},"fileLinkCenterPanel":{"content":{}},"footerPanel":{"options":{"bookmarkEnabled":false,"downloadEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Add to bookmarks","download":"Download","embed":"Share","exitFullScreen":"Exit Full Screen","fullScreen":"Full Screen","moreInfo":"More Information","open":"Open"}},"genericDialogue":{"content":{"ok":"OK"}},"headerPanel":{"content":{"close":"Close","help":"Help"}},"helpDialogue":{"content":{"text":"placeholder text","title":"Help"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Collapse Information","collapseFull":"Collapse Gallery","description":"Description","expand":"Expand Information","expandFull":"Expand Gallery","holdingText":"Your module goes here!","less":"less","license":"License","logo":"Logo","more":"more","noData":"No data to display","page":"Page","title":"More Information","manifestHeader":"About the item","canvasHeader":"About the image","copyToClipboard":"Copy to clipboard","copiedToClipboard":"Copied to clipboard"}},"resourcesLeftPanel":{"options":{"expandFullEnabled":false,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true},"content":{"title":"Contents"}},"dialogue":{"content":{"close":"Close"}},"downloadDialogue":{"content":{"download":"Download","entireFileAsOriginal":"Entire file","noneAvailable":"No download options are available.","preview":"Preview","title":"Download"}},"loginDialogue":{"content":{"login":"Login","cancel":"Cancel"}},"settingsDialogue":{"content":{"locale":"Locale","pagingEnabled":"Two Page View","preserveViewport":"Preserve Zoom","title":"Settings","website":"more info"}}},"localisation":{"label":"English (GB)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Your browser does not support CORS, please upgrade to view this content.","authorisationFailedMessage":"Your log-in attempt did not appear to be successful. Please try again.","degradedResourceMessage":"Please log in to view at full quality.","degradedResourceLogin":"log in","forbiddenResourceMessage":"Your current access rights are insufficient to view this image"}} -------------------------------------------------------------------------------- /uv/lib/uv-default-extension.fr-FR.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"personnalisée","embed":"Intégrer","embedInstructions":"Pour afficher ce contenu sur votre site internet, copier-collez le code ci-dessous.","height":"Hauteur","iiif":"Manifeste IIIF","share":"Partager","shareInstructions":"Pour partager ce contenu, copier l'URL ci-dessous.","size":"Taille :","width":"Largeur"}},"fileLinkCenterPanel":{},"footerPanel":{"options":{"bookmarkEnabled":false,"downloadEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ajouter aux favoris","download":"Télécharger","embed":"Intégrer","exitFullScreen":"Quitter le mode plein écran","feedback":"Commentaire","fullScreen":"Affichage en plein écran","moreInfo":"Informations","open":"Ouvrir","share":"Partager"}},"genericDialogue":{"content":{"emptyValue":"veuillez saisir une valeur.","invalidNumber":"Veuillez saisir un nombre valide.","noMatches":"Aucune correspondance n'a été trouvée.","ok":"OK","pageNotFound":"Ce contenu ne contient pas de page avec le numéro indiqué. Veuillez essayer de basculer le mode de numérotation sur 'image'.","refresh":"Rafraîchir"}},"headerPanel":{},"helpDialogue":{"content":{"text":"texte d'exemple","title":"Aide"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Masquer les informations","collapseFull":"Masquer la galerie","description":"Description","expand":"Afficher les informations","expandFull":"Afficher la galerie","holdingText":"Votre module vient ici !","less":"moins","license":"Licence","logo":"Logo","more":"suite","noData":"Aucune donnée à afficher","page":"Page","title":"Informations","manifestHeader":"A propos du contenu","canvasHeader":"A propos de l'image","copyToClipboard":"Copier dans le presse-papiers","copiedToClipboard":"Copié dans le presse-papiers"}},"resourcesLeftPanel":{"options":{"expandFullEnabled":false,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true}},"authDialogue":{"content":{"cancel":"Annuler","confirm":"Confirmer"}},"clickThroughDialogue":{"content":{"viewTerms":"Lire les termes et les conditions d'utilisation"}},"contentLeftPanel":{"content":{"collapse":"Masquer les contenus","collapseFull":"Masquer la galerie","date":"date","expand":"Afficher les contenus","expandFull":"Afficher la galerie","index":"Index","manifestRanges":"Manifestes","searchResult":"{0} résultats","searchResults":"{0} résultats","sortBy":"Trier par :","thumbnails":"Vignettes","title":"Contenus","volume":"volume"}},"dialogue":{"content":{"close":"Fermer"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Vue actuelle {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Ouvre une nouvelle fenêtre","download":"Télécharger","downloadSelection":"Télécharger la sélection","downloadSelectionExplanation":"Ouvre une fenêtre pour sélectionner les pages à télécharger.","editSettings":"Modifier les paramètres","entireDocument":"Document entier ({0})","entireFileAsOriginal":"Fichier complet","noneAvailable":"Aucune option de téléchargement n'est disponible.","pagingNote":"Veuillez fermer l'affichage en double page pour accéder aux options supplémentaires.","preview":"Aperçu","title":"Télécharger","wholeImageHighRes":"Image {0} x {1}px ({2})","wholeImageHighResExplanation":"Ouvre une nouvelle fenêtre.","wholeImagesHighRes":"Images ({0})","wholeImagesHighResExplanation":"S'ouvre dans deux nouvelles fenêtres.","wholeImageLowResAsJpg":"Image {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Ouvre une nouvelle fenêtre."}},"loginDialogue":{"content":{"login":"Connexion","logout":"Déconnexion","cancel":"Annuler"}},"mobileFooterPanel":{"content":{"rotateRight":"Pivoter à droite","moreInfo":"Informations","zoomIn":"Zoom avant","zoomOut":"Zoom arrière"}},"multiSelectDialogue":{"content":{"select":"Télécharger","selectAll":"Tout sélectionner","title":"Sélectionner les pages à télécharger"}},"pagingHeaderPanel":{"content":{"close":"Fermer","emptyValue":"Veuillez saisir une valeur","first":"Premier","firstImage":"Première image","firstPage":"Première page","folio":"Folio","gallery":"Gallerie","go":"Aller","help":"Aide","image":"Image","last":"Dernier","lastImage":"Dernière image","lastPage":"Dernière page","next":"Suivant","nextImage":"Prochaine image","nextPage":"Page suivante","of":"de {0}","oneUp":"Affichage en mode page simple","page":"Page","pageSearchLabel":"Recherche par numéro de page.","previous":"Précédent","previousImage":"Image précédente","previousPage":"Page précédente","settings":"Paramètres","twoUp":"Affichage double page"}},"seadragonCenterPanel":{"content":{"attribution":"Attribution","goHome":"Retour","imageUnavailable":"Image non disponible","next":"Prochain","previous":"Précédent","rotateRight":"Pivoter à droite","zoomIn":"Zoomer","zoomOut":"Dézoomer"}},"restrictedDialogue":{"content":{"cancel":"Annuler"}},"searchFooterPanel":{"content":{"clearSearch":"Effacer","defaultLabel":"-","displaying":"{0} {1} de {2}","enterKeyword":"Saisir un mot","image":"image","imageCaps":"Image","instanceFound":"1 instance de '{0}' trouvée","instancesFound":"{0} instances de '{1}' trouvées","nextResult":"Résultat suivant","page":"page","pageCaps":"Page","previousResult":"Résultat précédent","print":"Imprimer","resultFoundFor":"résultat trouvé pour ","resultsFoundFor":"résultats trouvés pour","searchWithin":"Chercher dans ce document :"}},"settingsDialogue":{"content":{"locale":"Langues","navigatorEnabled":"Navigateur activé","clickToZoomEnabled":"Cliquer pour zoomer","pagingEnabled":"Affichage double page","preserveViewport":"Conserver le zoom","title":"Paramètres","website":"informations"}}},"localisation":{"label":"Français (FR)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Votre navigateur ne supporte pas CORS, veuillez mettre à jour votre navigateur pour afficher ce contenu.","authorisationFailedMessage":"Votre tentative de connexion semble avoir échoué. Veuillez réessayer.","canvasIndexOutOfRange":"Valeur d'index invalide pour la balise Canvas.","fallbackDegradedLabel":"Connexion","fallbackDegradedMessage":"Connectez-vous pour visualisez ce contenu en résolution maximale.","forbiddenResourceMessage":"Vos droits d'accès ne vous permettent pas de visualiser cette image","termsOfUse":"Conditions d'utilisation"}} -------------------------------------------------------------------------------- /uv/lib/uv-default-extension.sv-SE.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"Anpassad","embed":"Bädda in","embedInstructions":"För att bädda in det här objektet i din egen webbplats, kopiera och klistra koden nedan.","height":"Höjd","iiif":"IIIF Manifest","share":"Dela","shareInstructions":"Kopiera länken nedan för att dela det här objektet.","size":"Storlek:","width":"Bredd"}},"fileLinkCenterPanel":{},"footerPanel":{"options":{"bookmarkEnabled":false,"downloadEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Lägg till bokmärke","download":"Ladda ner","embed":"Bädda in","exitFullScreen":"Avsluta helskärm","feedback":"Feedback","fullScreen":"Helskärm","moreInfo":"Mer information","open":"Öppna","share":"Dela"}},"genericDialogue":{"content":{"emptyValue":"ange ett värde.","invalidNumber":"Ange ett giltigt nummer.","noMatches":"Inga träffar hittades.","ok":"OK","pageNotFound":"Detta objekt har ingen sida med det nummer du angett. Testa att byta numreringsläge till 'bild'.","refresh":"Uppdatera"}},"headerPanel":{},"helpDialogue":{"content":{"text":"platshållartext","title":"Hjälp"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Upphov","collapse":"Fäll ihop information","collapseFull":"Fäll ihop galleri","description":"Beskrivning","expand":"Expandera information","expandFull":"Expandera galleri","holdingText":"Plats för din modul!","less":"mindre","license":"Licensvillkor","logo":"Logotyp","more":"mer","noData":"Ingen information att visa","page":"Sida","title":"Mer information","manifestHeader":"Om objektet","canvasHeader":"Om bilden","copyToClipboard":"Kopiera till urklipp","copiedToClipboard":"Kopierade till urklipp"}},"resourcesLeftPanel":{"options":{"expandFullEnabled":false,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true}},"authDialogue":{"content":{"cancel":"Avbryt","confirm":"Bekräfta"}},"clickThroughDialogue":{"content":{"viewTerms":"Läs fullständiga villkor"}},"contentLeftPanel":{"content":{"collapse":"Fäll ihop innehåll","collapseFull":"Fäll ihop galleri","date":"datum","expand":"Expandera innehåll","expandFull":"Expandera galleri","index":"Index","manifestRanges":"Manifest-omfång","searchResult":"{0} sökträffar","searchResults":"{0} sökträffar","sortBy":"Sortera efter:","thumbnails":"Småbilder","title":"Innehåll","volume":"volym"}},"dialogue":{"content":{"close":"Stäng"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Aktuell vy {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Öppnas i nytt fönster","download":"Ladda ner","downloadSelection":"Ladda ner valt område","downloadSelectionExplanation":"Öppnar dialog där du får välja sidor att ladda ner.","editSettings":"Ändra inställningar","entireDocument":"Hela dokumentet ({0})","entireFileAsOriginal":"Hela filen","noneAvailable":"Inga nedladdningsalternativ är tillgängliga.","pagingNote":"Stäng dubbelsidig vy för fler alternativ","preview":"Förhandsgranska","title":"Ladda ner","wholeImageHighRes":"Hela bilden {0} x {1}px ({2})","wholeImageHighResExplanation":"Öppnas i nytt fönster.","wholeImagesHighRes":"Hela bilder ({0})","wholeImagesHighResExplanation":"Öppnas i två nya fönster.","wholeImageLowResAsJpg":"Hela bilden {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Öppnas i nytt fönster."}},"loginDialogue":{"content":{"login":"Logga in","logout":"Logga ut","cancel":"Avbryt"}},"mobileFooterPanel":{"content":{"rotateRight":"Rotera höger","moreInfo":"Mer information","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"multiSelectDialogue":{"content":{"select":"Ladda ner","selectAll":"Markera alla","title":"Välj sidor att ladda ner"}},"pagingHeaderPanel":{"content":{"close":"Stäng","emptyValue":"Ange ett värde","first":"Första","firstImage":"Första bild","firstPage":"Första sidan","folio":"Folio","gallery":"Galleri","go":"Gå","help":"Hjälp","image":"Bild","last":"Sista","lastImage":"Sista bilden","lastPage":"Sista sidan","next":"Nästa","nextImage":"Nästa bild","nextPage":"Nästa sida","of":"av {0}","oneUp":"Enkelsidig vy","page":"Sida","pageSearchLabel":"Sök med sidnummer","previous":"Föregående","previousImage":"Föregående bild","previousPage":"Föregående sida","settings":"Inställningar","twoUp":"Dubbelsidig vy"}},"seadragonCenterPanel":{"content":{"attribution":"Upphov","goHome":"Visa hela sidan","imageUnavailable":"Bild ej tillgänglig","next":"Nästa","previous":"Föregående","rotateRight":"Rotera höger","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"avCenterPanel":{"content":{"currentTime":"Aktuell tid","delimiter":" - ","duration":"Speltid","mute":"Tyst","next":"Nästa","pause":"Paus","play":"Spela","previous":"Föregående"}},"restrictedDialogue":{"content":{"cancel":"Avbryt"}},"searchFooterPanel":{"content":{"clearSearch":"Rensa sökning","defaultLabel":"-","displaying":"{0} {1} av {2}","enterKeyword":"Ange sökord","image":"bild","imageCaps":"Bild","instanceFound":"1 instans av '{0}' hittades","instancesFound":"{0} instanser av '{1}' hittades","nextResult":"Nästa träff","page":"sida","pageCaps":"Sida","previousResult":"Föregående träff","print":"Skriv ut","resultFoundFor":"träff hittades för","resultsFoundFor":"träffar hittades för","searchWithin":"Sök inom detta objekt:"}},"settingsDialogue":{"content":{"locale":"Språk","navigatorEnabled":"Visa minivy","clickToZoomEnabled":"Zooma med musklick","pagingEnabled":"Dubbelsidig vy","preserveViewport":"Behåll zoomnivå","title":"Inställningar","website":"mer info"}}},"localisation":{"label":"Svenska","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Din webbläsare stöder inte CORS. Uppgradera den för att kunna se detta innehåll.","authorisationFailedMessage":"Din inloggning misslyckades. Vänligen försök igen.","canvasIndexOutOfRange":"Canvas-index ogiltigt.","fallbackDegradedLabel":"Logga in","fallbackDegradedMessage":"Logga in för att se bilden i bästa kvalitet.","forbiddenResourceMessage":"Du har inte behörighet att se den här bilden","termsOfUse":"Användningsvillkor"}} -------------------------------------------------------------------------------- /uv/lib/uv-mediaelement-extension-dependencies.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return function (formats) { 3 | return { 4 | async: ['mediaelement-and-player', 'MetadataComponent'] 5 | }; 6 | }; 7 | }); 8 | -------------------------------------------------------------------------------- /uv/lib/uv-mediaelement-extension.cy-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"arfer","embed":"gwreiddio","embedInstructions":"Er mwyn ymgorffori'r eitem hon ar eich gwefan, cop�wch a gosodwch y cod isod.","height":"Hyd","iiif":"IIIF Manifest","share":"Rhannu","shareInstructions":"I rannu yr eitem hon, copïwch y URL isod.","size":"maint:","width":"Lled"}},"footerPanel":{"options":{"bookmarkEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ychwanegu at nodau tudalen","download":"Lawrlwytho","embed":"Ymgorffori","exitFullScreen":"Dianc o'r sgrin lawn","fullScreen":"Sgrin lawn","moreInfo":"Mwy o Wybodaeth","open":"agored"}},"genericDialogue":{"content":{"ok":"GWELD"}},"headerPanel":{"content":{"close":"Cau","help":"Cymorth"}},"helpDialogue":{"content":{"text":"testun i'w osod","title":"Cymorth"}},"mediaelementCenterPanel":{"defaultHeight":420,"defaultWidth":560,"content":{}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Priodoledd","collapse":"Lleihau'r Wybodaeth","collapseFull":"Cuddio'r Galeri","description":"Disgrifiad","expand":"Ehangu'r Wybodaeth","expandFull":"Ehangu'r Galeri","holdingText":"Eich modiwl fan hyn!","less":"llai","license":"Trwydded","logo":"Logo","more":"mwy","noData":"Nid oes data i'w arddangos","page":"tudalen","title":"Mwy o Wybodaeth","manifestHeader":"Am yr eitem","canvasHeader":"Am y ddelwedd","copyToClipboard":"Copïo i'r clipfwrdd","copiedToClipboard":"Copïwyd i'r clipfwrdd"}},"resourcesLeftPanel":{"options":{"expandFullEnabled":false,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true},"content":{"title":"Cynnwys"}},"dialogue":{"content":{"close":"Cau"}},"downloadDialogue":{"content":{"download":"Lawrlwytho","entireFileAsOriginal":"Y ffeil gyfan","noneAvailable":"Nid oes unrhyw opsiynau lawrlwytho ar gael.","preview":"Rhagolwg","title":"Lawrlwytho"}},"loginDialogue":{"content":{"login":"Mewngofnodi","cancel":"Diddymu"}},"settingsDialogue":{"content":{"locale":"Iaith","pagingEnabled":"Arddangos dwy dudalen","preserveViewport":"Cadw'r lefel o glosio","title":"Dewisiadau","website":"mwy o wybodaeth"}}},"localisation":{"label":"Cymraeg","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Eich porwr yn peidio cefnogi CORS, os gwelwch yn dda uwchraddio i weld y cynnwys hwn.","authorisationFailedMessage":"Nid oedd yn ymddangos eich ymgais mewngofnodi i fod yn llwyddiannus . Trio eto os gwelwch yn dda.","degradedResourceMessage":"Os gwelwch yn dda mewngofnodwch i weld yn ansawdd llawn.","degradedResourceLogin":"Mewngofnodi","forbiddenResourceMessage":"Eich hawliau mynediad presennol yn annigonol i weld llun hwn"}} -------------------------------------------------------------------------------- /uv/lib/uv-mediaelement-extension.en-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"custom","embed":"Embed","embedInstructions":"To embed this item in your own website, copy and paste the code below.","height":"Height","iiif":"IIIF Manifest","share":"Share","shareInstructions":"To share this item, copy the URL below.","size":"Size:","width":"Width"}},"footerPanel":{"options":{"bookmarkEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Add to bookmarks","download":"Download","embed":"Share","exitFullScreen":"Exit Full Screen","fullScreen":"Full Screen","moreInfo":"More Information","open":"Open","share":"Share"}},"genericDialogue":{"content":{"ok":"OK"}},"headerPanel":{"content":{"close":"Close","help":"Help"}},"helpDialogue":{"content":{"text":"placeholder text","title":"Help"}},"mediaelementCenterPanel":{"defaultHeight":420,"defaultWidth":560,"content":{}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Collapse Information","collapseFull":"Collapse Gallery","description":"Description","expand":"Expand Information","expandFull":"Expand Gallery","holdingText":"Your module goes here!","less":"less","license":"License","logo":"Logo","more":"more","noData":"No data to display","page":"Page","title":"More Information","manifestHeader":"About the item","canvasHeader":"About the image","copyToClipboard":"Copy to clipboard","copiedToClipboard":"Copied to clipboard"}},"resourcesLeftPanel":{"options":{"expandFullEnabled":false,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true},"content":{"title":"Contents"}},"dialogue":{"content":{"close":"Close"}},"downloadDialogue":{"content":{"download":"Download","entireFileAsOriginal":"Entire file","noneAvailable":"No download options are available.","preview":"Preview","title":"Download"}},"loginDialogue":{"content":{"login":"Login","cancel":"Cancel"}},"settingsDialogue":{"content":{"locale":"Locale","pagingEnabled":"Two Page View","preserveViewport":"Preserve Zoom","title":"Settings","website":"more info"}}},"localisation":{"label":"English (GB)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Your browser does not support CORS, please upgrade to view this content.","authorisationFailedMessage":"Your log-in attempt did not appear to be successful. Please try again.","degradedResourceMessage":"Please log in to view at full quality.","degradedResourceLogin":"log in","forbiddenResourceMessage":"Your current access rights are insufficient to view this image"}} -------------------------------------------------------------------------------- /uv/lib/uv-mediaelement-extension.fr-FR.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"personnalisée","embed":"Intégrer","embedInstructions":"Pour afficher ce contenu sur votre site internet, copier-collez le code ci-dessous.","height":"Hauteur","iiif":"Manifeste IIIF","share":"Partager","shareInstructions":"Pour partager ce contenu, copier l'URL ci-dessous.","size":"Taille :","width":"Largeur"}},"footerPanel":{"options":{"bookmarkEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ajouter aux favoris","download":"Télécharger","embed":"Intégrer","exitFullScreen":"Quitter le mode plein écran","feedback":"Commentaire","fullScreen":"Affichage en plein écran","moreInfo":"Informations","open":"Ouvrir","share":"Partager"}},"genericDialogue":{"content":{"emptyValue":"veuillez saisir une valeur.","invalidNumber":"Veuillez saisir un nombre valide.","noMatches":"Aucune correspondance n'a été trouvée.","ok":"OK","pageNotFound":"Ce contenu ne contient pas de page avec le numéro indiqué. Veuillez essayer de basculer le mode de numérotation sur 'image'.","refresh":"Rafraîchir"}},"headerPanel":{},"helpDialogue":{"content":{"text":"texte d'exemple","title":"Aide"}},"mediaelementCenterPanel":{"defaultHeight":420,"defaultWidth":560},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Masquer les informations","collapseFull":"Masquer la galerie","description":"Description","expand":"Afficher les informations","expandFull":"Afficher la galerie","holdingText":"Votre module vient ici !","less":"moins","license":"Licence","logo":"Logo","more":"suite","noData":"Aucune donnée à afficher","page":"Page","title":"Informations","manifestHeader":"A propos du contenu","canvasHeader":"A propos de l'image","copyToClipboard":"Copier dans le presse-papiers","copiedToClipboard":"Copié dans le presse-papiers"}},"resourcesLeftPanel":{"options":{"expandFullEnabled":false,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true}},"authDialogue":{"content":{"cancel":"Annuler","confirm":"Confirmer"}},"clickThroughDialogue":{"content":{"viewTerms":"Lire les termes et les conditions d'utilisation"}},"contentLeftPanel":{"content":{"collapse":"Masquer les contenus","collapseFull":"Masquer la galerie","date":"date","expand":"Afficher les contenus","expandFull":"Afficher la galerie","index":"Index","manifestRanges":"Manifestes","searchResult":"{0} résultats","searchResults":"{0} résultats","sortBy":"Trier par :","thumbnails":"Vignettes","title":"Contenus","volume":"volume"}},"dialogue":{"content":{"close":"Fermer"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Vue actuelle {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Ouvre une nouvelle fenêtre","download":"Télécharger","downloadSelection":"Télécharger la sélection","downloadSelectionExplanation":"Ouvre une fenêtre pour sélectionner les pages à télécharger.","editSettings":"Modifier les paramètres","entireDocument":"Document entier ({0})","entireFileAsOriginal":"Fichier complet","noneAvailable":"Aucune option de téléchargement n'est disponible.","pagingNote":"Veuillez fermer l'affichage en double page pour accéder aux options supplémentaires.","preview":"Aperçu","title":"Télécharger","wholeImageHighRes":"Image {0} x {1}px ({2})","wholeImageHighResExplanation":"Ouvre une nouvelle fenêtre.","wholeImagesHighRes":"Images ({0})","wholeImagesHighResExplanation":"S'ouvre dans deux nouvelles fenêtres.","wholeImageLowResAsJpg":"Image {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Ouvre une nouvelle fenêtre."}},"loginDialogue":{"content":{"login":"Connexion","logout":"Déconnexion","cancel":"Annuler"}},"mobileFooterPanel":{"content":{"rotateRight":"Pivoter à droite","moreInfo":"Informations","zoomIn":"Zoom avant","zoomOut":"Zoom arrière"}},"multiSelectDialogue":{"content":{"select":"Télécharger","selectAll":"Tout sélectionner","title":"Sélectionner les pages à télécharger"}},"pagingHeaderPanel":{"content":{"close":"Fermer","emptyValue":"Veuillez saisir une valeur","first":"Premier","firstImage":"Première image","firstPage":"Première page","folio":"Folio","gallery":"Gallerie","go":"Aller","help":"Aide","image":"Image","last":"Dernier","lastImage":"Dernière image","lastPage":"Dernière page","next":"Suivant","nextImage":"Prochaine image","nextPage":"Page suivante","of":"de {0}","oneUp":"Affichage en mode page simple","page":"Page","pageSearchLabel":"Recherche par numéro de page.","previous":"Précédent","previousImage":"Image précédente","previousPage":"Page précédente","settings":"Paramètres","twoUp":"Affichage double page"}},"seadragonCenterPanel":{"content":{"attribution":"Attribution","goHome":"Retour","imageUnavailable":"Image non disponible","next":"Prochain","previous":"Précédent","rotateRight":"Pivoter à droite","zoomIn":"Zoomer","zoomOut":"Dézoomer"}},"restrictedDialogue":{"content":{"cancel":"Annuler"}},"searchFooterPanel":{"content":{"clearSearch":"Effacer","defaultLabel":"-","displaying":"{0} {1} de {2}","enterKeyword":"Saisir un mot","image":"image","imageCaps":"Image","instanceFound":"1 instance de '{0}' trouvée","instancesFound":"{0} instances de '{1}' trouvées","nextResult":"Résultat suivant","page":"page","pageCaps":"Page","previousResult":"Résultat précédent","print":"Imprimer","resultFoundFor":"résultat trouvé pour ","resultsFoundFor":"résultats trouvés pour","searchWithin":"Chercher dans ce document :"}},"settingsDialogue":{"content":{"locale":"Langues","navigatorEnabled":"Navigateur activé","clickToZoomEnabled":"Cliquer pour zoomer","pagingEnabled":"Affichage double page","preserveViewport":"Conserver le zoom","title":"Paramètres","website":"informations"}}},"localisation":{"label":"Français (FR)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Votre navigateur ne supporte pas CORS, veuillez mettre à jour votre navigateur pour afficher ce contenu.","authorisationFailedMessage":"Votre tentative de connexion semble avoir échoué. Veuillez réessayer.","canvasIndexOutOfRange":"Valeur d'index invalide pour la balise Canvas.","fallbackDegradedLabel":"Connexion","fallbackDegradedMessage":"Connectez-vous pour visualisez ce contenu en résolution maximale.","forbiddenResourceMessage":"Vos droits d'accès ne vous permettent pas de visualiser cette image","termsOfUse":"Conditions d'utilisation"}} -------------------------------------------------------------------------------- /uv/lib/uv-mediaelement-extension.sv-SE.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"Anpassad","embed":"Bädda in","embedInstructions":"För att bädda in det här objektet i din egen webbplats, kopiera och klistra koden nedan.","height":"Höjd","iiif":"IIIF Manifest","share":"Dela","shareInstructions":"Kopiera länken nedan för att dela det här objektet.","size":"Storlek:","width":"Bredd"}},"footerPanel":{"options":{"bookmarkEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Lägg till bokmärke","download":"Ladda ner","embed":"Bädda in","exitFullScreen":"Avsluta helskärm","feedback":"Feedback","fullScreen":"Helskärm","moreInfo":"Mer information","open":"Öppna","share":"Dela"}},"genericDialogue":{"content":{"emptyValue":"ange ett värde.","invalidNumber":"Ange ett giltigt nummer.","noMatches":"Inga träffar hittades.","ok":"OK","pageNotFound":"Detta objekt har ingen sida med det nummer du angett. Testa att byta numreringsläge till 'bild'.","refresh":"Uppdatera"}},"headerPanel":{},"helpDialogue":{"content":{"text":"platshållartext","title":"Hjälp"}},"mediaelementCenterPanel":{"defaultHeight":420,"defaultWidth":560},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Upphov","collapse":"Fäll ihop information","collapseFull":"Fäll ihop galleri","description":"Beskrivning","expand":"Expandera information","expandFull":"Expandera galleri","holdingText":"Plats för din modul!","less":"mindre","license":"Licensvillkor","logo":"Logotyp","more":"mer","noData":"Ingen information att visa","page":"Sida","title":"Mer information","manifestHeader":"Om objektet","canvasHeader":"Om bilden","copyToClipboard":"Kopiera till urklipp","copiedToClipboard":"Kopierade till urklipp"}},"resourcesLeftPanel":{"options":{"expandFullEnabled":false,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true}},"authDialogue":{"content":{"cancel":"Avbryt","confirm":"Bekräfta"}},"clickThroughDialogue":{"content":{"viewTerms":"Läs fullständiga villkor"}},"contentLeftPanel":{"content":{"collapse":"Fäll ihop innehåll","collapseFull":"Fäll ihop galleri","date":"datum","expand":"Expandera innehåll","expandFull":"Expandera galleri","index":"Index","manifestRanges":"Manifest-omfång","searchResult":"{0} sökträffar","searchResults":"{0} sökträffar","sortBy":"Sortera efter:","thumbnails":"Småbilder","title":"Innehåll","volume":"volym"}},"dialogue":{"content":{"close":"Stäng"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Aktuell vy {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Öppnas i nytt fönster","download":"Ladda ner","downloadSelection":"Ladda ner valt område","downloadSelectionExplanation":"Öppnar dialog där du får välja sidor att ladda ner.","editSettings":"Ändra inställningar","entireDocument":"Hela dokumentet ({0})","entireFileAsOriginal":"Hela filen","noneAvailable":"Inga nedladdningsalternativ är tillgängliga.","pagingNote":"Stäng dubbelsidig vy för fler alternativ","preview":"Förhandsgranska","title":"Ladda ner","wholeImageHighRes":"Hela bilden {0} x {1}px ({2})","wholeImageHighResExplanation":"Öppnas i nytt fönster.","wholeImagesHighRes":"Hela bilder ({0})","wholeImagesHighResExplanation":"Öppnas i två nya fönster.","wholeImageLowResAsJpg":"Hela bilden {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Öppnas i nytt fönster."}},"loginDialogue":{"content":{"login":"Logga in","logout":"Logga ut","cancel":"Avbryt"}},"mobileFooterPanel":{"content":{"rotateRight":"Rotera höger","moreInfo":"Mer information","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"multiSelectDialogue":{"content":{"select":"Ladda ner","selectAll":"Markera alla","title":"Välj sidor att ladda ner"}},"pagingHeaderPanel":{"content":{"close":"Stäng","emptyValue":"Ange ett värde","first":"Första","firstImage":"Första bild","firstPage":"Första sidan","folio":"Folio","gallery":"Galleri","go":"Gå","help":"Hjälp","image":"Bild","last":"Sista","lastImage":"Sista bilden","lastPage":"Sista sidan","next":"Nästa","nextImage":"Nästa bild","nextPage":"Nästa sida","of":"av {0}","oneUp":"Enkelsidig vy","page":"Sida","pageSearchLabel":"Sök med sidnummer","previous":"Föregående","previousImage":"Föregående bild","previousPage":"Föregående sida","settings":"Inställningar","twoUp":"Dubbelsidig vy"}},"seadragonCenterPanel":{"content":{"attribution":"Upphov","goHome":"Visa hela sidan","imageUnavailable":"Bild ej tillgänglig","next":"Nästa","previous":"Föregående","rotateRight":"Rotera höger","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"avCenterPanel":{"content":{"currentTime":"Aktuell tid","delimiter":" - ","duration":"Speltid","mute":"Tyst","next":"Nästa","pause":"Paus","play":"Spela","previous":"Föregående"}},"restrictedDialogue":{"content":{"cancel":"Avbryt"}},"searchFooterPanel":{"content":{"clearSearch":"Rensa sökning","defaultLabel":"-","displaying":"{0} {1} av {2}","enterKeyword":"Ange sökord","image":"bild","imageCaps":"Bild","instanceFound":"1 instans av '{0}' hittades","instancesFound":"{0} instanser av '{1}' hittades","nextResult":"Nästa träff","page":"sida","pageCaps":"Sida","previousResult":"Föregående träff","print":"Skriv ut","resultFoundFor":"träff hittades för","resultsFoundFor":"träffar hittades för","searchWithin":"Sök inom detta objekt:"}},"settingsDialogue":{"content":{"locale":"Språk","navigatorEnabled":"Visa minivy","clickToZoomEnabled":"Zooma med musklick","pagingEnabled":"Dubbelsidig vy","preserveViewport":"Behåll zoomnivå","title":"Inställningar","website":"mer info"}}},"localisation":{"label":"Svenska","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Din webbläsare stöder inte CORS. Uppgradera den för att kunna se detta innehåll.","authorisationFailedMessage":"Din inloggning misslyckades. Vänligen försök igen.","canvasIndexOutOfRange":"Canvas-index ogiltigt.","fallbackDegradedLabel":"Logga in","fallbackDegradedMessage":"Logga in för att se bilden i bästa kvalitet.","forbiddenResourceMessage":"Du har inte behörighet att se den här bilden","termsOfUse":"Användningsvillkor"}} -------------------------------------------------------------------------------- /uv/lib/uv-pdf-extension-dependencies.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return function (formats) { 3 | return { 4 | async: ['!pdfjs-dist/build/pdf.combined', 'MetadataComponent'] 5 | }; 6 | }; 7 | }); 8 | -------------------------------------------------------------------------------- /uv/lib/uv-pdf-extension.cy-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"arfer","embed":"gwreiddio","embedInstructions":"Er mwyn ymgorffori'r eitem hon ar eich gwefan, cop�wch a gosodwch y cod isod.","height":"Hyd","iiif":"IIIF Manifest","share":"Rhannu","shareInstructions":"I rannu yr eitem hon, copïwch y URL isod.","size":"maint:","width":"Lled"}},"footerPanel":{"options":{"bookmarkEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ychwanegu at nodau tudalen","download":"Lawrlwytho","embed":"Ymgorffori","exitFullScreen":"Dianc o'r sgrin lawn","feedback":"Adborth","fullScreen":"Sgrin lawn","moreInfo":"Mwy o Wybodaeth","open":"Agor","share":"Rhannu"}},"genericDialogue":{"content":{"ok":"GWELD"}},"headerPanel":{},"helpDialogue":{"content":{"text":"testun i'w osod","title":"Cymorth"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Priodoledd","collapse":"Lleihau'r Wybodaeth","collapseFull":"Cuddio'r Galeri","description":"Disgrifiad","expand":"Ehangu'r Wybodaeth","expandFull":"Ehangu'r Galeri","holdingText":"Eich modiwl fan hyn!","less":"llai","license":"Trwydded","logo":"Logo","more":"mwy","noData":"Nid oes data i'w arddangos","page":"tudalen","title":"Mwy o Wybodaeth","manifestHeader":"Am yr eitem","canvasHeader":"Am y ddelwedd","copyToClipboard":"Copïo i'r clipfwrdd","copiedToClipboard":"Copïwyd i'r clipfwrdd"}},"pdfCenterPanel":{"options":{"titleEnabled":false}},"resourcesLeftPanel":{"options":{"elideCount":40,"galleryThumbHeight":320,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90}},"dialogue":{"content":{"close":"Cau"}},"downloadDialogue":{"content":{"download":"Lawrlwytho","entireFileAsOriginal":"Y ffeil gyfan","noneAvailable":"Nid oes unrhyw opsiynau lawrlwytho ar gael.","preview":"Rhagolwg","title":"Lawrlwytho"}},"loginDialogue":{"content":{"login":"Mewngofnodi","cancel":"Diddymu"}},"settingsDialogue":{"content":{"locale":"Iaith","pagingEnabled":"Arddangos dwy dudalen","preserveViewport":"Cadw'r lefel o glosio","title":"Dewisiadau","website":"mwy o wybodaeth"}},"contentLeftPanel":{"content":{"collapse":"Cuddio'r Cynnwys","collapseFull":"Cuddio'r Galeri","expand":"Ehangu'r Cynnwys","expandFull":"Ehangu'r Galeri","index":"Mynegai","thumbnails":"Bodluniau","title":"Cynnwys"}}},"localisation":{"label":"Cymraeg","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Eich porwr yn peidio cefnogi CORS, os gwelwch yn dda uwchraddio i weld y cynnwys hwn.","authorisationFailedMessage":"Nid oedd yn ymddangos eich ymgais mewngofnodi i fod yn llwyddiannus . Trio eto os gwelwch yn dda.","degradedResourceMessage":"Os gwelwch yn dda mewngofnodwch i weld yn ansawdd llawn.","degradedResourceLogin":"Mewngofnodi","forbiddenResourceMessage":"Eich hawliau mynediad presennol yn annigonol i weld llun hwn"}} -------------------------------------------------------------------------------- /uv/lib/uv-pdf-extension.en-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"custom","embed":"Embed","embedInstructions":"To embed this item in your own website, copy and paste the code below.","height":"Height","iiif":"IIIF Manifest","share":"Share","shareInstructions":"To share this item, copy the URL below.","size":"Size:","width":"Width"}},"footerPanel":{"options":{"bookmarkEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Add to bookmarks","download":"Download","embed":"Embed","exitFullScreen":"Exit Full Screen","feedback":"Feedback","fullScreen":"Full Screen","moreInfo":"More Information","open":"Open","share":"Share"}},"genericDialogue":{"content":{"ok":"OK"}},"headerPanel":{"content":{"close":"Close","help":"Help"}},"helpDialogue":{"content":{"text":"placeholder text","title":"Help"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Collapse Information","collapseFull":"Collapse Gallery","description":"Description","expand":"Expand Information","expandFull":"Expand Gallery","holdingText":"Your module goes here!","less":"less","license":"License","logo":"Logo","more":"more","noData":"No data to display","page":"Page","title":"More Information","manifestHeader":"About the item","canvasHeader":"About the image","copyToClipboard":"Copy to clipboard","copiedToClipboard":"Copied to clipboard"}},"pdfCenterPanel":{"options":{"titleEnabled":false},"content":{"attribution":"Attribution"}},"resourcesLeftPanel":{"options":{"elideCount":40,"galleryThumbHeight":320,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90}},"dialogue":{"content":{"close":"Close"}},"downloadDialogue":{"content":{"download":"Download","entireFileAsOriginal":"Entire file","noneAvailable":"No download options are available.","preview":"Preview","title":"Download"}},"pdfHeaderPanel":{"content":{"emptyValue":"Please enter a value","first":"First","go":"Go","last":"Last","next":"Next","of":"of {0}","previous":"Previous"}},"loginDialogue":{"content":{"login":"Login","cancel":"Cancel"}},"settingsDialogue":{"content":{"locale":"Locale","pagingEnabled":"Two Page View","preserveViewport":"Preserve Zoom","title":"Settings","website":"more info"}},"contentLeftPanel":{}},"localisation":{"label":"English (GB)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Your browser does not support CORS, please upgrade to view this content.","authorisationFailedMessage":"Your log-in attempt did not appear to be successful. Please try again.","degradedResourceMessage":"Please log in to view at full quality.","degradedResourceLogin":"log in","forbiddenResourceMessage":"Your current access rights are insufficient to view this image"}} -------------------------------------------------------------------------------- /uv/lib/uv-pdf-extension.fr-FR.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"personnalisée","embed":"Intégrer","embedInstructions":"Pour afficher ce contenu sur votre site internet, copier-collez le code ci-dessous.","height":"Hauteur","iiif":"Manifeste IIIF","share":"Partager","shareInstructions":"Pour partager ce contenu, copier l'URL ci-dessous.","size":"Taille :","width":"Largeur"}},"footerPanel":{"options":{"bookmarkEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ajouter aux favoris","download":"Télécharger","embed":"Intégrer","exitFullScreen":"Quitter le mode plein écran","feedback":"Commentaire","fullScreen":"Affichage en plein écran","moreInfo":"Informations","open":"Ouvrir","share":"Partager"}},"genericDialogue":{"content":{"emptyValue":"veuillez saisir une valeur.","invalidNumber":"Veuillez saisir un nombre valide.","noMatches":"Aucune correspondance n'a été trouvée.","ok":"OK","pageNotFound":"Ce contenu ne contient pas de page avec le numéro indiqué. Veuillez essayer de basculer le mode de numérotation sur 'image'.","refresh":"Rafraîchir"}},"headerPanel":{},"helpDialogue":{"content":{"text":"texte d'exemple","title":"Aide"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Masquer les informations","collapseFull":"Masquer la galerie","description":"Description","expand":"Afficher les informations","expandFull":"Afficher la galerie","holdingText":"Votre module vient ici !","less":"moins","license":"Licence","logo":"Logo","more":"suite","noData":"Aucune donnée à afficher","page":"Page","title":"Informations","manifestHeader":"A propos du contenu","canvasHeader":"A propos de l'image","copyToClipboard":"Copier dans le presse-papiers","copiedToClipboard":"Copié dans le presse-papiers"}},"pdfCenterPanel":{"options":{"titleEnabled":false}},"resourcesLeftPanel":{"options":{"elideCount":40,"galleryThumbHeight":320,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90}},"authDialogue":{"content":{"cancel":"Annuler","confirm":"Confirmer"}},"clickThroughDialogue":{"content":{"viewTerms":"Lire les termes et les conditions d'utilisation"}},"contentLeftPanel":{"content":{"collapse":"Masquer les contenus","collapseFull":"Masquer la galerie","date":"date","expand":"Afficher les contenus","expandFull":"Afficher la galerie","index":"Index","manifestRanges":"Manifestes","searchResult":"{0} résultats","searchResults":"{0} résultats","sortBy":"Trier par :","thumbnails":"Vignettes","title":"Contenus","volume":"volume"}},"dialogue":{"content":{"close":"Fermer"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Vue actuelle {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Ouvre une nouvelle fenêtre","download":"Télécharger","downloadSelection":"Télécharger la sélection","downloadSelectionExplanation":"Ouvre une fenêtre pour sélectionner les pages à télécharger.","editSettings":"Modifier les paramètres","entireDocument":"Document entier ({0})","entireFileAsOriginal":"Fichier complet","noneAvailable":"Aucune option de téléchargement n'est disponible.","pagingNote":"Veuillez fermer l'affichage en double page pour accéder aux options supplémentaires.","preview":"Aperçu","title":"Télécharger","wholeImageHighRes":"Image {0} x {1}px ({2})","wholeImageHighResExplanation":"Ouvre une nouvelle fenêtre.","wholeImagesHighRes":"Images ({0})","wholeImagesHighResExplanation":"S'ouvre dans deux nouvelles fenêtres.","wholeImageLowResAsJpg":"Image {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Ouvre une nouvelle fenêtre."}},"loginDialogue":{"content":{"login":"Connexion","logout":"Déconnexion","cancel":"Annuler"}},"mobileFooterPanel":{"content":{"rotateRight":"Pivoter à droite","moreInfo":"Informations","zoomIn":"Zoom avant","zoomOut":"Zoom arrière"}},"multiSelectDialogue":{"content":{"select":"Télécharger","selectAll":"Tout sélectionner","title":"Sélectionner les pages à télécharger"}},"pagingHeaderPanel":{"content":{"close":"Fermer","emptyValue":"Veuillez saisir une valeur","first":"Premier","firstImage":"Première image","firstPage":"Première page","folio":"Folio","gallery":"Gallerie","go":"Aller","help":"Aide","image":"Image","last":"Dernier","lastImage":"Dernière image","lastPage":"Dernière page","next":"Suivant","nextImage":"Prochaine image","nextPage":"Page suivante","of":"de {0}","oneUp":"Affichage en mode page simple","page":"Page","pageSearchLabel":"Recherche par numéro de page.","previous":"Précédent","previousImage":"Image précédente","previousPage":"Page précédente","settings":"Paramètres","twoUp":"Affichage double page"}},"seadragonCenterPanel":{"content":{"attribution":"Attribution","goHome":"Retour","imageUnavailable":"Image non disponible","next":"Prochain","previous":"Précédent","rotateRight":"Pivoter à droite","zoomIn":"Zoomer","zoomOut":"Dézoomer"}},"restrictedDialogue":{"content":{"cancel":"Annuler"}},"searchFooterPanel":{"content":{"clearSearch":"Effacer","defaultLabel":"-","displaying":"{0} {1} de {2}","enterKeyword":"Saisir un mot","image":"image","imageCaps":"Image","instanceFound":"1 instance de '{0}' trouvée","instancesFound":"{0} instances de '{1}' trouvées","nextResult":"Résultat suivant","page":"page","pageCaps":"Page","previousResult":"Résultat précédent","print":"Imprimer","resultFoundFor":"résultat trouvé pour ","resultsFoundFor":"résultats trouvés pour","searchWithin":"Chercher dans ce document :"}},"settingsDialogue":{"content":{"locale":"Langues","navigatorEnabled":"Navigateur activé","clickToZoomEnabled":"Cliquer pour zoomer","pagingEnabled":"Affichage double page","preserveViewport":"Conserver le zoom","title":"Paramètres","website":"informations"}}},"localisation":{"label":"Français (FR)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Votre navigateur ne supporte pas CORS, veuillez mettre à jour votre navigateur pour afficher ce contenu.","authorisationFailedMessage":"Votre tentative de connexion semble avoir échoué. Veuillez réessayer.","canvasIndexOutOfRange":"Valeur d'index invalide pour la balise Canvas.","fallbackDegradedLabel":"Connexion","fallbackDegradedMessage":"Connectez-vous pour visualisez ce contenu en résolution maximale.","forbiddenResourceMessage":"Vos droits d'accès ne vous permettent pas de visualiser cette image","termsOfUse":"Conditions d'utilisation"}} -------------------------------------------------------------------------------- /uv/lib/uv-pdf-extension.sv-SE.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","pessimisticAccessControl":false,"rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"Anpassad","embed":"Bädda in","embedInstructions":"För att bädda in det här objektet i din egen webbplats, kopiera och klistra koden nedan.","height":"Höjd","iiif":"IIIF Manifest","share":"Dela","shareInstructions":"Kopiera länken nedan för att dela det här objektet.","size":"Storlek:","width":"Bredd"}},"footerPanel":{"options":{"bookmarkEnabled":false,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Lägg till bokmärke","download":"Ladda ner","embed":"Bädda in","exitFullScreen":"Avsluta helskärm","feedback":"Feedback","fullScreen":"Helskärm","moreInfo":"Mer information","open":"Öppna","share":"Dela"}},"genericDialogue":{"content":{"emptyValue":"ange ett värde.","invalidNumber":"Ange ett giltigt nummer.","noMatches":"Inga träffar hittades.","ok":"OK","pageNotFound":"Detta objekt har ingen sida med det nummer du angett. Testa att byta numreringsläge till 'bild'.","refresh":"Uppdatera"}},"headerPanel":{},"helpDialogue":{"content":{"text":"platshållartext","title":"Hjälp"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Upphov","collapse":"Fäll ihop information","collapseFull":"Fäll ihop galleri","description":"Beskrivning","expand":"Expandera information","expandFull":"Expandera galleri","holdingText":"Plats för din modul!","less":"mindre","license":"Licensvillkor","logo":"Logotyp","more":"mer","noData":"Ingen information att visa","page":"Sida","title":"Mer information","manifestHeader":"Om objektet","canvasHeader":"Om bilden","copyToClipboard":"Kopiera till urklipp","copiedToClipboard":"Kopierade till urklipp"}},"pdfCenterPanel":{"options":{"titleEnabled":false}},"resourcesLeftPanel":{"options":{"elideCount":40,"galleryThumbHeight":320,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90}},"authDialogue":{"content":{"cancel":"Avbryt","confirm":"Bekräfta"}},"clickThroughDialogue":{"content":{"viewTerms":"Läs fullständiga villkor"}},"contentLeftPanel":{"content":{"collapse":"Fäll ihop innehåll","collapseFull":"Fäll ihop galleri","date":"datum","expand":"Expandera innehåll","expandFull":"Expandera galleri","index":"Index","manifestRanges":"Manifest-omfång","searchResult":"{0} sökträffar","searchResults":"{0} sökträffar","sortBy":"Sortera efter:","thumbnails":"Småbilder","title":"Innehåll","volume":"volym"}},"dialogue":{"content":{"close":"Stäng"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Aktuell vy {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Öppnas i nytt fönster","download":"Ladda ner","downloadSelection":"Ladda ner valt område","downloadSelectionExplanation":"Öppnar dialog där du får välja sidor att ladda ner.","editSettings":"Ändra inställningar","entireDocument":"Hela dokumentet ({0})","entireFileAsOriginal":"Hela filen","noneAvailable":"Inga nedladdningsalternativ är tillgängliga.","pagingNote":"Stäng dubbelsidig vy för fler alternativ","preview":"Förhandsgranska","title":"Ladda ner","wholeImageHighRes":"Hela bilden {0} x {1}px ({2})","wholeImageHighResExplanation":"Öppnas i nytt fönster.","wholeImagesHighRes":"Hela bilder ({0})","wholeImagesHighResExplanation":"Öppnas i två nya fönster.","wholeImageLowResAsJpg":"Hela bilden {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Öppnas i nytt fönster."}},"loginDialogue":{"content":{"login":"Logga in","logout":"Logga ut","cancel":"Avbryt"}},"mobileFooterPanel":{"content":{"rotateRight":"Rotera höger","moreInfo":"Mer information","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"multiSelectDialogue":{"content":{"select":"Ladda ner","selectAll":"Markera alla","title":"Välj sidor att ladda ner"}},"pagingHeaderPanel":{"content":{"close":"Stäng","emptyValue":"Ange ett värde","first":"Första","firstImage":"Första bild","firstPage":"Första sidan","folio":"Folio","gallery":"Galleri","go":"Gå","help":"Hjälp","image":"Bild","last":"Sista","lastImage":"Sista bilden","lastPage":"Sista sidan","next":"Nästa","nextImage":"Nästa bild","nextPage":"Nästa sida","of":"av {0}","oneUp":"Enkelsidig vy","page":"Sida","pageSearchLabel":"Sök med sidnummer","previous":"Föregående","previousImage":"Föregående bild","previousPage":"Föregående sida","settings":"Inställningar","twoUp":"Dubbelsidig vy"}},"seadragonCenterPanel":{"content":{"attribution":"Upphov","goHome":"Visa hela sidan","imageUnavailable":"Bild ej tillgänglig","next":"Nästa","previous":"Föregående","rotateRight":"Rotera höger","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"avCenterPanel":{"content":{"currentTime":"Aktuell tid","delimiter":" - ","duration":"Speltid","mute":"Tyst","next":"Nästa","pause":"Paus","play":"Spela","previous":"Föregående"}},"restrictedDialogue":{"content":{"cancel":"Avbryt"}},"searchFooterPanel":{"content":{"clearSearch":"Rensa sökning","defaultLabel":"-","displaying":"{0} {1} av {2}","enterKeyword":"Ange sökord","image":"bild","imageCaps":"Bild","instanceFound":"1 instans av '{0}' hittades","instancesFound":"{0} instanser av '{1}' hittades","nextResult":"Nästa träff","page":"sida","pageCaps":"Sida","previousResult":"Föregående träff","print":"Skriv ut","resultFoundFor":"träff hittades för","resultsFoundFor":"träffar hittades för","searchWithin":"Sök inom detta objekt:"}},"settingsDialogue":{"content":{"locale":"Språk","navigatorEnabled":"Visa minivy","clickToZoomEnabled":"Zooma med musklick","pagingEnabled":"Dubbelsidig vy","preserveViewport":"Behåll zoomnivå","title":"Inställningar","website":"mer info"}}},"localisation":{"label":"Svenska","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Din webbläsare stöder inte CORS. Uppgradera den för att kunna se detta innehåll.","authorisationFailedMessage":"Din inloggning misslyckades. Vänligen försök igen.","canvasIndexOutOfRange":"Canvas-index ogiltigt.","fallbackDegradedLabel":"Logga in","fallbackDegradedMessage":"Logga in för att se bilden i bästa kvalitet.","forbiddenResourceMessage":"Du har inte behörighet att se den här bilden","termsOfUse":"Användningsvillkor"}} -------------------------------------------------------------------------------- /uv/lib/uv-seadragon-extension-dependencies.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return function (formats) { 3 | return { 4 | async: ['TreeComponent', 'GalleryComponent', 'MetadataComponent', 'openseadragon.min'] 5 | }; 6 | }; 7 | }); 8 | -------------------------------------------------------------------------------- /uv/lib/uv-seadragon-extension.cy-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":true,"theme":"uv-cy-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true,"zoomToBoundsEnabled":false},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":false,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":true,"branchNodesSelectable":false,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsCacheInvalidation":{"enabled":true,"paramType":"?"},"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Lleihau'r Cynnwys","collapseFull":"Lleihau'r Galeri","date":"Dyddiad","expand":"Ehangu'r Cynnwys","expandFull":"Ehangu'r Galeri","index":"Mynegai","searchResult":"{0} canlyniad chwilio","searchResults":"{0} canlyniad chwilio","sortBy":"Trefnu yn ôl:","thumbnails":"Bodluniau","title":"Cynnwys","volume":"cyfrol"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Cau"}},"downloadDialogue":{"options":{"confinedImageSize":1000,"currentViewDisabledPercentage":90,"maxImageWidth":5000,"optionsExplanatoryTextEnabled":false,"selectionEnabled":false},"content":{"currentViewAsJpg":"Delwedd ddethol {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Agor mewn dwy ffenest newydd.","download":"Lawrlwytho","downloadSelection":"Lawrlwytho'r detholiad","downloadSelectionExplanation":"Agor ffenest er mwyn dewis tudalennau i'w lawrlwytho.","editSettings":"Golygu'r dewisiadau","entireDocument":"Y Ddogfen Gyfan ({0})","entireFileAsOriginal":"Y ffeil gyfan","noneAvailable":"Nid oes unrhyw opsiynau lawrlwytho ar gael.","pagingNote":"Dad-ddewiswch 'Arddangos Dwy Dudalen' i weld dewisiadau pellach.","preview":"Rhagolwg","title":"Lawrlwytho","wholeImageHighRes":"Delwedd gyfan {0} x {1}px ({2})","wholeImageHighResExplanation":"Agor mewn ffenest newydd","wholeImagesHighRes":"Delweddau cyfan ({0})","wholeImagesHighResExplanation":"Agor mewn dwy ffenest newydd.","wholeImageLowResAsJpg":"Delwedd gyfan {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Agor mewn ffenest newydd"}},"footerPanel":{"options":{"autocompleteAllowWords":false,"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ychwanegu at nodau tudalen","download":"Lawrlwytho","embed":"Ymgorffori","exitFullScreen":"Dianc o'r sgrin lawn","feedback":"Adborth","fullScreen":"Sgrin lawn","moreInfo":"Mwy o Wybodaeth","open":"Agor","share":"Rhannu"}},"genericDialogue":{"content":{"emptyValue":"rhowch rif","invalidNumber":"Rhowch rif dilys","noMatches":"Dim canlyniad sy'n cyfateb.","ok":"GWELD","pageNotFound":"Nid yw'r eitem yn cynnwys tudalen gyda'r rhif a nodwyd. Ceisiwch cyfnewid y math i 'delwedd'.","refresh":"Ailosod"}},"headerPanel":{"options":{"centerOptionsEnabled":true,"localeToggleEnabled":false,"settingsButtonEnabled":true}},"helpDialogue":{"content":{"text":"testun i'w osod","title":"Cymorth"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Priodoledd","collapse":"Lleihau'r Wybodaeth","collapseFull":"Cuddio'r Galeri","description":"Disgrifiad","expand":"Ehangu'r Wybodaeth","expandFull":"Ehangu'r Galeri","holdingText":"Eich modiwl fan hyn!","less":"llai","license":"Trwydded","logo":"Logo","more":"mwy","noData":"Nid oes data i'w arddangos","page":"Tudalen","title":"Mwy o Wybodaeth","manifestHeader":"Am yr eitem","canvasHeader":"Am y ddelwedd","copyToClipboard":"Copïo i'r clipfwrdd","copiedToClipboard":"Copïwyd i'r clipfwrdd"}},"multiSelectDialogue":{"options":{"galleryThumbChunkedResizingEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"pageModeEnabled":true},"content":{"select":"Lawrlwytho","selectAll":"Dewis y cyfan","title":"Dewis Tudalennau i'w Lawrlwytho"}},"pagingHeaderPanel":{"options":{"autoCompleteBoxEnabled":true,"autocompleteAllowWords":false,"galleryButtonEnabled":true,"imageSelectionBoxEnabled":false,"pageModeEnabled":false,"pagingToggleEnabled":true},"content":{"close":"Cau","emptyValue":"Mewnosodwch werth","first":"gyntaf","firstImage":"Delwedd Gyntaf","firstPage":"Tudalen gyntaf","folio":"Ffolio","gallery":"Galeri","go":"GWELD","help":"Cymorth","image":"Delwedd","last":"Olaf","lastImage":"Delwedd Olaf","lastPage":"Tudalen Olaf","next":"Nesaf","nextImage":"Delwedd Nesaf","nextPage":"Tudalen Nesaf","of":"o {0}","oneUp":"Gweld un dudalen ar y tro","page":"Tudalen","previous":"Blaenorol","previousImage":"Delwedd Flaenorol","previousPage":"Tudalen Flaenorol","settings":"Dewisiadau","twoUp":"Gweld dwy dudalen ar y tro"}},"seadragonCenterPanel":{"options":{"animationTime":0.15,"autoHideControls":true,"requiredStatementEnabled":true,"blendTime":0,"constrainDuringPan":false,"controlsFadeAfterInactive":1500,"controlsFadeDelay":250,"controlsFadeLength":250,"defaultZoomLevel":0,"immediateRender":false,"maxZoomPixelRatio":1.25,"navigatorPosition":"BOTTOM_RIGHT","pageGap":50,"showHomeControl":false,"trimAttributionCount":150,"visibilityRatio":0.5},"content":{"attribution":"Priodoliad","goHome":"Gweld y maint gwreiddiol","imageUnavailable":"Nid oes delwedd ar gael","next":"nesaf","previous":"blaenorol","rotateRight":"Cylchdroi i'r dde","zoomIn":"Closio","zoomOut":"Gwrthglosio"}},"searchFooterPanel":{"options":{"elideDetailsTermsCount":20,"elideResultsTermsCount":5,"forceImageMode":false,"pageModeEnabled":true,"positionMarkerEnabled":true},"content":{"clearSearch":"Gwaredu","defaultLabel":"-","displaying":"{0} {1} o {2}","enterKeyword":"Mewnosodwch allweddair","image":"delwedd","imageCaps":"delwedd","instanceFound":"Dangos 1 canlyniad ar gyfer '{0}' ","instancesFound":"Dangos {0} canlyniad o '{1}' ","nextResult":"Canlyniad nesaf","page":"tudalen","pageCaps":"tudalen","previousResult":"Canlyniad blaenorol","print":"Argraffu","resultFoundFor":"canlyniad a geir ar gyfer","resultsFoundFor":"canlyniad ar gyfer","searchWithin":"Chwilio tu fewn i:"}},"settingsDialogue":{"content":{"locale":"Iaith","navigatorEnabled":"Ffenest llywio ar gael","clickToZoomEnabled":"Cliciwch gyda'r llygoden i glosio","pagingEnabled":"Arddangos dwy dudalen","preserveViewport":"Cadw'r lefel o glosio","title":"Dewisiadau","website":"mwy o wybodaeth"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true},"content":{"customSize":"dewisol","embed":"Ymgorffori","embedInstructions":"Er mwyn ymgorffori'r eitem hon ar eich gwefan, copïwch a gosodwch y cod isod.","height":"Hyd","iiif":"Maniffest IIIF","share":"Rhannu","shareInstructions":"Er mwyn rhannu'r eitem hon, copïwch y URL isod.","size":"Maint:","width":"Lled"}},"clickThroughDialogue":{"content":{"viewTerms":"Darllenwch y Telerau a'r Amodau Llawn"}},"loginDialogue":{"content":{"login":"Mewngofnodi","logout":"Allgofnodi","cancel":"Canslo"}},"mobileFooterPanel":{"content":{"rotateRight":"Cylchdroi i'r dde","moreInfo":"Mwy o Wybodaeth","zoomIn":"Closio","zoomOut":"Gwrthglosio"}},"restrictedDialogue":{"content":{"cancel":"Canslo"}}},"localisation":{"label":"Cymraeg","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"},{"name":"xx-XX","label":"English (GB) (xx-XX)"}]},"content":{"authCORSError":"Mae angen diweddaru'ch porwr er mwyn galluogi rhannu adnoddau traws-safle.","authorisationFailedMessage":"Ni lwyddoch i fewngofnodi. Rhowch gynnig arni eto.","canvasIndexOutOfRange":"Canfas yn rhy fawr i'w arddangos (ceisiwch eto)","fallbackDegradedLabel":"Mewngofnodi","fallbackDegradedMessage":"Mewngofnodwch i weld y cynnwys hwn gyda phenderfyniad llawn.","forbiddenResourceMessage":"Nid yw'ch hawliau mynediad presennol yn ddigonol i weld y ddelwedd hon","termsOfUse":"Telerau Defnydd"}} -------------------------------------------------------------------------------- /uv/lib/uv-seadragon-extension.en-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":true,"theme":"uv-en-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true,"zoomToBoundsEnabled":false},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":false,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":true,"branchNodesSelectable":false,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsCacheInvalidation":{"enabled":true,"paramType":"?"},"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Collapse Contents","collapseFull":"Collapse Gallery","date":"date","expand":"Expand Contents","expandFull":"Expand Gallery","index":"Index","manifestRanges":"Manifest Ranges","searchResult":"{0} search result","searchResults":"{0} search results","sortBy":"Sort By:","thumbnails":"Thumbnails","title":"Contents","volume":"volume"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Close"}},"downloadDialogue":{"options":{"confinedImageSize":1000,"currentViewDisabledPercentage":90,"maxImageWidth":5000,"optionsExplanatoryTextEnabled":false,"selectionEnabled":false},"content":{"currentViewAsJpg":"Current view {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Opens in a new window","download":"Download","downloadSelection":"Download Selection","downloadSelectionExplanation":"Opens a dialogue to select which pages to download.","editSettings":"Edit Settings","entireDocument":"Entire document ({0})","entireFileAsOriginal":"Entire file","noneAvailable":"No download options are available.","pagingNote":"Please turn off Two Page View for additional options.","preview":"Preview","title":"Download","wholeImageHighRes":"Whole image {0} x {1}px ({2})","wholeImageHighResExplanation":"Opens in a new window.","wholeImagesHighRes":"Whole images ({0})","wholeImagesHighResExplanation":"Opens in two new windows.","wholeImageLowResAsJpg":"Whole image {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Opens in a new window."}},"footerPanel":{"options":{"autocompleteAllowWords":false,"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"bookmark":"Add to bookmarks","download":"Download","embed":"Embed","exitFullScreen":"Exit Full Screen","feedback":"Feedback","fullScreen":"Full Screen","moreInfo":"More Information","open":"Open","share":"Share"}},"genericDialogue":{"content":{"emptyValue":"please enter a value.","invalidNumber":"Please enter a valid number.","noMatches":"No matches were found.","ok":"OK","pageNotFound":"This item does not contain a page with the number you entered. Try switching the numbering mode to 'image'.","refresh":"Refresh"}},"headerPanel":{"options":{"centerOptionsEnabled":true,"localeToggleEnabled":false,"settingsButtonEnabled":true}},"helpDialogue":{"content":{"text":"placeholder text","title":"Help"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Collapse Information","collapseFull":"Collapse Gallery","description":"Description","expand":"Expand Information","expandFull":"Expand Gallery","holdingText":"Your module goes here!","less":"less","license":"License","logo":"Logo","more":"more","noData":"No data to display","page":"Page","title":"More Information","manifestHeader":"About the item","canvasHeader":"About the image","copyToClipboard":"Copy to clipboard","copiedToClipboard":"Copied to clipboard"}},"multiSelectDialogue":{"options":{"galleryThumbChunkedResizingEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"pageModeEnabled":true},"content":{"select":"Download","selectAll":"Select All","title":"Select Pages for Download"}},"pagingHeaderPanel":{"options":{"autoCompleteBoxEnabled":true,"autocompleteAllowWords":false,"galleryButtonEnabled":true,"imageSelectionBoxEnabled":false,"pageModeEnabled":false,"pagingToggleEnabled":true},"content":{"close":"Close","emptyValue":"Please enter a value","first":"First","firstImage":"First Image","firstPage":"First Page","folio":"Folio","gallery":"Gallery","go":"Go","help":"Help","image":"Image","last":"Last","lastImage":"Last Image","lastPage":"Last Page","next":"Next","nextImage":"Next Image","nextPage":"Next Page","of":"of {0}","oneUp":"Single page view","page":"Page","pageSearchLabel":"Search by Page Number","previous":"Previous","previousImage":"Previous Image","previousPage":"Previous Page","settings":"Settings","twoUp":"Two page view"}},"seadragonCenterPanel":{"options":{"animationTime":0.15,"autoHideControls":true,"requiredStatementEnabled":true,"blendTime":0,"constrainDuringPan":false,"controlsFadeAfterInactive":1500,"controlsFadeDelay":250,"controlsFadeLength":250,"defaultZoomLevel":0,"immediateRender":false,"maxZoomPixelRatio":1.25,"navigatorPosition":"BOTTOM_RIGHT","pageGap":50,"showHomeControl":false,"trimAttributionCount":150,"visibilityRatio":0.5},"content":{"attribution":"Attribution","goHome":"Go Home","imageUnavailable":"Image Unavailable","next":"Next","previous":"Previous","rotateRight":"Rotate Right","zoomIn":"Zoom In","zoomOut":"Zoom Out"}},"searchFooterPanel":{"options":{"elideDetailsTermsCount":20,"elideResultsTermsCount":10,"forceImageMode":false,"pageModeEnabled":true,"positionMarkerEnabled":true},"content":{"clearSearch":"Clear","defaultLabel":"-","displaying":"{0} {1} of {2}","enterKeyword":"Enter Keyword","image":"image","imageCaps":"Image","instanceFound":"1 instance of '{0}' found","instancesFound":"{0} instances of '{1}' found","nextResult":"Next Result","page":"page","pageCaps":"Page","previousResult":"Previous Result","print":"Print","resultFoundFor":"result found for","resultsFoundFor":"results found for","searchWithin":"Search within this item:"}},"settingsDialogue":{"content":{"locale":"Locale","navigatorEnabled":"Navigator Enabled","clickToZoomEnabled":"Mouse Click To Zoom","pagingEnabled":"Two Page View","preserveViewport":"Preserve Zoom","title":"Settings","website":"more info"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true},"content":{"customSize":"custom","embed":"Embed","embedInstructions":"To embed this item in your own website, copy and paste the code below.","height":"Height","iiif":"IIIF Manifest","share":"Share","shareInstructions":"To share this item, copy the URL below.","size":"Size:","width":"Width"}},"authDialogue":{"content":{"cancel":"Cancel","confirm":"Confirm"}},"clickThroughDialogue":{"content":{"viewTerms":"Read Full Terms and Conditions"}},"loginDialogue":{"content":{"login":"Login","logout":"Logout","cancel":"Cancel"}},"mobileFooterPanel":{"content":{"rotateRight":"Rotate Right","moreInfo":"More Information","zoomIn":"Zoom In","zoomOut":"Zoom Out"}},"restrictedDialogue":{"content":{"cancel":"Cancel"}}},"localisation":{"label":"English (GB)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"},{"name":"xx-XX","label":"English (GB) (xx-XX)"}]},"content":{"authCORSError":"Your browser does not support CORS, please upgrade to view this content.","authorisationFailedMessage":"Your log-in attempt did not appear to be successful. Please try again.","canvasIndexOutOfRange":"Canvas index out of range.","fallbackDegradedLabel":"Login","fallbackDegradedMessage":"Please log in to view this content at full resolution.","forbiddenResourceMessage":"Your current access rights are insufficient to view this image","termsOfUse":"Terms of Use"}} -------------------------------------------------------------------------------- /uv/lib/uv-seadragon-extension.fr-FR.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":true,"theme":"uv-en-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true,"zoomToBoundsEnabled":false},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":false,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":true,"branchNodesSelectable":false,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsCacheInvalidation":{"enabled":true,"paramType":"?"},"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Masquer les contenus","collapseFull":"Masquer la galerie","date":"date","expand":"Afficher les contenus","expandFull":"Afficher la galerie","index":"Index","manifestRanges":"Manifestes","searchResult":"{0} résultats","searchResults":"{0} résultats","sortBy":"Trier par :","thumbnails":"Vignettes","title":"Contenus","volume":"volume"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Fermer"}},"downloadDialogue":{"options":{"confinedImageSize":1000,"currentViewDisabledPercentage":90,"maxImageWidth":5000,"optionsExplanatoryTextEnabled":false,"selectionEnabled":false},"content":{"currentViewAsJpg":"Vue actuelle {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Ouvre une nouvelle fenêtre","download":"Télécharger","downloadSelection":"Télécharger la sélection","downloadSelectionExplanation":"Ouvre une fenêtre pour sélectionner les pages à télécharger.","editSettings":"Modifier les paramètres","entireDocument":"Document entier ({0})","entireFileAsOriginal":"Fichier complet","noneAvailable":"Aucune option de téléchargement n'est disponible.","pagingNote":"Veuillez fermer l'affichage en double page pour accéder aux options supplémentaires.","preview":"Aperçu","title":"Télécharger","wholeImageHighRes":"Image {0} x {1}px ({2})","wholeImageHighResExplanation":"Ouvre une nouvelle fenêtre.","wholeImagesHighRes":"Images ({0})","wholeImagesHighResExplanation":"S'ouvre dans deux nouvelles fenêtres.","wholeImageLowResAsJpg":"Image {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Ouvre une nouvelle fenêtre."}},"footerPanel":{"options":{"autocompleteAllowWords":false,"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ajouter aux favoris","download":"Télécharger","embed":"Intégrer","exitFullScreen":"Quitter le mode plein écran","feedback":"Commentaire","fullScreen":"Affichage en plein écran","moreInfo":"Informations","open":"Ouvrir","share":"Partager"}},"genericDialogue":{"content":{"emptyValue":"veuillez saisir une valeur.","invalidNumber":"Veuillez saisir un nombre valide.","noMatches":"Aucune correspondance n'a été trouvée.","ok":"OK","pageNotFound":"Ce contenu ne contient pas de page avec le numéro indiqué. Veuillez essayer de basculer le mode de numérotation sur 'image'.","refresh":"Rafraîchir"}},"headerPanel":{"options":{"centerOptionsEnabled":true,"localeToggleEnabled":false,"settingsButtonEnabled":true}},"helpDialogue":{"content":{"text":"texte d'exemple","title":"Aide"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Masquer les informations","collapseFull":"Masquer la galerie","description":"Description","expand":"Afficher les informations","expandFull":"Afficher la galerie","holdingText":"Votre module vient ici !","less":"moins","license":"Licence","logo":"Logo","more":"suite","noData":"Aucune donnée à afficher","page":"Page","title":"Informations","manifestHeader":"A propos du contenu","canvasHeader":"A propos de l'image","copyToClipboard":"Copier dans le presse-papiers","copiedToClipboard":"Copié dans le presse-papiers"}},"multiSelectDialogue":{"options":{"galleryThumbChunkedResizingEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"pageModeEnabled":true},"content":{"select":"Télécharger","selectAll":"Tout sélectionner","title":"Sélectionner les pages à télécharger"}},"pagingHeaderPanel":{"options":{"autoCompleteBoxEnabled":true,"autocompleteAllowWords":false,"galleryButtonEnabled":true,"imageSelectionBoxEnabled":false,"pageModeEnabled":false,"pagingToggleEnabled":true},"content":{"close":"Fermer","emptyValue":"Veuillez saisir une valeur","first":"Premier","firstImage":"Première image","firstPage":"Première page","folio":"Folio","gallery":"Gallerie","go":"Aller","help":"Aide","image":"Image","last":"Dernier","lastImage":"Dernière image","lastPage":"Dernière page","next":"Suivant","nextImage":"Prochaine image","nextPage":"Page suivante","of":"de {0}","oneUp":"Affichage en mode page simple","page":"Page","pageSearchLabel":"Recherche par numéro de page.","previous":"Précédent","previousImage":"Image précédente","previousPage":"Page précédente","settings":"Paramètres","twoUp":"Affichage double page"}},"seadragonCenterPanel":{"options":{"animationTime":0.15,"autoHideControls":true,"requiredStatementEnabled":true,"blendTime":0,"constrainDuringPan":false,"controlsFadeAfterInactive":1500,"controlsFadeDelay":250,"controlsFadeLength":250,"defaultZoomLevel":0,"immediateRender":false,"maxZoomPixelRatio":1.25,"navigatorPosition":"BOTTOM_RIGHT","pageGap":50,"showHomeControl":false,"trimAttributionCount":150,"visibilityRatio":0.5},"content":{"attribution":"Attribution","goHome":"Retour","imageUnavailable":"Image non disponible","next":"Prochain","previous":"Précédent","rotateRight":"Pivoter à droite","zoomIn":"Zoomer","zoomOut":"Dézoomer"}},"searchFooterPanel":{"options":{"elideDetailsTermsCount":20,"elideResultsTermsCount":10,"forceImageMode":false,"pageModeEnabled":true,"positionMarkerEnabled":true},"content":{"clearSearch":"Effacer","defaultLabel":"-","displaying":"{0} {1} de {2}","enterKeyword":"Saisir un mot","image":"image","imageCaps":"Image","instanceFound":"1 instance de '{0}' trouvée","instancesFound":"{0} instances de '{1}' trouvées","nextResult":"Résultat suivant","page":"page","pageCaps":"Page","previousResult":"Résultat précédent","print":"Imprimer","resultFoundFor":"résultat trouvé pour ","resultsFoundFor":"résultats trouvés pour","searchWithin":"Chercher dans ce document :"}},"settingsDialogue":{"content":{"locale":"Langues","navigatorEnabled":"Navigateur activé","clickToZoomEnabled":"Cliquer pour zoomer","pagingEnabled":"Affichage double page","preserveViewport":"Conserver le zoom","title":"Paramètres","website":"informations"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true},"content":{"customSize":"personnalisée","embed":"Intégrer","embedInstructions":"Pour afficher ce contenu sur votre site internet, copier-collez le code ci-dessous.","height":"Hauteur","iiif":"Manifeste IIIF","share":"Partager","shareInstructions":"Pour partager ce contenu, copier l'URL ci-dessous.","size":"Taille :","width":"Largeur"}},"authDialogue":{"content":{"cancel":"Annuler","confirm":"Confirmer"}},"clickThroughDialogue":{"content":{"viewTerms":"Lire les termes et les conditions d'utilisation"}},"loginDialogue":{"content":{"login":"Connexion","logout":"Déconnexion","cancel":"Annuler"}},"mobileFooterPanel":{"content":{"rotateRight":"Pivoter à droite","moreInfo":"Informations","zoomIn":"Zoom avant","zoomOut":"Zoom arrière"}},"restrictedDialogue":{"content":{"cancel":"Annuler"}}},"localisation":{"label":"Français (FR)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"},{"name":"xx-XX","label":"English (GB) (xx-XX)"}]},"content":{"authCORSError":"Votre navigateur ne supporte pas CORS, veuillez mettre à jour votre navigateur pour afficher ce contenu.","authorisationFailedMessage":"Votre tentative de connexion semble avoir échoué. Veuillez réessayer.","canvasIndexOutOfRange":"Valeur d'index invalide pour la balise Canvas.","fallbackDegradedLabel":"Connexion","fallbackDegradedMessage":"Connectez-vous pour visualisez ce contenu en résolution maximale.","forbiddenResourceMessage":"Vos droits d'accès ne vous permettent pas de visualiser cette image","termsOfUse":"Conditions d'utilisation"}} -------------------------------------------------------------------------------- /uv/lib/uv-seadragon-extension.sv-SE.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":true,"theme":"uv-en-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true,"zoomToBoundsEnabled":false},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":false,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":true,"branchNodesSelectable":false,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsCacheInvalidation":{"enabled":true,"paramType":"?"},"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Fäll ihop innehåll","collapseFull":"Fäll ihop galleri","date":"datum","expand":"Expandera innehåll","expandFull":"Expandera galleri","index":"Index","manifestRanges":"Manifest-omfång","searchResult":"{0} sökträffar","searchResults":"{0} sökträffar","sortBy":"Sortera efter:","thumbnails":"Småbilder","title":"Innehåll","volume":"volym"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Stäng"}},"downloadDialogue":{"options":{"confinedImageSize":1000,"currentViewDisabledPercentage":90,"maxImageWidth":5000,"optionsExplanatoryTextEnabled":false,"selectionEnabled":false},"content":{"currentViewAsJpg":"Aktuell vy {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Öppnas i nytt fönster","download":"Ladda ner","downloadSelection":"Ladda ner valt område","downloadSelectionExplanation":"Öppnar dialog där du får välja sidor att ladda ner.","editSettings":"Ändra inställningar","entireDocument":"Hela dokumentet ({0})","entireFileAsOriginal":"Hela filen","noneAvailable":"Inga nedladdningsalternativ är tillgängliga.","pagingNote":"Stäng dubbelsidig vy för fler alternativ","preview":"Förhandsgranska","title":"Ladda ner","wholeImageHighRes":"Hela bilden {0} x {1}px ({2})","wholeImageHighResExplanation":"Öppnas i nytt fönster.","wholeImagesHighRes":"Hela bilder ({0})","wholeImagesHighResExplanation":"Öppnas i två nya fönster.","wholeImageLowResAsJpg":"Hela bilden {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Öppnas i nytt fönster."}},"footerPanel":{"options":{"autocompleteAllowWords":false,"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"bookmark":"Lägg till bokmärke","download":"Ladda ner","embed":"Bädda in","exitFullScreen":"Avsluta helskärm","feedback":"Feedback","fullScreen":"Helskärm","moreInfo":"Mer information","open":"Öppna","share":"Dela"}},"genericDialogue":{"content":{"emptyValue":"ange ett värde.","invalidNumber":"Ange ett giltigt nummer.","noMatches":"Inga träffar hittades.","ok":"OK","pageNotFound":"Detta objekt har ingen sida med det nummer du angett. Testa att byta numreringsläge till 'bild'.","refresh":"Uppdatera"}},"headerPanel":{"options":{"centerOptionsEnabled":true,"localeToggleEnabled":false,"settingsButtonEnabled":true}},"helpDialogue":{"content":{"text":"platshållartext","title":"Hjälp"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Upphov","collapse":"Fäll ihop information","collapseFull":"Fäll ihop galleri","description":"Beskrivning","expand":"Expandera information","expandFull":"Expandera galleri","holdingText":"Plats för din modul!","less":"mindre","license":"Licensvillkor","logo":"Logotyp","more":"mer","noData":"Ingen information att visa","page":"Sida","title":"Mer information","manifestHeader":"Om objektet","canvasHeader":"Om bilden","copyToClipboard":"Kopiera till urklipp","copiedToClipboard":"Kopierade till urklipp"}},"multiSelectDialogue":{"options":{"galleryThumbChunkedResizingEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"pageModeEnabled":true},"content":{"select":"Ladda ner","selectAll":"Markera alla","title":"Välj sidor att ladda ner"}},"pagingHeaderPanel":{"options":{"autoCompleteBoxEnabled":true,"autocompleteAllowWords":false,"galleryButtonEnabled":true,"imageSelectionBoxEnabled":false,"pageModeEnabled":false,"pagingToggleEnabled":true},"content":{"close":"Stäng","emptyValue":"Ange ett värde","first":"Första","firstImage":"Första bild","firstPage":"Första sidan","folio":"Folio","gallery":"Galleri","go":"Gå","help":"Hjälp","image":"Bild","last":"Sista","lastImage":"Sista bilden","lastPage":"Sista sidan","next":"Nästa","nextImage":"Nästa bild","nextPage":"Nästa sida","of":"av {0}","oneUp":"Enkelsidig vy","page":"Sida","pageSearchLabel":"Sök med sidnummer","previous":"Föregående","previousImage":"Föregående bild","previousPage":"Föregående sida","settings":"Inställningar","twoUp":"Dubbelsidig vy"}},"seadragonCenterPanel":{"options":{"animationTime":0.15,"autoHideControls":true,"requiredStatementEnabled":true,"blendTime":0,"constrainDuringPan":false,"controlsFadeAfterInactive":1500,"controlsFadeDelay":250,"controlsFadeLength":250,"defaultZoomLevel":0,"immediateRender":false,"maxZoomPixelRatio":1.25,"navigatorPosition":"BOTTOM_RIGHT","pageGap":50,"showHomeControl":false,"trimAttributionCount":150,"visibilityRatio":0.5},"content":{"attribution":"Upphov","goHome":"Visa hela sidan","imageUnavailable":"Bild ej tillgänglig","next":"Nästa","previous":"Föregående","rotateRight":"Rotera höger","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"searchFooterPanel":{"options":{"elideDetailsTermsCount":20,"elideResultsTermsCount":10,"forceImageMode":false,"pageModeEnabled":true,"positionMarkerEnabled":true},"content":{"clearSearch":"Rensa sökning","defaultLabel":"-","displaying":"{0} {1} av {2}","enterKeyword":"Ange sökord","image":"bild","imageCaps":"Bild","instanceFound":"1 instans av '{0}' hittades","instancesFound":"{0} instanser av '{1}' hittades","nextResult":"Nästa träff","page":"sida","pageCaps":"Sida","previousResult":"Föregående träff","print":"Skriv ut","resultFoundFor":"träff hittades för","resultsFoundFor":"träffar hittades för","searchWithin":"Sök inom detta objekt:"}},"settingsDialogue":{"content":{"locale":"Språk","navigatorEnabled":"Visa minivy","clickToZoomEnabled":"Zooma med musklick","pagingEnabled":"Dubbelsidig vy","preserveViewport":"Behåll zoomnivå","title":"Inställningar","website":"mer info"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true},"content":{"customSize":"Anpassad","embed":"Bädda in","embedInstructions":"För att bädda in det här objektet i din egen webbplats, kopiera och klistra koden nedan.","height":"Höjd","iiif":"IIIF Manifest","share":"Dela","shareInstructions":"Kopiera länken nedan för att dela det här objektet.","size":"Storlek:","width":"Bredd"}},"authDialogue":{"content":{"cancel":"Avbryt","confirm":"Bekräfta"}},"clickThroughDialogue":{"content":{"viewTerms":"Läs fullständiga villkor"}},"loginDialogue":{"content":{"login":"Logga in","logout":"Logga ut","cancel":"Avbryt"}},"mobileFooterPanel":{"content":{"rotateRight":"Rotera höger","moreInfo":"Mer information","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"avCenterPanel":{"content":{"currentTime":"Aktuell tid","delimiter":" - ","duration":"Speltid","mute":"Tyst","next":"Nästa","pause":"Paus","play":"Spela","previous":"Föregående"}},"restrictedDialogue":{"content":{"cancel":"Avbryt"}}},"localisation":{"label":"Svenska","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"},{"name":"xx-XX","label":"English (GB) (xx-XX)"}]},"content":{"authCORSError":"Din webbläsare stöder inte CORS. Uppgradera den för att kunna se detta innehåll.","authorisationFailedMessage":"Din inloggning misslyckades. Vänligen försök igen.","canvasIndexOutOfRange":"Canvas-index ogiltigt.","fallbackDegradedLabel":"Logga in","fallbackDegradedMessage":"Logga in för att se bilden i bästa kvalitet.","forbiddenResourceMessage":"Du har inte behörighet att se den här bilden","termsOfUse":"Användningsvillkor"}} -------------------------------------------------------------------------------- /uv/lib/uv-seadragon-extension.xx-XX.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"allowStealFocus":false,"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"metrics":[{"type":"watch","minWidth":0,"maxWidth":312,"minHeight":0,"maxHeight":390},{"type":"mobileportrait","minWidth":312,"maxWidth":415,"minHeight":640,"maxHeight":813},{"type":"mobilelandscape","minWidth":640,"maxWidth":813,"minHeight":360,"maxHeight":415},{"type":"desktop","minWidth":800,"maxWidth":100000,"minHeight":415,"maxHeight":100000}],"multiSelectionMimeType":"application/zip","navigatorEnabled":true,"openTemplate":"http://universalviewer.io?manifest={0}","overrideFullScreen":false,"pagingEnabled":true,"pagingOptionEnabled":true,"pessimisticAccessControl":false,"preserveViewport":false,"rightPanelEnabled":true,"saveUserSettings":false,"clickToZoomEnabled":true,"searchWithinEnabled":true,"termsOfUseEnabled":true,"theme":"uv-en-GB-theme","tokenStorage":"session","useArrowKeysToNavigate":false,"zoomToSearchResultEnabled":true,"zoomToBoundsEnabled":false},"modules":{"contentLeftPanel":{"options":{"autoExpandTreeEnabled":false,"autoExpandTreeIfFewerThan":20,"branchNodesExpandOnClick":true,"branchNodesSelectable":false,"defaultToTreeEnabled":false,"defaultToTreeIfGreaterThan":0,"elideCount":40,"expandFullEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"tabOrder":"","thumbsCacheInvalidation":{"enabled":true,"paramType":"?"},"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"contents":"CONTENTS (xx-XX)","index":"Index (xx-XX)","thumbnails":"Thumbnails (xx-XX)"}},"dialogue":{"topCloseButtonEnabled":false,"content":{"close":"Close (xx-XX)"}},"downloadDialogue":{"options":{"confinedImageSize":1000,"currentViewDisabledPercentage":90,"maxImageWidth":5000,"optionsExplanatoryTextEnabled":false,"selectionEnabled":false},"content":{"currentViewAsJpg":"Current view (jpg) (xx-XX)","download":"Download (xx-XX)","editSettings":"Edit Settings (xx-XX)","entireDocument":"Entire document ({0}) (xx-XX)","entireFileAsOriginal":"Entire file (xx-XX)","noneAvailable":"No download options are available. (xx-XX)","pagingNote":"Please turn off Two Page View for additional options. (xx-XX)","preview":"Preview (xx-XX)","title":"Download (xx-XX)","wholeImageHighRes":"Whole image high res ({0}) (xx-XX)","wholeImageLowResAsJpg":"Whole image low res (jpg) (xx-XX)"}},"footerPanel":{"options":{"autocompleteAllowWords":false,"bookmarkEnabled":false,"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"fullscreenEnabled":true,"minimiseButtons":true,"moreInfoEnabled":true,"openEnabled":false,"printEnabled":false,"shareEnabled":true},"content":{"embed":"Embed (xx-XX)","exitFullScreen":"Exit Full Screen (xx-XX)","fullScreen":"Full Screen (xx-XX)"}},"genericDialogue":{"content":{"emptyValue":"please enter a value (xx-XX)","invalidNumber":"Please enter a valid number (xx-XX)","ok":"OK (xx-XX)","pageNotFound":"This item does not contain a page with the number you entered. Try switching the numbering mode to 'image' (xx-XX)","refresh":"Refresh (xx-XX)"}},"headerPanel":{"options":{"centerOptionsEnabled":true,"localeToggleEnabled":false,"settingsButtonEnabled":true}},"helpDialogue":{"content":{"text":"placeholder text (xx-XX)","title":"Help (xx-XX)"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"holdingText":"Your module goes here! (xx-XX)","less":"less (xx-XX)","more":"more (xx-XX)","noData":"No data to display (xx-XX)","title":"MORE INFORMATION (xx-XX)"}},"multiSelectDialogue":{"options":{"galleryThumbChunkedResizingEnabled":true,"galleryThumbChunkedResizingThreshold":400,"galleryThumbHeight":320,"galleryThumbLoadPadding":3,"galleryThumbWidth":200,"pageModeEnabled":true}},"pagingHeaderPanel":{"options":{"autoCompleteBoxEnabled":true,"autocompleteAllowWords":false,"galleryButtonEnabled":true,"imageSelectionBoxEnabled":false,"pageModeEnabled":false,"pagingToggleEnabled":true},"content":{"close":"Close (xx-XX)","emptyValue":"Please enter a value (xx-XX)","first":"First (xx-XX)","folio":"Folio (xx-XX)","go":"Go (xx-XX)","help":"Help (xx-XX)","image":"Image (xx-XX)","last":"Last (xx-XX)","next":"Next (xx-XX)","of":"of {0} (xx-XX)","oneUp":"Single page view (xx-XX)","page":"Page (xx-XX)","previous":"Previous (xx-XX)","settings":"Settings (xx-XX)","twoUp":"Two page view (xx-XX)"}},"seadragonCenterPanel":{"options":{"animationTime":0.15,"autoHideControls":true,"requiredStatementEnabled":true,"blendTime":0,"constrainDuringPan":false,"controlsFadeAfterInactive":1500,"controlsFadeDelay":250,"controlsFadeLength":250,"defaultZoomLevel":0,"immediateRender":false,"maxZoomPixelRatio":1.25,"navigatorPosition":"BOTTOM_RIGHT","pageGap":50,"showHomeControl":false,"trimAttributionCount":150,"visibilityRatio":0.5},"content":{"acknowledgements":"Acknowledgements (xx-XX)","goHome":"Go Home (xx-XX)","imageUnavailable":"Image Unavailable (xx-XX)","next":"Next (xx-XX)","previous":"Previous (xx-XX)","rotateRight":"Rotate Right (xx-XX)","zoomIn":"Zoom In (xx-XX)","zoomOut":"Zoom Out (xx-XX)"}},"searchFooterPanel":{"options":{"elideDetailsTermsCount":20,"elideResultsTermsCount":10,"forceImageMode":false,"pageModeEnabled":true,"positionMarkerEnabled":true},"content":{"clearSearch":"Clear Search (xx-XX)","defaultLabel":"- (xx-XX)","displaying":"Displaying {0} {1} of {2} (xx-XX)","enterKeyword":"Enter Keyword (xx-XX)","image":"image (xx-XX)","imageCaps":"Image (xx-XX)","instanceFound":"1 instance of '{0}' found (xx-XX)","instancesFound":"{0} instances of '{1}' found (xx-XX)","nextResult":"Next Result (xx-XX)","page":"page (xx-XX)","pageCaps":"Page (xx-XX)","previousResult":"Previous Result (xx-XX)","resultFoundFor":"result found for (xx-XX)","resultsFoundFor":"results found for (xx-XX)","searchWithin":"Search within this item: (xx-XX)"}},"settingsDialogue":{"content":{"locale":"Locale (xx-XX)","pagingEnabled":"Two Page View (xx-XX)","preserveViewport":"Preserve Zoom (xx-XX)","title":"Settings (xx-XX)","website":"more info (xx-XX)"}},"shareDialogue":{"options":{"embedTemplate":"","instructionsEnabled":false,"shareFrameEnabled":true}},"clickThroughDialogue":{"content":{"viewTerms":"Read Full Terms and Conditions (xx-XX)"}},"embedDialogue":{"content":{"customSize":"Custom Size (xx-XX)","height":"Height (xx-XX)","instructions":"To embed this item in your own website, copy and paste the code below: (xx-XX)","title":"Embed (xx-XX)","width":"Width (xx-XX)"}}},"localisation":{"label":"English (GB) (xx-XX)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"},{"name":"xx-XX","label":"English (GB) (xx-XX)"}]},"content":{"canvasIndexOutOfRange":"Canvas index out of range. (xx-XX)","degradedResourceMessage":"Please log in to view at full quality. (xx-XX)","degradedResourceLogin":"log in (xx-XX)"}} -------------------------------------------------------------------------------- /uv/lib/uv-virtex-extension-dependencies.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | return function (formats) { 3 | return { 4 | sync: ['three.min'], 5 | async: ['VRControls', 'VREffect', 'stats.min', 'OBJLoader', 'MTLLoader', 'PLYLoader', 'GLTFLoader', 'Detector', 'WebVR', 'virtex', 'MetadataComponent'] 6 | }; 7 | }; 8 | }); 9 | -------------------------------------------------------------------------------- /uv/lib/uv-virtex-extension.cy-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","rightPanelEnabled":true,"theme":"uv-cy-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"arfer","embed":"gwreiddio","embedInstructions":"Er mwyn ymgorffori'r eitem hon ar eich gwefan, cop�wch a gosodwch y cod isod.","height":"Hyd","iiif":"IIIF Manifest","share":"Rhannu","shareInstructions":"I rannu yr eitem hon, copïwch y URL isod.","size":"maint:","width":"Lled"}},"footerPanel":{"options":{"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ychwanegu at nodau tudalen","download":"Lawrlwytho","embed":"Ymgorffori","exitFullScreen":"Dianc o'r sgrin lawn","fullScreen":"Sgrin lawn","moreInfo":"Mwy o Wybodaeth","open":"agored","share":"Rhannu"}},"genericDialogue":{"content":{"ok":"GWELD"}},"headerPanel":{"content":{"close":"Cau","help":"Cymorth","settings":"Dewisiadau"}},"helpDialogue":{"content":{"text":"testun i'w osod","title":"Cymorth"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Priodoledd","collapse":"Lleihau'r Wybodaeth","collapseFull":"Cuddio'r Galeri","description":"Disgrifiad","expand":"Ehangu'r Wybodaeth","expandFull":"Ehangu'r Galeri","holdingText":"Eich modiwl fan hyn!","less":"llai","license":"Trwydded","logo":"Logo","more":"mwy","noData":"Nid oes data i'w arddangos","page":"tudalen","title":"Mwy o Wybodaeth","manifestHeader":"Am yr eitem","canvasHeader":"Am y ddelwedd","copyToClipboard":"Copïo i'r clipfwrdd","copiedToClipboard":"Copïwyd i'r clipfwrdd"}},"contentLeftPanel":{"options":{"elideCount":40,"galleryThumbHeight":320,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90}},"virtexCenterPanel":{"options":{"showStats":false,"trimAttributionCount":150,"vrEnabled":false},"content":{"attribution":"Priodoliad","zoomIn":"chwyddo Mewn","zoomOut":"Zoom Out","vr":"VR"}},"dialogue":{"content":{"close":"Cau"}},"downloadDialogue":{"content":{"download":"Lawrlwytho","entireFileAsOriginal":"Y ffeil gyfan","noneAvailable":"Nid oes unrhyw opsiynau lawrlwytho ar gael.","preview":"Rhagolwg","title":"Lawrlwytho"}},"loginDialogue":{"content":{"login":"Mewngofnodi","cancel":"Diddymu"}},"mediaelementCenterPanel":{"content":{}},"settingsDialogue":{"content":{"locale":"Iaith","pagingEnabled":"Arddangos dwy dudalen","preserveViewport":"Cadw'r lefel o glosio","title":"Dewisiadau","website":"mwy o wybodaeth"}}},"localisation":{"label":"Cymraeg","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Eich porwr yn peidio cefnogi CORS, os gwelwch yn dda uwchraddio i weld y cynnwys hwn.","authorisationFailedMessage":"Nid oedd yn ymddangos eich ymgais mewngofnodi i fod yn llwyddiannus . Trio eto os gwelwch yn dda.","degradedResourceMessage":"Os gwelwch yn dda mewngofnodwch i weld yn ansawdd llawn.","degradedResourceLogin":"Mewngofnodi","forbiddenResourceMessage":"Eich hawliau mynediad presennol yn annigonol i weld llun hwn"}} -------------------------------------------------------------------------------- /uv/lib/uv-virtex-extension.en-GB.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"custom","embed":"Embed","embedInstructions":"To embed this item in your own website, copy and paste the code below.","height":"Height","iiif":"IIIF Manifest","share":"Share","shareInstructions":"To share this item, copy the URL below.","size":"Size:","width":"Width"}},"footerPanel":{"options":{"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Add to bookmarks","download":"Download","embed":"Embed","exitFullScreen":"Exit Full Screen","fullScreen":"Full Screen","moreInfo":"More Information","open":"Open","share":"Share"}},"genericDialogue":{"content":{"ok":"OK"}},"headerPanel":{"content":{"close":"Close","help":"Help","settings":"Settings"}},"helpDialogue":{"content":{"text":"placeholder text","title":"Help"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Collapse Information","collapseFull":"Collapse Gallery","description":"Description","expand":"Expand Information","expandFull":"Expand Gallery","holdingText":"Your module goes here!","less":"less","license":"License","logo":"Logo","more":"more","noData":"No data to display","page":"Page","title":"More Information","manifestHeader":"About the item","canvasHeader":"About the image","copyToClipboard":"Copy to clipboard","copiedToClipboard":"Copied to clipboard"}},"contentLeftPanel":{"options":{"elideCount":40,"galleryThumbHeight":320,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90}},"virtexCenterPanel":{"options":{"showStats":false,"trimAttributionCount":150,"vrEnabled":false},"content":{"attribution":"Attribution","zoomIn":"Zoom In","zoomOut":"Zoom Out","vr":"VR"}},"dialogue":{"content":{"close":"Close"}},"downloadDialogue":{"content":{"download":"Download","entireFileAsOriginal":"Entire file","noneAvailable":"No download options are available.","preview":"Preview","title":"Download"}},"loginDialogue":{"content":{"login":"Login","cancel":"Cancel"}},"mediaelementCenterPanel":{"content":{}},"settingsDialogue":{"content":{"locale":"Locale","pagingEnabled":"Two Page View","preserveViewport":"Preserve Zoom","title":"Settings","website":"more info"}}},"localisation":{"label":"English (GB)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Your browser does not support CORS, please upgrade to view this content.","authorisationFailedMessage":"Your log-in attempt did not appear to be successful. Please try again.","degradedResourceMessage":"Please log in to view at full quality.","degradedResourceLogin":"log in","forbiddenResourceMessage":"Your current access rights are insufficient to view this image"}} -------------------------------------------------------------------------------- /uv/lib/uv-virtex-extension.fr-FR.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"personnalisée","embed":"Intégrer","embedInstructions":"Pour afficher ce contenu sur votre site internet, copier-collez le code ci-dessous.","height":"Hauteur","iiif":"Manifeste IIIF","share":"Partager","shareInstructions":"Pour partager ce contenu, copier l'URL ci-dessous.","size":"Taille :","width":"Largeur"}},"footerPanel":{"options":{"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Ajouter aux favoris","download":"Télécharger","embed":"Intégrer","exitFullScreen":"Quitter le mode plein écran","feedback":"Commentaire","fullScreen":"Affichage en plein écran","moreInfo":"Informations","open":"Ouvrir","share":"Partager"}},"genericDialogue":{"content":{"emptyValue":"veuillez saisir une valeur.","invalidNumber":"Veuillez saisir un nombre valide.","noMatches":"Aucune correspondance n'a été trouvée.","ok":"OK","pageNotFound":"Ce contenu ne contient pas de page avec le numéro indiqué. Veuillez essayer de basculer le mode de numérotation sur 'image'.","refresh":"Rafraîchir"}},"headerPanel":{},"helpDialogue":{"content":{"text":"texte d'exemple","title":"Aide"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Attribution","collapse":"Masquer les informations","collapseFull":"Masquer la galerie","description":"Description","expand":"Afficher les informations","expandFull":"Afficher la galerie","holdingText":"Votre module vient ici !","less":"moins","license":"Licence","logo":"Logo","more":"suite","noData":"Aucune donnée à afficher","page":"Page","title":"Informations","manifestHeader":"A propos du contenu","canvasHeader":"A propos de l'image","copyToClipboard":"Copier dans le presse-papiers","copiedToClipboard":"Copié dans le presse-papiers"}},"contentLeftPanel":{"options":{"elideCount":40,"galleryThumbHeight":320,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Masquer les contenus","collapseFull":"Masquer la galerie","date":"date","expand":"Afficher les contenus","expandFull":"Afficher la galerie","index":"Index","manifestRanges":"Manifestes","searchResult":"{0} résultats","searchResults":"{0} résultats","sortBy":"Trier par :","thumbnails":"Vignettes","title":"Contenus","volume":"volume"}},"virtexCenterPanel":{"options":{"showStats":false,"trimAttributionCount":150,"vrEnabled":false}},"authDialogue":{"content":{"cancel":"Annuler","confirm":"Confirmer"}},"clickThroughDialogue":{"content":{"viewTerms":"Lire les termes et les conditions d'utilisation"}},"dialogue":{"content":{"close":"Fermer"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Vue actuelle {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Ouvre une nouvelle fenêtre","download":"Télécharger","downloadSelection":"Télécharger la sélection","downloadSelectionExplanation":"Ouvre une fenêtre pour sélectionner les pages à télécharger.","editSettings":"Modifier les paramètres","entireDocument":"Document entier ({0})","entireFileAsOriginal":"Fichier complet","noneAvailable":"Aucune option de téléchargement n'est disponible.","pagingNote":"Veuillez fermer l'affichage en double page pour accéder aux options supplémentaires.","preview":"Aperçu","title":"Télécharger","wholeImageHighRes":"Image {0} x {1}px ({2})","wholeImageHighResExplanation":"Ouvre une nouvelle fenêtre.","wholeImagesHighRes":"Images ({0})","wholeImagesHighResExplanation":"S'ouvre dans deux nouvelles fenêtres.","wholeImageLowResAsJpg":"Image {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Ouvre une nouvelle fenêtre."}},"loginDialogue":{"content":{"login":"Connexion","logout":"Déconnexion","cancel":"Annuler"}},"mobileFooterPanel":{"content":{"rotateRight":"Pivoter à droite","moreInfo":"Informations","zoomIn":"Zoom avant","zoomOut":"Zoom arrière"}},"multiSelectDialogue":{"content":{"select":"Télécharger","selectAll":"Tout sélectionner","title":"Sélectionner les pages à télécharger"}},"pagingHeaderPanel":{"content":{"close":"Fermer","emptyValue":"Veuillez saisir une valeur","first":"Premier","firstImage":"Première image","firstPage":"Première page","folio":"Folio","gallery":"Gallerie","go":"Aller","help":"Aide","image":"Image","last":"Dernier","lastImage":"Dernière image","lastPage":"Dernière page","next":"Suivant","nextImage":"Prochaine image","nextPage":"Page suivante","of":"de {0}","oneUp":"Affichage en mode page simple","page":"Page","pageSearchLabel":"Recherche par numéro de page.","previous":"Précédent","previousImage":"Image précédente","previousPage":"Page précédente","settings":"Paramètres","twoUp":"Affichage double page"}},"seadragonCenterPanel":{"content":{"attribution":"Attribution","goHome":"Retour","imageUnavailable":"Image non disponible","next":"Prochain","previous":"Précédent","rotateRight":"Pivoter à droite","zoomIn":"Zoomer","zoomOut":"Dézoomer"}},"restrictedDialogue":{"content":{"cancel":"Annuler"}},"searchFooterPanel":{"content":{"clearSearch":"Effacer","defaultLabel":"-","displaying":"{0} {1} de {2}","enterKeyword":"Saisir un mot","image":"image","imageCaps":"Image","instanceFound":"1 instance de '{0}' trouvée","instancesFound":"{0} instances de '{1}' trouvées","nextResult":"Résultat suivant","page":"page","pageCaps":"Page","previousResult":"Résultat précédent","print":"Imprimer","resultFoundFor":"résultat trouvé pour ","resultsFoundFor":"résultats trouvés pour","searchWithin":"Chercher dans ce document :"}},"settingsDialogue":{"content":{"locale":"Langues","navigatorEnabled":"Navigateur activé","clickToZoomEnabled":"Cliquer pour zoomer","pagingEnabled":"Affichage double page","preserveViewport":"Conserver le zoom","title":"Paramètres","website":"informations"}}},"localisation":{"label":"Français (FR)","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Votre navigateur ne supporte pas CORS, veuillez mettre à jour votre navigateur pour afficher ce contenu.","authorisationFailedMessage":"Votre tentative de connexion semble avoir échoué. Veuillez réessayer.","canvasIndexOutOfRange":"Valeur d'index invalide pour la balise Canvas.","fallbackDegradedLabel":"Connexion","fallbackDegradedMessage":"Connectez-vous pour visualisez ce contenu en résolution maximale.","forbiddenResourceMessage":"Vos droits d'accès ne vous permettent pas de visualiser cette image","termsOfUse":"Conditions d'utilisation"}} -------------------------------------------------------------------------------- /uv/lib/uv-virtex-extension.sv-SE.config.json: -------------------------------------------------------------------------------- 1 | {"options":{"authAPIVersion":1,"bookmarkThumbHeight":150,"bookmarkThumbWidth":90,"dropEnabled":true,"footerPanelEnabled":true,"headerPanelEnabled":true,"leftPanelEnabled":true,"limitLocales":false,"openTemplate":"http://universalviewer.io?manifest={0}","rightPanelEnabled":true,"theme":"uv-en-GB-theme"},"modules":{"shareDialogue":{"options":{"embedTemplate":""},"content":{"customSize":"Anpassad","embed":"Bädda in","embedInstructions":"För att bädda in det här objektet i din egen webbplats, kopiera och klistra koden nedan.","height":"Höjd","iiif":"IIIF Manifest","share":"Dela","shareInstructions":"Kopiera länken nedan för att dela det här objektet.","size":"Storlek:","width":"Bredd"}},"footerPanel":{"options":{"downloadEnabled":true,"embedEnabled":false,"feedbackEnabled":false,"minimiseButtons":true,"openEnabled":false,"shareEnabled":true},"content":{"bookmark":"Lägg till bokmärke","download":"Ladda ner","embed":"Bädda in","exitFullScreen":"Avsluta helskärm","feedback":"Feedback","fullScreen":"Helskärm","moreInfo":"Mer information","open":"Öppna","share":"Dela"}},"genericDialogue":{"content":{"emptyValue":"ange ett värde.","invalidNumber":"Ange ett giltigt nummer.","noMatches":"Inga träffar hittades.","ok":"OK","pageNotFound":"Detta objekt har ingen sida med det nummer du angett. Testa att byta numreringsläge till 'bild'.","refresh":"Uppdatera"}},"headerPanel":{},"helpDialogue":{"content":{"text":"platshållartext","title":"Hjälp"}},"moreInfoRightPanel":{"options":{"canvasDisplayOrder":"","canvasExclude":"","copyToClipboardEnabled":false,"manifestDisplayOrder":"","manifestExclude":"","panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":false,"rtlLanguageCodes":"ar, ara, dv, div, he, heb, ur, urd","showAllLanguages":false,"textLimit":4,"textLimitType":"lines"},"content":{"attribution":"Upphov","collapse":"Fäll ihop information","collapseFull":"Fäll ihop galleri","description":"Beskrivning","expand":"Expandera information","expandFull":"Expandera galleri","holdingText":"Plats för din modul!","less":"mindre","license":"Licensvillkor","logo":"Logotyp","more":"mer","noData":"Ingen information att visa","page":"Sida","title":"Mer information","manifestHeader":"Om objektet","canvasHeader":"Om bilden","copyToClipboard":"Kopiera till urklipp","copiedToClipboard":"Kopierade till urklipp"}},"contentLeftPanel":{"options":{"elideCount":40,"galleryThumbHeight":320,"galleryThumbWidth":200,"oneColThumbHeight":320,"oneColThumbWidth":200,"pageModeEnabled":true,"panelAnimationDuration":250,"panelCollapsedWidth":30,"panelExpandedWidth":255,"panelOpen":true,"thumbsEnabled":true,"thumbsExtraHeight":8,"thumbsImageFadeInDuration":300,"thumbsLoadRange":15,"treeEnabled":true,"twoColThumbHeight":150,"twoColThumbWidth":90},"content":{"collapse":"Fäll ihop innehåll","collapseFull":"Fäll ihop galleri","date":"datum","expand":"Expandera innehåll","expandFull":"Expandera galleri","index":"Index","manifestRanges":"Manifest-omfång","searchResult":"{0} sökträffar","searchResults":"{0} sökträffar","sortBy":"Sortera efter:","thumbnails":"Småbilder","title":"Innehåll","volume":"volym"}},"virtexCenterPanel":{"options":{"showStats":false,"trimAttributionCount":150,"vrEnabled":false}},"authDialogue":{"content":{"cancel":"Avbryt","confirm":"Bekräfta"}},"clickThroughDialogue":{"content":{"viewTerms":"Läs fullständiga villkor"}},"dialogue":{"content":{"close":"Stäng"}},"downloadDialogue":{"content":{"currentViewAsJpg":"Aktuell vy {0} x {1}px (jpg)","currentViewAsJpgExplanation":"Öppnas i nytt fönster","download":"Ladda ner","downloadSelection":"Ladda ner valt område","downloadSelectionExplanation":"Öppnar dialog där du får välja sidor att ladda ner.","editSettings":"Ändra inställningar","entireDocument":"Hela dokumentet ({0})","entireFileAsOriginal":"Hela filen","noneAvailable":"Inga nedladdningsalternativ är tillgängliga.","pagingNote":"Stäng dubbelsidig vy för fler alternativ","preview":"Förhandsgranska","title":"Ladda ner","wholeImageHighRes":"Hela bilden {0} x {1}px ({2})","wholeImageHighResExplanation":"Öppnas i nytt fönster.","wholeImagesHighRes":"Hela bilder ({0})","wholeImagesHighResExplanation":"Öppnas i två nya fönster.","wholeImageLowResAsJpg":"Hela bilden {0} x {1}px (jpg)","wholeImageLowResAsJpgExplanation":"Öppnas i nytt fönster."}},"loginDialogue":{"content":{"login":"Logga in","logout":"Logga ut","cancel":"Avbryt"}},"mobileFooterPanel":{"content":{"rotateRight":"Rotera höger","moreInfo":"Mer information","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"multiSelectDialogue":{"content":{"select":"Ladda ner","selectAll":"Markera alla","title":"Välj sidor att ladda ner"}},"pagingHeaderPanel":{"content":{"close":"Stäng","emptyValue":"Ange ett värde","first":"Första","firstImage":"Första bild","firstPage":"Första sidan","folio":"Folio","gallery":"Galleri","go":"Gå","help":"Hjälp","image":"Bild","last":"Sista","lastImage":"Sista bilden","lastPage":"Sista sidan","next":"Nästa","nextImage":"Nästa bild","nextPage":"Nästa sida","of":"av {0}","oneUp":"Enkelsidig vy","page":"Sida","pageSearchLabel":"Sök med sidnummer","previous":"Föregående","previousImage":"Föregående bild","previousPage":"Föregående sida","settings":"Inställningar","twoUp":"Dubbelsidig vy"}},"seadragonCenterPanel":{"content":{"attribution":"Upphov","goHome":"Visa hela sidan","imageUnavailable":"Bild ej tillgänglig","next":"Nästa","previous":"Föregående","rotateRight":"Rotera höger","zoomIn":"Zooma in","zoomOut":"Zooma ut"}},"avCenterPanel":{"content":{"currentTime":"Aktuell tid","delimiter":" - ","duration":"Speltid","mute":"Tyst","next":"Nästa","pause":"Paus","play":"Spela","previous":"Föregående"}},"restrictedDialogue":{"content":{"cancel":"Avbryt"}},"searchFooterPanel":{"content":{"clearSearch":"Rensa sökning","defaultLabel":"-","displaying":"{0} {1} av {2}","enterKeyword":"Ange sökord","image":"bild","imageCaps":"Bild","instanceFound":"1 instans av '{0}' hittades","instancesFound":"{0} instanser av '{1}' hittades","nextResult":"Nästa träff","page":"sida","pageCaps":"Sida","previousResult":"Föregående träff","print":"Skriv ut","resultFoundFor":"träff hittades för","resultsFoundFor":"träffar hittades för","searchWithin":"Sök inom detta objekt:"}},"settingsDialogue":{"content":{"locale":"Språk","navigatorEnabled":"Visa minivy","clickToZoomEnabled":"Zooma med musklick","pagingEnabled":"Dubbelsidig vy","preserveViewport":"Behåll zoomnivå","title":"Inställningar","website":"mer info"}}},"localisation":{"label":"Svenska","locales":[{"name":"cy-GB","label":"Cymraeg"},{"name":"en-GB","label":"English (GB)"},{"name":"fr-FR","label":"Français (FR)"},{"name":"sv-SE","label":"Svenska"}]},"content":{"authCORSError":"Din webbläsare stöder inte CORS. Uppgradera den för att kunna se detta innehåll.","authorisationFailedMessage":"Din inloggning misslyckades. Vänligen försök igen.","canvasIndexOutOfRange":"Canvas-index ogiltigt.","fallbackDegradedLabel":"Logga in","fallbackDegradedMessage":"Logga in för att se bilden i bästa kvalitet.","forbiddenResourceMessage":"Du har inte behörighet att se den här bilden","termsOfUse":"Användningsvillkor"}} -------------------------------------------------------------------------------- /uv/themes/uv-cy-gb-theme/assets/uv-mediaelementcenterpanel-module/mejs-controls.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /uv/themes/uv-en-gb-theme/assets/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalViewer/uv-app-starter/caff869e38e364cc29c19866168dc3614152273d/uv/themes/uv-en-gb-theme/assets/hamburger.png -------------------------------------------------------------------------------- /uv/themes/uv-en-gb-theme/assets/uv-mediaelementcenterpanel-module/mejs-controls.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /uv/uv.css: -------------------------------------------------------------------------------- 1 | 2 | .uv { 3 | background-color: #000; 4 | } 5 | 6 | .uv.loading { 7 | background-repeat: no-repeat; 8 | background-position: 50% 50%; 9 | background-image: url(data:image/gif;base64,R0lGODlhFAAUAMQSAGxsbFpaWnh4eEZGRhwcHD8/PzU1NVJSUisrKwgICH5+fkxMTGNjYyUlJXJycnt7exISEoCAgAAAAP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1OTFjMzhjNS0xZmQyLTg5NGUtYjMyZi1kYTNkZWQ5NmQ5YjMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Qzc0OEE1NDA5OTMzMTFFNUFBRjI5MkI3NTFFODJFRTYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Qzc0OEE1M0Y5OTMzMTFFNUFBRjI5MkI3NTFFODJFRTYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTkxYzM4YzUtMWZkMi04OTRlLWIzMmYtZGEzZGVkOTZkOWIzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5MWMzOGM1LTFmZDItODk0ZS1iMzJmLWRhM2RlZDk2ZDliMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAkAABIALAAAAAAUABQAAAVAoCSOZGmeaKqmSeu+LRpEdG0Hsq1H+DnvtZ7pB+TlikYfMjlcCktE4JMU3U1HVd1VlL2hCIiweExYmc/otHoUAgAh+QQJAAASACwAAAAAFAAUAAAFWqAkjmRpnmgqEgyhnkykHNA7GlEePUXyJg6dzoFQDYTI1gnyQCIVC1PA6YySGlSkwEcCZIWGEu6bA5gSCwW5gWJlAy+EV6io/QrN3MA2ShwUW3wkBGyChocSIQAh+QQFAAASACwAAAAAFAAUAAAFXKAkjmRpnmhaJsuimoYQKcQrNkCkR8wLBbsgApUYKIJBR8LUcCCfBRPh+Aw+IKZDFXkwQR7bHc1UCO96q1yYUTMhtg6DioFUDJaq6S6AtUkWEQANfiMJcoSIiSUhADs=); 10 | } -------------------------------------------------------------------------------- /uv/uv.html: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 20 | 59 | 60 | 61 | 62 |
63 | 64 | 85 | 86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /uv/uv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UniversalViewer/uv-app-starter/caff869e38e364cc29c19866168dc3614152273d/uv/uv.zip --------------------------------------------------------------------------------