Skip to content

Commit 074a6eb

Browse files
committed
Add translation for UI label.
1 parent a8fef11 commit 074a6eb

3 files changed

+26
-5
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,20 @@ lightbox.init();
2828
</script>
2929
```
3030

31+
You can also translate the tooltip label of the fullscreen icon:
32+
33+
```
34+
const fullscreenPlugin = new PhotoSwipeFullscreen(lightbox, {
35+
fullscreenTitle: 'Toggle fullscreen'
36+
});
37+
```
38+
3139
## Changelog
3240

41+
### 1.0.2
42+
43+
Added option to translate the UI label.
44+
3345
### 1.0.1
3446

3547
Bugfix: the fullscreen button will only be displayed when the fullscreen API is supported.

photoswipe-fullscreen.esm.js

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
/**
2-
* PhotoSwipe fullscreen plugin v1.0.0
2+
* PhotoSwipe fullscreen plugin v1.0.2
33
*
44
* Inspired by https://github.com/dimsemenov/PhotoSwipe/issues/1759
55
*
66
* By https://arnowelzel.de
77
*/
88

9+
const defaultOptions = {
10+
fullscreenTitle: 'Toggle fullscreen'
11+
};
12+
913
class PhotoSwipeFullscreen {
10-
constructor(lightbox) {
14+
constructor(lightbox, options) {
15+
this.options = {
16+
...defaultOptions,
17+
...options
18+
};
19+
1120
this.lightbox = lightbox;
1221

1322
this.lightbox.on('init', () => {
@@ -29,7 +38,7 @@ class PhotoSwipeFullscreen {
2938
this.lightbox.on('uiRegister', () => {
3039
this.pswp.ui.registerElement({
3140
name: 'fullscreen-button',
32-
title: 'Toggle fullscreen',
41+
title: this.options.fullscreenTitle,
3342
order: 9,
3443
isButton: true,
3544
html: fullscreenSVG,

photoswipe-fullscreen.esm.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)