<div dir="ltr">I'm assuming you're trying to do this in GeoMoose 3.<div><br></div><div>For search, my best guess would be in dist/services/search.js.</div><div>You do have some ability to override the labels in your app.js file without having to modify the source files.</div><div><br></div><div>For example, I've changed the default title of the search tool, as well as the results, when I declared my search service:</div><div><br></div><div><pre style="color:rgb(0,0,0);white-space:pre-wrap">        app.registerService('search-Taxlots-simple', SearchService, {
            // The input fields are defined only using one field
            title: 'Simple Taxlot Search',
            resultsTitle: 'Taxlots Search Results',
            fields: [
                {type: 'text', label: 'Simple Search', name: 'TERM'},
            ],
            prepareFields: function (fields) {
                // this pulls out the term from the search
                const searchTerm = fields[0].value;
                // this is the list of fields in the layer which will be searched.
                const searchFields = ['OwnName', 'SitusAll', 'ParcelID', 'PropertyId', 'Address1'];
                // this switched to matching any field
                var query = ['or'];
                for(var i = 0, ii = searchFields.length; i < ii; i++) {
                    query.push({
                        comparitor: 'ilike',
                        name: searchFields[i],
                        value: '%' + searchTerm + '%'
                    });
                }
                return [query];
            },
            searchLayers: ['Taxlots_selection-wfs/Taxlots_selection'],
            validateFieldValues: function (fields) {
                let nonEmpty = 0;
                const validateFieldValuesResult = {
                    valid: true,
                    message: null
                };

                if (fields['TERM'] !== undefined && fields['TERM'] !== '') {
                        nonEmpty++;
                }

                if (nonEmpty === 0) {
                    validateFieldValuesResult.valid = false;
                    validateFieldValuesResult.message = 'Please complete at least one field.'
                }
                return validateFieldValuesResult;
            }
        });
</pre><br class="gmail-Apple-interchange-newline"></div><div><br></div><div><br></div><div>Hope this helps,</div><div><br></div><div>Chris</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Apr 28, 2020 at 10:37 AM <<a href="mailto:topografia@oliva.es">topografia@oliva.es</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div style="font-family:arial,helvetica,sans-serif;font-size:12pt;color:rgb(0,0,0)"><div>I would like to change the language of the pop-up services. Specially "print" and "search" services....I've allready changed the toolbar tabs language...but I don't find the source files where change the label language of the services. I've found the services print and serach under the folders "idst" and "src" under the geomoose folder....which one do I have to vhange? or none of those ones? Thanks.<br></div><div><br></div><div>-- <br></div><div><table style="width:100%;height:119px;border-bottom:thin solid rgb(255,153,0);border-top:medium solid rgb(255,153,0)" width="50%"><tbody><tr><td width="305" height="163"><a href="http://oliva.es/es/" target="_blank"> <img src="http://oliva.es/wp-content/uploads/2017/01/AJUNTAMENT_O-1.jpg" alt="" width="305" height="159"></a><br></td><td width="925"><div><strong>Cap del Departament de Cartografia i Topografia</strong></div><div>Lara Perez Bessone<br></div><div>Enginyera Tecnica Topografa Municipal</div><div>email: <a href="mailto:topografia@oliva.es" target="_blank">topografia@oliva.es</a> Tel. mòvil: 647 835 086 ext. 521</div><br><div><br></div><div><strong>Ajuntament d'Oliva - València</strong></div><div>Plaça del Ajuntament 1, 46780 Oliva</div><div>Tel. 962850250 Fax 962855165 <a href="http://www.oliva.es" target="_blank">www.oliva.es</a></div></td></tr></tbody></table></div></div></div>_______________________________________________<br>
Geomoose-users mailing list<br>
<a href="mailto:Geomoose-users@lists.osgeo.org" target="_blank">Geomoose-users@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/geomoose-users" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/geomoose-users</a></blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><font size="4">Chris Hughes</font><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">GIS Analyst</div><div style="font-size:12.8px"><font size="1">Lincoln County Surveyor Department </font></div><div><font size="1"><span style="font-family:Roboto,arial,sans-serif">880 NE 7th S</span><span style="font-family:Roboto,arial,sans-serif">t</span>. l Newport, OR 97365</font></div><div style="font-size:12.8px"><font size="1">Tel: (541) 574 1283</font></div></div></div>