├── .Rbuildignore ├── .covrignore ├── .github ├── .gitignore └── workflows │ ├── check-full.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── and-package.R ├── and.R ├── and_languages.R ├── normalize.R ├── set_language.R ├── staticimports.R ├── sysdata.rda └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── and.Rproj ├── codecov.yml ├── cran-comments.md ├── data-raw ├── accented_vowels.R ├── and_languages.R ├── list_patterns.R └── plural_rules.R ├── data └── and_languages.rda ├── inst └── po │ ├── af │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ak │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── am │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ar │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── as │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ast │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── az │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── be │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── bg │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── bgn │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── blo │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── bn │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── br │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── brx │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── bs │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ca │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ccp │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ceb │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── chr │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── cs │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── csw │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── cv │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── cy │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── da │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── de │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── doi │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── dsb │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── dz │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ee │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── el │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_AG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_AI │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_AT │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_AU │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_BB │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_BE │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_BM │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_BS │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_BW │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_BZ │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_CA │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_CC │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_CH │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_CK │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_CM │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_CX │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_CY │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_DE │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_DG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_DK │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_DM │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_ER │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_FI │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_FJ │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_FK │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_FM │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_GB │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_GD │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_GG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_GH │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_GI │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_GM │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_GY │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_HK │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_ID │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_IE │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_IL │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_IM │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_IN │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_IO │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_JE │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_JM │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_KE │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_KI │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_KN │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_KY │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_LC │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_LR │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_LS │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_MG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_MO │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_MS │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_MT │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_MU │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_MV │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_MW │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_MY │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_NA │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_NF │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_NG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_NL │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_NR │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_NU │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_NZ │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_PG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_PK │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_PN │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_PW │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_RW │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SB │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SC │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SD │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SE │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SH │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SI │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SL │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SS │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SX │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_SZ │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_TC │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_TK │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_TO │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_TT │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_TV │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_TZ │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_UG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_VC │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_VG │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_VU │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_WS │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_ZA │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_ZM │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── en_ZW │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── es │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── et │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── eu │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── fa │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── fi │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── fil │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── fo │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── fr │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── fur │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── fy │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ga │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── gd │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── gl │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── gsw │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── gu │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ha │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── he │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── hi │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── hr │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── hsb │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── hu │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── hy │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ia │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── id │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ie │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ig │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ii │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── is │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── it │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ja │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── jgo │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── jv │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ka │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── kea │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── kgp │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── kk │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── km │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── kn │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ko │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── kok │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ks │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ksh │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ku │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── kxv │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ky │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── lb │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── lld │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── lo │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── lt │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── lv │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── mai │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── mi │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── mk │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ml │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── mn │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── mni │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── mr │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ms │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── mt │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── my │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── nb │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ne │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── nl │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── nn │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── no │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── or │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── os │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── pa │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── pcm │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── pl │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ps │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── pt │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── qu │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── rm │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ro │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ru │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sa │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sah │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sc │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sd │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── se │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── si │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sk │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sl │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── so │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sq │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sr │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── su │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sv │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── sw │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── syr │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ta │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── te │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── tg │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── th │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ti │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── tk │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── to │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── tr │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── tt │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── uk │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── ur │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── uz │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── vec │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── vi │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── wae │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── xnr │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── yi │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── yo │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── yo_BJ │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── yrl │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── yue │ └── LC_MESSAGES │ │ └── R-and.mo │ ├── zh │ └── LC_MESSAGES │ │ └── R-and.mo │ └── zu │ └── LC_MESSAGES │ └── R-and.mo ├── man ├── and-package.Rd ├── and.Rd ├── and_languages.Rd ├── figures │ ├── logo.png │ ├── logo.pptx │ ├── logo_old.ai │ └── logo_old.png └── set_language.Rd ├── po ├── R-af.po ├── R-ak.po ├── R-am.po ├── R-and.pot ├── R-ar.po ├── R-as.po ├── R-ast.po ├── R-az.po ├── R-be.po ├── R-bg.po ├── R-bgn.po ├── R-blo.po ├── R-bn.po ├── R-br.po ├── R-brx.po ├── R-bs.po ├── R-ca.po ├── R-ccp.po ├── R-ceb.po ├── R-chr.po ├── R-cs.po ├── R-csw.po ├── R-cv.po ├── R-cy.po ├── R-da.po ├── R-de.po ├── R-doi.po ├── R-dsb.po ├── R-dz.po ├── R-ee.po ├── R-el.po ├── R-en.po ├── R-en_AG.po ├── R-en_AI.po ├── R-en_AT.po ├── R-en_AU.po ├── R-en_BB.po ├── R-en_BE.po ├── R-en_BM.po ├── R-en_BS.po ├── R-en_BW.po ├── R-en_BZ.po ├── R-en_CA.po ├── R-en_CC.po ├── R-en_CH.po ├── R-en_CK.po ├── R-en_CM.po ├── R-en_CX.po ├── R-en_CY.po ├── R-en_DE.po ├── R-en_DG.po ├── R-en_DK.po ├── R-en_DM.po ├── R-en_ER.po ├── R-en_FI.po ├── R-en_FJ.po ├── R-en_FK.po ├── R-en_FM.po ├── R-en_GB.po ├── R-en_GD.po ├── R-en_GG.po ├── R-en_GH.po ├── R-en_GI.po ├── R-en_GM.po ├── R-en_GY.po ├── R-en_HK.po ├── R-en_ID.po ├── R-en_IE.po ├── R-en_IL.po ├── R-en_IM.po ├── R-en_IN.po ├── R-en_IO.po ├── R-en_JE.po ├── R-en_JM.po ├── R-en_KE.po ├── R-en_KI.po ├── R-en_KN.po ├── R-en_KY.po ├── R-en_LC.po ├── R-en_LR.po ├── R-en_LS.po ├── R-en_MG.po ├── R-en_MO.po ├── R-en_MS.po ├── R-en_MT.po ├── R-en_MU.po ├── R-en_MV.po ├── R-en_MW.po ├── R-en_MY.po ├── R-en_NA.po ├── R-en_NF.po ├── R-en_NG.po ├── R-en_NL.po ├── R-en_NR.po ├── R-en_NU.po ├── R-en_NZ.po ├── R-en_PG.po ├── R-en_PK.po ├── R-en_PN.po ├── R-en_PW.po ├── R-en_RW.po ├── R-en_SB.po ├── R-en_SC.po ├── R-en_SD.po ├── R-en_SE.po ├── R-en_SG.po ├── R-en_SH.po ├── R-en_SI.po ├── R-en_SL.po ├── R-en_SS.po ├── R-en_SX.po ├── R-en_SZ.po ├── R-en_TC.po ├── R-en_TK.po ├── R-en_TO.po ├── R-en_TT.po ├── R-en_TV.po ├── R-en_TZ.po ├── R-en_UG.po ├── R-en_VC.po ├── R-en_VG.po ├── R-en_VU.po ├── R-en_WS.po ├── R-en_ZA.po ├── R-en_ZM.po ├── R-en_ZW.po ├── R-es.po ├── R-et.po ├── R-eu.po ├── R-fa.po ├── R-fi.po ├── R-fil.po ├── R-fo.po ├── R-fr.po ├── R-fur.po ├── R-fy.po ├── R-ga.po ├── R-gd.po ├── R-gl.po ├── R-gsw.po ├── R-gu.po ├── R-ha.po ├── R-he.po ├── R-hi.po ├── R-hr.po ├── R-hsb.po ├── R-hu.po ├── R-hy.po ├── R-ia.po ├── R-id.po ├── R-ie.po ├── R-ig.po ├── R-ii.po ├── R-is.po ├── R-it.po ├── R-ja.po ├── R-jgo.po ├── R-jv.po ├── R-ka.po ├── R-kea.po ├── R-kgp.po ├── R-kk.po ├── R-km.po ├── R-kn.po ├── R-ko.po ├── R-kok.po ├── R-ks.po ├── R-ksh.po ├── R-ku.po ├── R-kxv.po ├── R-ky.po ├── R-lb.po ├── R-lld.po ├── R-lo.po ├── R-lt.po ├── R-lv.po ├── R-mai.po ├── R-mi.po ├── R-mk.po ├── R-ml.po ├── R-mn.po ├── R-mni.po ├── R-mr.po ├── R-ms.po ├── R-mt.po ├── R-my.po ├── R-nb.po ├── R-ne.po ├── R-nl.po ├── R-nn.po ├── R-no.po ├── R-or.po ├── R-os.po ├── R-pa.po ├── R-pcm.po ├── R-pl.po ├── R-ps.po ├── R-pt.po ├── R-qu.po ├── R-rm.po ├── R-ro.po ├── R-ru.po ├── R-sa.po ├── R-sah.po ├── R-sc.po ├── R-sd.po ├── R-se.po ├── R-si.po ├── R-sk.po ├── R-sl.po ├── R-so.po ├── R-sq.po ├── R-sr.po ├── R-su.po ├── R-sv.po ├── R-sw.po ├── R-syr.po ├── R-ta.po ├── R-te.po ├── R-tg.po ├── R-th.po ├── R-ti.po ├── R-tk.po ├── R-to.po ├── R-tr.po ├── R-tt.po ├── R-uk.po ├── R-ur.po ├── R-uz.po ├── R-vec.po ├── R-vi.po ├── R-wae.po ├── R-xnr.po ├── R-yi.po ├── R-yo.po ├── R-yo_BJ.po ├── R-yrl.po ├── R-yue.po ├── R-zh.po └── R-zu.po └── tests ├── testthat.R └── testthat ├── test-and.R └── test-utils.R /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^and\.Rproj$ 2 | ^\.Rproj\.user$ 3 | ^data-raw$ 4 | ^README\.Rmd$ 5 | ^LICENSE\.md$ 6 | ^\.github$ 7 | ^_pkgdown\.yml$ 8 | ^docs$ 9 | ^pkgdown$ 10 | ^codecov\.yml$ 11 | ^cran-comments\.md$ 12 | ^CRAN-SUBMISSION$ 13 | ^\.covrignore$ 14 | -------------------------------------------------------------------------------- /.covrignore: -------------------------------------------------------------------------------- 1 | r/staticimports.R 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .po~ 3 | .Rhistory 4 | .Rdata 5 | .httr-oauth 6 | .DS_Store 7 | docs 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: and authors 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(and) 4 | export(or) 5 | export(set_language) 6 | -------------------------------------------------------------------------------- /R/and-package.R: -------------------------------------------------------------------------------- 1 | #' @keywords internal 2 | #' @aliases and-package 3 | "_PACKAGE" 4 | 5 | ## usethis namespace: start 6 | ## usethis namespace: end 7 | NULL 8 | -------------------------------------------------------------------------------- /R/normalize.R: -------------------------------------------------------------------------------- 1 | # @staticimports pkg:stringstatic 2 | # str_replace_all 3 | 4 | # @staticimports pkg:staticimports 5 | # is_windows 6 | 7 | normalize <- function(x) { 8 | if (rlang::is_installed("stringi")) { 9 | return( 10 | stringi::stri_trans_tolower( 11 | stringi::stri_trans_general(x, "Any-Latin; Latin-ASCII") 12 | ) 13 | ) 14 | } 15 | 16 | if (!is_windows() && has_utf8_support()) { 17 | return(tolower(iconv(x, to = "ASCII//TRANSLIT"))) 18 | } 19 | 20 | str_replace_all(x, accented_vowels_regex) 21 | } 22 | 23 | has_utf8_support <- function() { 24 | isTRUE(l10n_info()[["UTF-8"]]) 25 | } 26 | -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/R/sysdata.rda -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- 1 | tag <- function(...) { 2 | return("") 3 | } 4 | 5 | release_questions <- function() "Did you run `urlchecker::url_check()`?" #nocov 6 | -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | url: https://pkg.rossellhayes.com/and/ 2 | template: 3 | bootstrap: 5 4 | 5 | -------------------------------------------------------------------------------- /and.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | ProjectId: c939a917-5054-4475-a741-fca9764f77dc 3 | 4 | RestoreWorkspace: No 5 | SaveWorkspace: No 6 | AlwaysSaveHistory: Default 7 | 8 | EnableCodeIndexing: Yes 9 | UseSpacesForTab: Yes 10 | NumSpacesForTab: 2 11 | Encoding: UTF-8 12 | 13 | RnwWeave: Sweave 14 | LaTeX: pdfLaTeX 15 | 16 | AutoAppendNewline: Yes 17 | StripTrailingWhitespace: Yes 18 | LineEndingConversion: Posix 19 | 20 | BuildType: Package 21 | PackageUseDevtools: Yes 22 | PackageInstallArgs: --no-multiarch --with-keep.source 23 | PackageRoxygenize: rd,collate,namespace 24 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | 3 | coverage: 4 | status: 5 | project: 6 | default: 7 | target: auto 8 | threshold: 1% 9 | informational: true 10 | patch: 11 | default: 12 | target: auto 13 | threshold: 1% 14 | informational: true 15 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- 1 | ## R CMD check results 2 | 3 | 0 errors | 0 warnings | 0 notes 4 | -------------------------------------------------------------------------------- /data-raw/accented_vowels.R: -------------------------------------------------------------------------------- 1 | accented_vowels_regex <- c( 2 | "[AÀÁÂÃÄÅÆĀĂĄǍǞǠǢǺǼȀȂȦḀẠẢẤẦẨẪẬẮẰẲẴẶⒶAȺⱭꜲꜴꜶꜸꜺꜼ🅰🄐🄰🅐aàáâãäåāăąǎǟǡǻȁȃȧɑḁẚạảấầẩẫậắằẳẵặ⒜ⓐaᶏᶐⱥꜳæǣꜵꜷꜹꜻꜽǽ]" = "a", 3 | "[EÈÉÊËĒĔĖĘĚȄȆȨḔḖḘḚḜẸẺẼẾỀỂỄỆƐⒺEɆ🄔🄴🅔🅴eèéêëēĕėęěȅȇȩḕḗḙḛḝẹẻẽếềểễệɛᶓ⒠ⓔeɇᶒⱸ]" = "e", 4 | "[IÌÍÎÏĨĪĬĮİƖƗǏȈȊḬḮỈỊⒾIꝬ🄘🄸🅘🅸iìíîïĩīĭįǐȉȋɨɩḭḯỉịⁱ⒤ⓘiᵼᶖꝭ]" = "i", 5 | "[OÒÓÔÕÖØŌŎŐƆƟƠƢǑǪǬǾȌȎȢȪȬȮȰṌṎṐṒỌỎỐỒỔỖỘỚỜỞỠỢⓄOꝎꝊꝌ🅾🄞🄾🅞oòóôõöøōŏőơƣǒǫǭǿȍȏȣȫȭȯȱɔṍṏṑṓọỏốồổỗộớờởỡợ⒪ⓞoᶗⱺꝏꝋꝍ]" = "o", 6 | "[UÙÚÛÜŨŪŬŮŰŲƯƱǓǕǗǙǛȔȖṲṴṶṸṺỤỦỨỪỬỮỰⓊUɄ🄤🅄🅤🆄uùúûüũūŭůűųưǔǖǘǚǜȕȗʉʊᵫṳṵṷṹṻụủứừửữự⒰ⓤuᵿᶙꝸꭐꭎꭏꭣꭒ]" = "u", 7 | "[WŴẀẂẄẆẈⓌWⱲ🄦🅆🅦🆆wŵẁẃẅẇẉẘ⒲ⓦwⱳ]" = "w", 8 | "[YÝŶŸƳȲẎỲỴỶỸⓎYɎỾ🄨🅈🅨🆈yýÿŷƴȳẏẙỳỵỷỹ⒴ⓨyɏỿꭚ]" = "y" 9 | ) 10 | 11 | usethis::use_data(accented_vowels_regex, internal = TRUE, overwrite = TRUE) 12 | -------------------------------------------------------------------------------- /data-raw/plural_rules.R: -------------------------------------------------------------------------------- 1 | library(purrr) 2 | library(rlang) 3 | library(rvest) 4 | library(xml2) 5 | 6 | plural_rules <- read_html("https://php-gettext.github.io/Languages/") %>% 7 | html_elements(".table > tbody > tr") %>% 8 | purrr::map( 9 | function(x) { 10 | language <- html_element(x, "td:nth-child(1)") %>% html_text() 11 | n_plurals <- html_element(x, "td:nth-child(3)") %>% html_text() 12 | formula <- html_element(x, "td:nth-child(4)") %>% html_text() 13 | 14 | rlang::list2( 15 | language = language, 16 | plurals = paste0("nplurals=", n_plurals, "; plural=", formula, ";") 17 | ) 18 | } 19 | ) %>% 20 | set_names(purrr::map_chr(., ~ .$language)) 21 | 22 | usethis::use_data(plural_rules, overwrite = TRUE) 23 | -------------------------------------------------------------------------------- /data/and_languages.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/data/and_languages.rda -------------------------------------------------------------------------------- /inst/po/af/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/af/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ak/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ak/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/am/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/am/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ar/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ar/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/as/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/as/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ast/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ast/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/az/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/az/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/be/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/be/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/bg/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/bg/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/bgn/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/bgn/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/blo/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/blo/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/bn/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/bn/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/br/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/br/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/brx/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/brx/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/bs/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/bs/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ca/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ca/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ccp/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ccp/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ceb/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ceb/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/chr/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/chr/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/cs/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/cs/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/csw/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/csw/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/cv/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/cv/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/cy/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/cy/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/da/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/da/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/de/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/de/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/doi/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/doi/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/dsb/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/dsb/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/dz/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/dz/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ee/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ee/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/el/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/el/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_AG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_AG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_AI/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_AI/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_AT/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_AT/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_AU/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_AU/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_BB/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_BB/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_BE/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_BE/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_BM/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_BM/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_BS/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_BS/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_BW/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_BW/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_BZ/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_BZ/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_CA/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_CA/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_CC/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_CC/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_CH/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_CH/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_CK/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_CK/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_CM/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_CM/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_CX/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_CX/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_CY/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_CY/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_DE/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_DE/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_DG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_DG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_DK/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_DK/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_DM/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_DM/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_ER/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_ER/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_FI/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_FI/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_FJ/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_FJ/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_FK/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_FK/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_FM/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_FM/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_GB/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_GB/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_GD/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_GD/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_GG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_GG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_GH/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_GH/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_GI/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_GI/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_GM/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_GM/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_GY/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_GY/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_HK/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_HK/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_ID/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_ID/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_IE/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_IE/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_IL/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_IL/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_IM/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_IM/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_IN/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_IN/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_IO/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_IO/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_JE/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_JE/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_JM/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_JM/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_KE/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_KE/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_KI/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_KI/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_KN/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_KN/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_KY/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_KY/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_LC/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_LC/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_LR/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_LR/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_LS/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_LS/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_MG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_MG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_MO/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_MO/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_MS/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_MS/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_MT/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_MT/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_MU/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_MU/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_MV/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_MV/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_MW/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_MW/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_MY/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_MY/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_NA/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_NA/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_NF/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_NF/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_NG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_NG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_NL/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_NL/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_NR/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_NR/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_NU/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_NU/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_NZ/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_NZ/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_PG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_PG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_PK/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_PK/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_PN/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_PN/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_PW/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_PW/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_RW/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_RW/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SB/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SB/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SC/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SC/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SD/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SD/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SE/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SE/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SH/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SH/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SI/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SI/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SL/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SL/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SS/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SS/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SX/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SX/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_SZ/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_SZ/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_TC/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_TC/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_TK/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_TK/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_TO/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_TO/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_TT/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_TT/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_TV/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_TV/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_TZ/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_TZ/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_UG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_UG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_VC/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_VC/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_VG/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_VG/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_VU/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_VU/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_WS/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_WS/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_ZA/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_ZA/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_ZM/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_ZM/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/en_ZW/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/en_ZW/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/es/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/es/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/et/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/et/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/eu/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/eu/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/fa/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/fa/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/fi/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/fi/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/fil/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/fil/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/fo/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/fo/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/fr/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/fr/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/fur/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/fur/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/fy/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/fy/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ga/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ga/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/gd/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/gd/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/gl/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/gl/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/gsw/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/gsw/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/gu/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/gu/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ha/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ha/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/he/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/he/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/hi/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/hi/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/hr/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/hr/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/hsb/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/hsb/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/hu/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/hu/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/hy/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/hy/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ia/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ia/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/id/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/id/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ie/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ie/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ig/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ig/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ii/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ii/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/is/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/is/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/it/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/it/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ja/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ja/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/jgo/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/jgo/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/jv/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/jv/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ka/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ka/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/kea/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/kea/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/kgp/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/kgp/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/kk/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/kk/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/km/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/km/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/kn/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/kn/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ko/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ko/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/kok/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/kok/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ks/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ks/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ksh/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ksh/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ku/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ku/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/kxv/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/kxv/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ky/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ky/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/lb/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/lb/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/lld/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/lld/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/lo/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/lo/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/lt/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/lt/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/lv/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/lv/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/mai/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/mai/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/mi/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/mi/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/mk/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/mk/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ml/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ml/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/mn/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/mn/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/mni/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/mni/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/mr/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/mr/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ms/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ms/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/mt/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/mt/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/my/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/my/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/nb/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/nb/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ne/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ne/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/nl/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/nl/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/nn/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/nn/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/no/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/no/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/or/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/or/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/os/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/os/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/pa/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/pa/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/pcm/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/pcm/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/pl/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/pl/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ps/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ps/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/pt/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/pt/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/qu/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/qu/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/rm/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/rm/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ro/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ro/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ru/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ru/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sa/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sa/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sah/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sah/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sc/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sc/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sd/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sd/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/se/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/se/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/si/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/si/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sk/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sk/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sl/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sl/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/so/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/so/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sq/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sq/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sr/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sr/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/su/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/su/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sv/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sv/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/sw/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/sw/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/syr/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/syr/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ta/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ta/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/te/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/te/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/tg/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/tg/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/th/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/th/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ti/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ti/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/tk/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/tk/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/to/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/to/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/tr/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/tr/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/tt/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/tt/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/uk/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/uk/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/ur/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/ur/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/uz/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/uz/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/vec/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/vec/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/vi/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/vi/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/wae/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/wae/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/xnr/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/xnr/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/yi/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/yi/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/yo/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/yo/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/yo_BJ/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/yo_BJ/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/yrl/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/yrl/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/yue/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/yue/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/zh/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/zh/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /inst/po/zu/LC_MESSAGES/R-and.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/inst/po/zu/LC_MESSAGES/R-and.mo -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/man/figures/logo.pptx -------------------------------------------------------------------------------- /man/figures/logo_old.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/man/figures/logo_old.ai -------------------------------------------------------------------------------- /man/figures/logo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossellhayes/and/0d00cd8ee9a274293cc0cd580dca458f64de5306/man/figures/logo_old.png -------------------------------------------------------------------------------- /po/R-af.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Afrikaans 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: af\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} en {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} en {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} of {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} of {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ak.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Akan 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ak\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, ne {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ne {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, anaa {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} anaa {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-as.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Assamese 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: as\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} আৰু {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} আৰু {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} বা {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} বা {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ast.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Asturian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ast\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} y {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} y {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} o {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} o {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-bg.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Bulgarian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: bg\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} и {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} и {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} или {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} или {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-bgn.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Western Balochi 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: bgn\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, {x1}{tag(and_start)}" 17 | msgstr "{x0}، {x1}" 18 | 19 | msgid "{x0}, {x1}{tag(and_middle)}" 20 | msgstr "{x0}، {x1}" 21 | 22 | msgid "{x0}, and {x1}{tag(and_end)}" 23 | msgstr "{x0}، و {x1}" 24 | 25 | msgid "{x0} and {x1}{tag(and_2)}" 26 | msgstr "{x0} و {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-blo.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Anii 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: blo\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} na {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} na {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} koo {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} koo {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-bn.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Bangla 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: bn\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} এবং {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} এবং {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, বা {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} বা {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-br.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Breton 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: br\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} ha {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ha {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} pe {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} pe {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-brx.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Bodo 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: brx\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, आरो {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} आरो {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-ca.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Catalan 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ca\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} i {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} i {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} o {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} o {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ccp.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Chakma 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ccp\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} 𑄃𑄳𑄃 {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} 𑄃𑄳𑄃 {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-ceb.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Cebuano 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ceb\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, ug {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ug {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, o {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} o {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-chr.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Cherokee 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: chr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, ᎠᎴ {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ᎠᎴ {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, ᎠᎴᏱᎩ {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ᎠᎴᏱᎩ {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-csw.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Swampy Cree 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: csw\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ᐊᐠᐘ {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, ᐊᐍᑳ {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ᐊᐍᑳ {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-cv.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Chuvash 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: cv\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} тата {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} тата {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} е {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} е {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-doi.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Dogri 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: doi\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, ते {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ते {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-dsb.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Lower Sorbian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: dsb\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} a {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} a {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} abo {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} abo {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-dz.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Dzongkha 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: dz\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, {x1}{tag(and_start)}" 17 | msgstr "{x0} དང་ {x1}" 18 | 19 | msgid "{x0}, {x1}{tag(and_middle)}" 20 | msgstr "{x0} དང་ {x1}" 21 | 22 | msgid "{x0}, and {x1}{tag(and_end)}" 23 | msgstr "{x0} དང་ {x1}" 24 | 25 | msgid "{x0} and {x1}{tag(and_2)}" 26 | msgstr "{x0} དང་ {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ee.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Ewe 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ee\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, kple {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} kple {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-el.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Greek 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: el\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} και {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} και {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} ή {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ή {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-en.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0}, or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_AG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Antigua & Barbuda) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_AG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_AI.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Anguilla) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_AI\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_AT.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Austria) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_AT\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_AU.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Australia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_AU\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_BB.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Barbados) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_BB\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_BE.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Belgium) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_BE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_BM.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Bermuda) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_BM\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_BS.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Bahamas) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_BS\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_BW.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Botswana) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_BW\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_BZ.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Belize) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_BZ\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_CA.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Canada) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_CA\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_CC.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Cocos (Keeling) Islands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_CC\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_CH.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Switzerland) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_CH\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_CK.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Cook Islands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_CK\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_CM.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Cameroon) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_CM\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_CX.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Christmas Island) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_CX\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_CY.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Cyprus) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_CY\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_DE.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Germany) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_DE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_DG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Diego Garcia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_DG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_DK.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Denmark) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_DK\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_DM.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Dominica) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_DM\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_ER.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Eritrea) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_ER\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_FI.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Finland) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_FI\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_FJ.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Fiji) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_FJ\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_FK.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Falkland Islands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_FK\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_FM.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Micronesia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_FM\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_GB.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (United Kingdom) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_GB\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_GD.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Grenada) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_GD\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_GG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Guernsey) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_GG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_GH.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Ghana) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_GH\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_GI.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Gibraltar) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_GI\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_GM.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Gambia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_GM\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_GY.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Guyana) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_GY\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_HK.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Hong Kong) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_HK\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_ID.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Indonesia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_ID\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_IE.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Ireland) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_IE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_IL.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Israel) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_IL\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_IM.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Isle of Man) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_IM\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_IN.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (India) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_IN\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_IO.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (British Indian Ocean Territory) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_IO\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_JE.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Jersey) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_JE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_JM.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Jamaica) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_JM\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_KE.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Kenya) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_KE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_KI.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Kiribati) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_KI\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_KN.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (St. Kitts & Nevis) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_KN\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_KY.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Cayman Islands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_KY\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_LC.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (St. Lucia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_LC\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_LR.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Liberia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_LR\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_LS.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Lesotho) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_LS\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_MG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Madagascar) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_MG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_MO.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Macao) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_MO\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_MS.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Montserrat) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_MS\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_MT.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Malta) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_MT\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_MU.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Mauritius) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_MU\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_MV.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Maldives) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_MV\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_MW.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Malawi) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_MW\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_MY.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Malaysia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_MY\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_NA.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Namibia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_NA\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_NF.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Norfolk Island) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_NF\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_NG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Nigeria) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_NG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_NL.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Netherlands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_NL\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_NR.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Nauru) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_NR\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_NU.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Niue) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_NU\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_NZ.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (New Zealand) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_NZ\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_PG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Papua New Guinea) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_PG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_PK.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Pakistan) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_PK\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_PN.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Pitcairn Islands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_PN\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_PW.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Palau) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_PW\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_RW.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Rwanda) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_RW\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SB.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Solomon Islands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SB\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SC.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Seychelles) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SC\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SD.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Sudan) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SD\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SE.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Sweden) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SE\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Singapore) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SH.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (St. Helena) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SH\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SI.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Slovenia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SI\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SL.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Sierra Leone) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SL\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SS.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (South Sudan) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SS\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SX.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Sint Maarten) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SX\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_SZ.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Eswatini) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_SZ\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_TC.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Turks & Caicos Islands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_TC\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_TK.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Tokelau) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_TK\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_TO.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Tonga) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_TO\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_TT.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Trinidad & Tobago) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_TT\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_TV.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Tuvalu) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_TV\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_TZ.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Tanzania) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_TZ\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_UG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Uganda) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_UG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_VC.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (St. Vincent & Grenadines) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_VC\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_VG.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (British Virgin Islands) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_VG\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_VU.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Vanuatu) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_VU\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_WS.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Samoa) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_WS\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_ZA.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (South Africa) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_ZA\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_ZM.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Zambia) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_ZM\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-en_ZW.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # English (Zimbabwe) 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: en_ZW\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} and {x1}" 18 | 19 | msgid "{x0}, or {x1}{tag(or_end)}" 20 | msgstr "{x0} or {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-et.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Estonian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: et\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} ja {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ja {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} või {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} või {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-eu.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Basque 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: eu\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} eta {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} eta {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} edo {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} edo {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-fi.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Finnish 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: fi\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} ja {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ja {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} tai {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} tai {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-fil.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Filipino 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: fil\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, at {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} at {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, o {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} o {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-fr.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # French 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: fr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} et {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} et {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} ou {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ou {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-fur.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Friulian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: fur\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} e {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} e {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-fy.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Western Frisian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: fy\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} en {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} en {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-gl.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Galician 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: gl\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} e {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} e {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} ou {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ou {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-gsw.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Swiss German 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: gsw\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} und {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} und {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-ha.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Hausa 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ha\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, da {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} da {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} ko {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ko {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-he.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Hebrew 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: he\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} ו{x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ו{x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} או {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} או {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-hi.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Hindi 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: hi\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, और {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} और {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} या {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} या {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-hsb.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Upper Sorbian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: hsb\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} a {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} a {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} abo {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} abo {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-hy.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Armenian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: hy\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} և {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} և {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} կամ {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} կամ {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ie.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Interlingue 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ie\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} e {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-ka.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Georgian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ka\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} და {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} და {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} ან {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ან {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-kea.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Kabuverdianu 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: kea\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} i {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} i {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} o {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} o {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-km.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Khmer 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: km\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} និង {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} និង​{x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} ឬ {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ឬ {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ko.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Korean 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ko\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} 및 {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} 및 {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} 또는 {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} 또는 {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-kok.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Konkani 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: kok\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0}, {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, वा {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} वा {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ks.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Kashmiri 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ks\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, {x1}{tag(and_start)}" 17 | msgstr "{x0}، {x1}" 18 | 19 | msgid "{x0}, {x1}{tag(and_middle)}" 20 | msgstr "{x0}، {x1}" 21 | 22 | msgid "{x0}, and {x1}{tag(and_end)}" 23 | msgstr "{x0}، تٕہ {x1}" 24 | 25 | msgid "{x0} and {x1}{tag(and_2)}" 26 | msgstr "{x0} تٕہ {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ksh.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Colognian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ksh\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} un {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} un {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-ku.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Kurdish 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ku\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} û {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} û {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} an {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} an {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-ky.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Kyrgyz 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ky\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} жана {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} жана {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} же {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} же {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-lb.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Luxembourgish 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: lb\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} a(n) {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} a(n) {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-lld.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Ladin 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: lld\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} y {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} y {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} o {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} o {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-lo.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Lao 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: lo\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ແລະ {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} ຫຼື {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} ຫຼື {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-mai.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Maithili 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: mai\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, और {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} और {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-mni.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Manipuri 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: mni\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} অমসুং {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} অমসুং {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-ms.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Malay 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: ms\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} dan {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} dan {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, atau {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} atau {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-mt.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Maltese 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: mt\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, u {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} u {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-nl.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Dutch 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: nl\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} en {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} en {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} of {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} of {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-os.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Ossetic 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: os\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} ӕмӕ {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ӕмӕ {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-qu.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Quechua 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: qu\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0}, {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, utaq {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} utaq {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-rm.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Romansh 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: rm\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} e {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} e {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} u {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} u {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-sa.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Sanskrit 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: sa\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, तथा {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} तथा {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-sah.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Yakut 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: sah\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} уонна {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} уонна {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-sc.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Sardinian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: sc\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} e {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} e {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} o {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} o {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-se.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Northern Sami 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: se\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} ja {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ja {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-su.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Sundanese 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: su\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, sareng {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} sareng {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-tg.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Tajik 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: tg\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ва {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, ё {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0}, ё {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-tt.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Tatar 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: tt\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} һәм {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} һәм {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, яки {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} яки {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-vec.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Venetian 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: vec\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} e {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} e {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0}, o {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} o {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-wae.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Walser 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: wae\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} und {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} und {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-xnr.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Kangri 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: xnr\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, कने {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} कने {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} या {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} या {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-yi.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Yiddish 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: yi\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} און {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} און {x1}" 21 | 22 | -------------------------------------------------------------------------------- /po/R-yrl.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Nheengatu 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: yrl\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0} asuí {x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} asuí {x1}" 21 | 22 | msgid "{x0}, or {x1}{tag(or_end)}" 23 | msgstr "{x0} u {x1}" 24 | 25 | msgid "{x0} or {x1}{tag(or_2)}" 26 | msgstr "{x0} u {x1}" 27 | 28 | -------------------------------------------------------------------------------- /po/R-zu.po: -------------------------------------------------------------------------------- 1 | # Read only. This file is automatically generated from data-raw/list_patterns.R 2 | # Zulu 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: and 0.0.0.9000\n" 6 | "POT-Creation-Date: 2025-02-25\n" 7 | "PO-Revision-Date: 2025-02-25\n" 8 | "Last-Translator: Alexander Rossell Hayes \n" 9 | "Language-Team: Alexander Rossell Hayes \n" 10 | "Language: zu\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "Plural-Forms: nplurals=1; plural=0;\n" 15 | 16 | msgid "{x0}, and {x1}{tag(and_end)}" 17 | msgstr "{x0}, ne-{x1}" 18 | 19 | msgid "{x0} and {x1}{tag(and_2)}" 20 | msgstr "{x0} ne-{x1}" 21 | 22 | -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- 1 | library(testthat) 2 | library(and) 3 | 4 | test_check("and") 5 | --------------------------------------------------------------------------------